Skip to main content

bulk_deployment_detailed_reports

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

Overview

Namebulk_deployment_detailed_reports
TypeResource
Idaws.greengrass.bulk_deployment_detailed_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstringThe time, in ISO format, when the deployment was created.
deployment_arnstringThe ARN of the group deployment.
deployment_idstringThe ID of the group deployment.
deployment_statusstringThe current status of the group deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.
deployment_typestringThe type of deployment. When used for ''CreateDeployment'', only ''NewDeployment'' and ''Redeployment'' are valid. (NewDeployment, Redeployment, ResetDeployment, ForceResetDeployment)
error_detailsarrayDetails about the error.
error_messagestringThe error message for a failed deployment
group_arnstringThe ARN of the Greengrass group.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_bulk_deployment_detailed_reportsselectbulk_deployment_id, regionMaxResults, NextTokenGets a paginated list of the deployments that have been started in a bulk deployment operation, and their current deployment status.

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)
MaxResultsstringThe maximum number of results to be returned per request.
NextTokenstringThe token for the next set of results, or ''null'' if there are no additional results.

SELECT examples

Gets a paginated list of the deployments that have been started in a bulk deployment operation, and their current deployment status.

SELECT
created_at,
deployment_arn,
deployment_id,
deployment_status,
deployment_type,
error_details,
error_message,
group_arn
FROM aws.greengrass.bulk_deployment_detailed_reports
WHERE bulk_deployment_id = '{{ bulk_deployment_id }}' -- required
AND region = '{{ region }}' -- required
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
;