Skip to main content

operation_events

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

Overview

Nameoperation_events
TypeResource
Idaws.ssm_sap.operation_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
descriptionstringA description of the operation event. For example, "Stop the EC2 instance i-abcdefgh987654321".
resourceobjectThe resource involved in the operations event. Contains ResourceArn ARN and ResourceType.
statusstringThe status of the operation event. The possible statuses are: IN_PROGRESS, COMPLETED, and FAILED. (IN_PROGRESS, COMPLETED, FAILED)
status_messagestringThe status message relating to a specific operation event.
timestampstring (date-time)The timestamp of the specified operation event.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_operation_eventsselectregionReturns a list of operations events. Available parameters include OperationID, as well as optional parameters MaxResults, NextToken, and Filters.

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 operations events. Available parameters include OperationID, as well as optional parameters MaxResults, NextToken, and Filters.

SELECT
description,
resource,
status,
status_message,
timestamp
FROM aws.ssm_sap.operation_events
WHERE region = '{{ region }}' -- required
;