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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#last_operation_identifierString

The last operation identifier for the enabled resource.

Returns:

  • (String)


859
860
861
862
863
864
# File 'gems/aws-sdk-controltower/lib/aws-sdk-controltower/types.rb', line 859

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)


859
860
861
862
863
864
# File 'gems/aws-sdk-controltower/lib/aws-sdk-controltower/types.rb', line 859

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