Skip to main content

upload_status

Creates, updates, deletes, gets or lists a upload_status resource.

Overview

Nameupload_status
TypeResource
Idaws.iotthingsgraph.upload_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_datestring (date-time)The date at which the upload was created.
failure_reasonarrayThe reason for an upload failure.
namespace_arnstringThe ARN of the upload.
namespace_namestringThe name of the upload's namespace.
namespace_versioninteger (int64)The version of the user's namespace. Defaults to the latest version of the user's namespace.
upload_idstringThe ID of the upload.
upload_statusstringThe status of the upload. The initial status is IN_PROGRESS. The response show all validation failures if the upload fails. (IN_PROGRESS, SUCCEEDED, FAILED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_upload_statusselectregionGets the status of the specified upload.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the status of the specified upload.

SELECT
created_date,
failure_reason,
namespace_arn,
namespace_name,
namespace_version,
upload_id,
upload_status
FROM aws.iotthingsgraph.upload_status
WHERE region = '{{ region }}' -- required
;