Class: Aws::ControlTower::Types::DriftStatusSummary

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-controltower/lib/aws-sdk-controltower/types.rb

Overview

The drift summary of the enabled control.

Amazon Web Services Control Tower expects the enabled control configuration to include all supported and governed Regions. If the enabled control differs from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the enabled control.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#drift_statusString

The drift status of the enabled control.

Valid values:

  • DRIFTED: The enabledControl deployed in this configuration doesn’t match the configuration that Amazon Web Services Control Tower expected.

  • IN_SYNC: The enabledControl deployed in this configuration matches the configuration that Amazon Web Services Control Tower expected.

  • NOT_CHECKING: Amazon Web Services Control Tower does not check drift for this enabled control. Drift is not supported for the control type.

  • UNKNOWN: Amazon Web Services Control Tower is not able to check the drift status for the enabled control.

Returns:

  • (String)


314
315
316
317
318
# File 'gems/aws-sdk-controltower/lib/aws-sdk-controltower/types.rb', line 314

class DriftStatusSummary < Struct.new(
  :drift_status)
  SENSITIVE = []
  include Aws::Structure
end