Skip to main content

daemon_deployments

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

Overview

Namedaemon_deployments
TypeResource
Idaws.ecs.daemon_deployments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
daemon_deploymentsarrayThe list of daemon deployments.
failuresarrayAny failures associated with the call.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;