Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idaws.ssm_sap.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)The end time of the operation.
idstringThe ID of the operation. (pattern: <code>[{]?[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}[}]?</code>)
last_updated_timestring (date-time)The time at which the operation was last updated.
propertiesobjectThe properties of the operation.
resource_arnstringThe Amazon Resource Name (ARN) of the operation. (pattern: <code>arn:(.+:){2,4}.+$|^arn:(.+:){1,3}.+/.+</code>)
resource_idstringThe resource ID of the operation.
resource_typestringThe resource type of the operation.
start_timestring (date-time)The start time of the operation.
statusstringThe status of the operation. (INPROGRESS, SUCCESS, ERROR)
status_messagestringThe status message of the operation.
typestringThe type of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_operationselectregionGets the details of an operation by specifying the operation ID.
list_operationsselectregionLists the operations performed by AWS Systems Manager for SAP.

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

Gets the details of an operation by specifying the operation ID.

SELECT
end_time,
id,
last_updated_time,
properties,
resource_arn,
resource_id,
resource_type,
start_time,
status,
status_message,
type
FROM aws.ssm_sap.operations
WHERE region = '{{ region }}' -- required
;