Class: Aws::ControlTower::Types::EnablementStatusSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ControlTower::Types::EnablementStatusSummary
- 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
-
#last_operation_identifier ⇒ String
The last operation identifier for the enabled resource.
-
#status ⇒ String
The deployment status of the enabled resource.
Instance Attribute Details
#last_operation_identifier ⇒ String
The last operation identifier for the enabled resource.
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 |
#status ⇒ String
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.
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 |