service_states
Creates, updates, deletes, gets or lists a service_states resource.
Overview
| Name | service_states |
| Type | Resource |
| Id | aws.application_signals.service_states |
Fields
The following fields are returned by SELECT queries:
- list_service_states
| Name | Datatype | Description |
|---|---|---|
attribute_filters | array | The attribute filters that were applied when retrieving this service state information. |
latest_change_events | array | An array containing the most recent change events for this service, such as deployments, with information about when they occurred and who initiated them. |
service | object | The key attributes that identify this service, including Type, Name, and Environment information. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_service_states | select | region | Returns information about the last deployment and other change states of services. This API provides visibility into recent changes that may have affected service performance, helping with troubleshooting and change correlation. |
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
- list_service_states
Returns information about the last deployment and other change states of services. This API provides visibility into recent changes that may have affected service performance, helping with troubleshooting and change correlation.
SELECT
attribute_filters,
latest_change_events,
service
FROM aws.application_signals.service_states
WHERE region = '{{ region }}' -- required
;