daemon_revisions
Creates, updates, deletes, gets or lists a daemon_revisions resource.
Overview
| Name | daemon_revisions |
| Type | Resource |
| Id | aws.ecs.daemon_revisions |
Fields
The following fields are returned by SELECT queries:
- describe_daemon_revisions
| Name | Datatype | Description |
|---|---|---|
daemon_revisions | array | The list of daemon revisions. |
failures | array | Any failures associated with the call. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_daemon_revisions | select | region | Describes one or more of your daemon revisions. A daemon revision is a snapshot of a daemon's configuration at the time a deployment was initiated. It captures the daemon task definition, container images, tag propagation, and execute command settings. Daemon revisions are immutable. |
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_revisions
Describes one or more of your daemon revisions. A daemon revision is a snapshot of a daemon's configuration at the time a deployment was initiated. It captures the daemon task definition, container images, tag propagation, and execute command settings. Daemon revisions are immutable.
SELECT
daemon_revisions,
failures
FROM aws.ecs.daemon_revisions
WHERE region = '{{ region }}' -- required
;