Skip to main content

bulk_deployment_status

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

Overview

Namebulk_deployment_status
TypeResource
Idaws.greengrass.bulk_deployment_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bulk_deployment_metricsobjectRelevant metrics on input records processed during bulk deployment.
bulk_deployment_statusstringThe status of the bulk deployment. (Initializing, Running, Completed, Stopping, Stopped, Failed)
created_atstringThe time, in ISO format, when the deployment was created.
error_detailsarrayError details
error_messagestringError message
tagsobjectTag(s) attached to the resource arn.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_bulk_deployment_statusselectbulk_deployment_id, regionReturns the status of a bulk deployment.

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
bulk_deployment_idstringThe ID of the bulk deployment.
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the status of a bulk deployment.

SELECT
bulk_deployment_metrics,
bulk_deployment_status,
created_at,
error_details,
error_message,
tags
FROM aws.greengrass.bulk_deployment_status
WHERE bulk_deployment_id = '{{ bulk_deployment_id }}' -- required
AND region = '{{ region }}' -- required
;