Class: Aws::ControlTower::Types::LandingZoneDriftStatusSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ControlTower::Types::LandingZoneDriftStatusSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-controltower/types.rb
Overview
The drift status summary of the landing zone.
If the landing zone differs from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the landing zone.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The drift status of the landing zone.
Instance Attribute Details
#status ⇒ String
The drift status of the landing zone.
Valid values:
-
‘DRIFTED`: The landing zone deployed in this configuration does not match the configuration that Amazon Web Services Control Tower expected.
-
‘IN_SYNC`: The landing zone deployed in this configuration matches the configuration that Amazon Web Services Control Tower expected.
1143 1144 1145 1146 1147 |
# File 'lib/aws-sdk-controltower/types.rb', line 1143 class LandingZoneDriftStatusSummary < Struct.new( :status) SENSITIVE = [] include Aws::Structure end |