Skip to main content

daemon_revisions

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

Overview

Namedaemon_revisions
TypeResource
Idaws.ecs.daemon_revisions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
daemon_revisionsarrayThe list of daemon revisions.
failuresarrayAny failures associated with the call.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_daemon_revisionsselectregionDescribes 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;