Skip to content

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

controltower_list_landing_zone_operations(filter, maxResults, nextToken)

Arguments

filter

An input filter for the list_landing_zone_operations API that lets you select the types of landing zone operations to view.

maxResults

How many results to return per API call.

nextToken

The 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"
)

Request syntax

svc$list_landing_zone_operations(
  filter = list(
    statuses = list(
      "SUCCEEDED"|"FAILED"|"IN_PROGRESS"
    ),
    types = list(
      "DELETE"|"CREATE"|"UPDATE"|"RESET"
    )
  ),
  maxResults = 123,
  nextToken = "string"
)