List Landing Zone Operations
| controltower_list_landing_zone_operations | R Documentation |
Lists all landing zone operations from the past 90 days¶
Description¶
Lists all landing zone operations from the past 90 days. Results are sorted by time, with the most recent operation first.
Usage¶
Arguments¶
filterAn input filter for the
list_landing_zone_operationsAPI that lets you select the types of landing zone operations to view.maxResultsHow many results to return per API call.
nextTokenThe token to continue the list from a previous API call with the same parameters.
Value¶
A list with the following syntax:
list(
landingZoneOperations = list(
list(
operationIdentifier = "string",
operationType = "DELETE"|"CREATE"|"UPDATE"|"RESET",
status = "SUCCEEDED"|"FAILED"|"IN_PROGRESS"
)
),
nextToken = "string"
)