Class: Aws::ControlTower::Types::EnablementStatusSummary

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

Overview

The deployment summary of an ‘EnabledControl` or `EnabledBaseline` resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#last_operation_identifierString

The last operation identifier for the enabled resource.

Returns:

  • (String)


879
880
881
882
883
884
# File 'lib/aws-sdk-controltower/types.rb', line 879

class EnablementStatusSummary < Struct.new(
  :last_operation_identifier,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The deployment status of the enabled resource.

Valid values:

  • ‘SUCCEEDED`: The `EnabledControl` or `EnabledBaseline` configuration was deployed successfully.

  • ‘UNDER_CHANGE`: The `EnabledControl` or `EnabledBaseline` configuration is changing.

  • ‘FAILED`: The `EnabledControl` or `EnabledBaseline` configuration failed to deploy.

Returns:

  • (String)


879
880
881
882
883
884
# File 'lib/aws-sdk-controltower/types.rb', line 879

class EnablementStatusSummary < Struct.new(
  :last_operation_identifier,
  :status)
  SENSITIVE = []
  include Aws::Structure
end