Class: Aws::ControlTower::Types::EnablementStatusSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ControlTower::Types::EnablementStatusSummary
- Defined in:
- gems/aws-sdk-controltower/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 'gems/aws-sdk-controltower/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
: TheEnabledControl
orEnabledBaseline
configuration was deployed successfully.UNDER_CHANGE
: TheEnabledControl
orEnabledBaseline
configuration is changing.FAILED
: TheEnabledControl
orEnabledBaseline
configuration failed to deploy.
879 880 881 882 883 884 |
# File 'gems/aws-sdk-controltower/lib/aws-sdk-controltower/types.rb', line 879 class EnablementStatusSummary < Struct.new( :last_operation_identifier, :status) SENSITIVE = [] include Aws::Structure end |