ops_item_events
Creates, updates, deletes, gets or lists an ops_item_events resource.
Overview
| Name | ops_item_events |
| Type | Resource |
| Id | aws.ssm.ops_item_events |
Fields
The following fields are returned by SELECT queries:
- list_ops_item_events
| Name | Datatype | Description |
|---|---|---|
created_by | object | Information about the user or resource that created the OpsItem event. |
created_time | string (date-time) | The date and time the OpsItem event was created. |
detail | string | Specific information about the OpsItem event. |
detail_type | string | The type of information provided as a detail. |
event_id | string | The ID of the OpsItem event. |
ops_item_id | string | The ID of the OpsItem. |
source | string | The source of the OpsItem event. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_ops_item_events | select | region | 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. |
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_ops_item_events
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
;