service_revisions
Creates, updates, deletes, gets or lists a service_revisions resource.
Overview
| Name | service_revisions |
| Type | Resource |
| Id | aws.ecs.service_revisions |
Fields
The following fields are returned by SELECT queries:
- describe_service_revisions
| Name | Datatype | Description |
|---|---|---|
failures | array | Any failures associated with the call. |
service_revisions | array | The list of service revisions described. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_service_revisions | select | region | 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. |
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_service_revisions
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
;