Skip to main content

service_revisions

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

Overview

Nameservice_revisions
TypeResource
Idaws.ecs.service_revisions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
failuresarrayAny failures associated with the call.
service_revisionsarrayThe list of service revisions described.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_service_revisionsselectregionDescribes one or more service revisions. A service revision is a version of the service that includes the values for the Amazon ECS resources (for example, task definition) and the environment resources (for example, load balancers, subnets, and security groups). For more information, see Amazon ECS service revisions. You can't describe a service revision that was created before October 25, 2024.

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 service revisions. A service revision is a version of the service that includes the values for the Amazon ECS resources (for example, task definition) and the environment resources (for example, load balancers, subnets, and security groups). For more information, see Amazon ECS service revisions. You can't describe a service revision that was created before October 25, 2024.

SELECT
failures,
service_revisions
FROM aws.ecs.service_revisions
WHERE region = '{{ region }}' -- required
;