Skip to main content

ops_item_events

Creates, updates, deletes, gets or lists an ops_item_events resource.

Overview

Nameops_item_events
TypeResource
Idaws.ssm.ops_item_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_byobjectInformation about the user or resource that created the OpsItem event.
created_timestring (date-time)The date and time the OpsItem event was created.
detailstringSpecific information about the OpsItem event.
detail_typestringThe type of information provided as a detail.
event_idstringThe ID of the OpsItem event.
ops_item_idstringThe ID of the OpsItem.
sourcestringThe source of the OpsItem event.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_ops_item_eventsselectregionReturns a list of all OpsItem events in the current Amazon Web Services Region and Amazon Web Services account. You can limit the results to events associated with specific OpsItems by specifying a filter.

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 a list of all OpsItem events in the current Amazon Web Services Region and Amazon Web Services account. You can limit the results to events associated with specific OpsItems by specifying a filter.

SELECT
created_by,
created_time,
detail,
detail_type,
event_id,
ops_item_id,
source
FROM aws.ssm.ops_item_events
WHERE region = '{{ region }}' -- required
;