Class: Aws::SSM::Types::AssociationOverview
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::AssociationOverview
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Information about the association.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#association_status_aggregated_count ⇒ Hash<String,Integer>
Returns the number of targets for the association status.
-
#detailed_status ⇒ String
A detailed status of the association.
-
#status ⇒ String
The status of the association.
Instance Attribute Details
#association_status_aggregated_count ⇒ Hash<String,Integer>
Returns the number of targets for the association status. For example, if you created an association with two managed nodes, and one of them was successful, this would return the count of managed nodes by status.
842 843 844 845 846 847 848 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 842 class AssociationOverview < Struct.new( :status, :detailed_status, :association_status_aggregated_count) SENSITIVE = [] include Aws::Structure end |
#detailed_status ⇒ String
A detailed status of the association.
842 843 844 845 846 847 848 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 842 class AssociationOverview < Struct.new( :status, :detailed_status, :association_status_aggregated_count) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the association. Status can be: Pending, Success, or Failed.
842 843 844 845 846 847 848 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 842 class AssociationOverview < Struct.new( :status, :detailed_status, :association_status_aggregated_count) SENSITIVE = [] include Aws::Structure end |