Skip to content

Get Landing Zone

controltower_get_landing_zone R Documentation

Returns details about the landing zone

Description

Returns details about the landing zone. Displays a message in case of error.

Usage

controltower_get_landing_zone(landingZoneIdentifier)

Arguments

landingZoneIdentifier

[required] The unique identifier of the landing zone.

Value

A list with the following syntax:

list(
  landingZone = list(
    arn = "string",
    driftStatus = list(
      status = "DRIFTED"|"IN_SYNC"
    ),
    latestAvailableVersion = "string",
    manifest = list(),
    status = "ACTIVE"|"PROCESSING"|"FAILED",
    version = "string"
  )
)

Request syntax

svc$get_landing_zone(
  landingZoneIdentifier = "string"
)