bulk_deployments
Creates, updates, deletes, gets or lists a bulk_deployments resource.
Overview
| Name | bulk_deployments |
| Type | Resource |
| Id | aws.greengrass.bulk_deployments |
Fields
The following fields are returned by SELECT queries:
- list_bulk_deployments
| Name | Datatype | Description |
|---|---|---|
bulk_deployment_arn | string | The ARN of the bulk deployment. |
bulk_deployment_id | string | The ID of the bulk deployment. |
created_at | string | The time, in ISO format, when the deployment was created. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bulk_deployments | select | region | MaxResults, NextToken | Returns a list of bulk deployments. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
MaxResults | string | The maximum number of results to be returned per request. |
NextToken | string | The token for the next set of results, or ''null'' if there are no additional results. |
SELECT examples
- list_bulk_deployments
Returns a list of bulk deployments.
SELECT
bulk_deployment_arn,
bulk_deployment_id,
created_at
FROM aws.greengrass.bulk_deployments
WHERE region = '{{ region }}' -- required
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
;