Create Landing Zone
| controltower_create_landing_zone | R Documentation |
Creates a new landing zone¶
Description¶
Creates a new landing zone. This API call starts an asynchronous operation that creates and configures a landing zone, based on the parameters specified in the manifest JSON file.
Usage¶
controltower_create_landing_zone(version, remediationTypes, tags,
manifest)
Arguments¶
version |
[required] The landing zone version, for example, 3.0. |
remediationTypes |
Specifies the types of remediation actions to apply when creating the landing zone, such as automatic drift correction or compliance enforcement. |
tags |
Tags to be applied to the landing zone. |
manifest |
The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review Launch your landing zone. |
Value¶
A list with the following syntax:
list(
arn = "string",
operationIdentifier = "string"
)
Request syntax¶
svc$create_landing_zone(
version = "string",
remediationTypes = list(
"INHERITANCE_DRIFT"
),
tags = list(
"string"
),
manifest = list()
)