daemon_deployments
Creates, updates, deletes, gets or lists a daemon_deployments resource.
Overview
| Name | daemon_deployments |
| Type | Resource |
| Id | aws.ecs.daemon_deployments |
Fields
The following fields are returned by SELECT queries:
- describe_daemon_deployments
- list_daemon_deployments
| Name | Datatype | Description |
|---|---|---|
daemon_deployments | array | The list of daemon deployments. |
failures | array | Any failures associated with the call. |
| Name | Datatype | Description |
|---|---|---|
daemon_deployments | array | The list of daemon deployment summaries. |
next_token | string | The nextToken value to include in a future ListDaemonDeployments request. When the results of a ListDaemonDeployments request exceed maxResults, this value can be used to retrieve the next page of results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_daemon_deployments | select | region | Describes one or more of your daemon deployments. A daemon deployment orchestrates the progressive rollout of daemon task updates across container instances managed by the daemon's capacity providers. Each deployment includes circuit breaker and alarm-based rollback capabilities. | |
list_daemon_deployments | select | region | Returns a list of daemon deployments for a specified daemon. You can filter the results by status or creation time. |
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) |
SELECT examples
- describe_daemon_deployments
- list_daemon_deployments
Describes one or more of your daemon deployments. A daemon deployment orchestrates the progressive rollout of daemon task updates across container instances managed by the daemon's capacity providers. Each deployment includes circuit breaker and alarm-based rollback capabilities.
SELECT
daemon_deployments,
failures
FROM aws.ecs.daemon_deployments
WHERE region = '{{ region }}' -- required
;
Returns a list of daemon deployments for a specified daemon. You can filter the results by status or creation time.
SELECT
daemon_deployments,
next_token
FROM aws.ecs.daemon_deployments
WHERE region = '{{ region }}' -- required
;