Skip to content

List Landing Zones

controltower_list_landing_zones R Documentation

Returns the landing zone ARN for the landing zone deployed in your managed account

Description

Returns the landing zone ARN for the landing zone deployed in your managed account. This API also creates an ARN for existing accounts that do not yet have a landing zone ARN.

Returns one landing zone ARN.

Usage

controltower_list_landing_zones(maxResults, nextToken)

Arguments

maxResults

The maximum number of returned landing zone ARNs, which is one.

nextToken

The token to continue the list from a previous API call with the same parameters.

Value

A list with the following syntax:

list(
  landingZones = list(
    list(
      arn = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_landing_zones(
  maxResults = 123,
  nextToken = "string"
)