LandingZoneReference
- class aws_cdk.aws_controltower.LandingZoneReference(*, landing_zone_arn, landing_zone_identifier)
Bases:
object
A reference to a LandingZone resource.
- Parameters:
landing_zone_arn (
str
) – The ARN of the LandingZone resource.landing_zone_identifier (
str
) – The LandingZoneIdentifier of the LandingZone resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_controltower as controltower landing_zone_reference = controltower.LandingZoneReference( landing_zone_arn="landingZoneArn", landing_zone_identifier="landingZoneIdentifier" )
Attributes
- landing_zone_arn
The ARN of the LandingZone resource.
- landing_zone_identifier
The LandingZoneIdentifier of the LandingZone resource.