Skip to main content

service_states

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

Overview

Nameservice_states
TypeResource
Idaws.application_signals.service_states

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
attribute_filtersarrayThe attribute filters that were applied when retrieving this service state information.
latest_change_eventsarrayAn array containing the most recent change events for this service, such as deployments, with information about when they occurred and who initiated them.
serviceobjectThe key attributes that identify this service, including Type, Name, and Environment information.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;