Skip to main content

baseline_operations

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

Overview

Namebaseline_operations
TypeResource
Idaws.controltower.baseline_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)The end time of the operation (if applicable), in ISO 8601 format.
operation_identifierstringThe identifier of the specified operation. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
operation_typestringAn enumerated type (enum) with possible values of ENABLE_BASELINE, DISABLE_BASELINE, UPDATE_ENABLED_BASELINE, or RESET_ENABLED_BASELINE. (ENABLE_BASELINE, DISABLE_BASELINE, UPDATE_ENABLED_BASELINE, RESET_ENABLED_BASELINE)
start_timestring (date-time)The start time of the operation, in ISO 8601 format.
statusstringAn enumerated type (enum) with possible values of SUCCEEDED, FAILED, or IN_PROGRESS. (SUCCEEDED, FAILED, IN_PROGRESS)
status_messagestringA status message that gives more information about the operation's status, if applicable.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_baseline_operationselectregionReturns the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure. For usage examples, see the Amazon Web Services Control Tower User Guide .

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 the details of an asynchronous baseline operation, as initiated by any of these APIs: EnableBaseline, DisableBaseline, UpdateEnabledBaseline, ResetEnabledBaseline. A status message is displayed in case of operation failure. For usage examples, see the Amazon Web Services Control Tower User Guide .

SELECT
end_time,
operation_identifier,
operation_type,
start_time,
status,
status_message
FROM aws.controltower.baseline_operations
WHERE region = '{{ region }}' -- required
;