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(
version = "string",
remediationTypes = list(
"INHERITANCE_DRIFT"
),
arn = "string",
status = "ACTIVE"|"PROCESSING"|"FAILED",
latestAvailableVersion = "string",
driftStatus = list(
status = "DRIFTED"|"IN_SYNC"
),
manifest = list()
)
)
Request syntax¶
svc$get_landing_zone(
landingZoneIdentifier = "string"
)