Skip to main content

landing_zone_operations

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

Overview

Namelanding_zone_operations
TypeResource
Idaws.controltower.landing_zone_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)The landing zone operation end time.
operation_identifierstringThe operationIdentifier of the landing zone 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_typestringThe landing zone operation type. Valid values: DELETE: The DeleteLandingZone operation. CREATE: The CreateLandingZone operation. UPDATE: The UpdateLandingZone operation. RESET: The ResetLandingZone operation. (DELETE, CREATE, UPDATE, RESET)
start_timestring (date-time)The landing zone operation start time.
statusstringValid values: SUCCEEDED: The landing zone operation succeeded. IN_PROGRESS: The landing zone operation is in progress. FAILED: The landing zone operation failed. (SUCCEEDED, FAILED, IN_PROGRESS)
status_messagestringIf the operation result is FAILED, this string contains a message explaining why the operation failed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_landing_zone_operationselectregionReturns the status of the specified landing zone operation. Details for an operation are available for 90 days.
list_landing_zone_operationsselectregionLists all landing zone operations from the past 90 days. Results are sorted by time, with the most recent operation first.

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 status of the specified landing zone operation. Details for an operation are available for 90 days.

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