Class: Aws::SSM::Types::AssociationOverview

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

Overview

Information about the association.

Instance Attribute Summary collapse

Instance Attribute Details

#association_status_aggregated_countHash<String,Integer>

Returns the number of targets for the association status. For example, if you created an association with two instances, and one of them was successful, this would return the count of instances by status.

Returns:

  • (Hash<String,Integer>)


605
606
607
608
609
610
# File 'lib/aws-sdk-ssm/types.rb', line 605

class AssociationOverview < Struct.new(
  :status,
  :detailed_status,
  :association_status_aggregated_count)
  include Aws::Structure
end

#detailed_statusString

A detailed status of the association.

Returns:

  • (String)


605
606
607
608
609
610
# File 'lib/aws-sdk-ssm/types.rb', line 605

class AssociationOverview < Struct.new(
  :status,
  :detailed_status,
  :association_status_aggregated_count)
  include Aws::Structure
end

#statusString

The status of the association. Status can be: Pending, Success, or Failed.

Returns:

  • (String)


605
606
607
608
609
610
# File 'lib/aws-sdk-ssm/types.rb', line 605

class AssociationOverview < Struct.new(
  :status,
  :detailed_status,
  :association_status_aggregated_count)
  include Aws::Structure
end