Class: Aws::SSM::Types::InstanceInformationFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::InstanceInformationFilter
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Note:
When making an API call, you may pass InstanceInformationFilter data as a hash:
{
key: "InstanceIds", # required, accepts InstanceIds, AgentVersion, PingStatus, PlatformTypes, ActivationIds, IamRole, ResourceType, AssociationStatus
value_set: ["InstanceInformationFilterValue"], # required
}
Describes a filter for a specific list of managed nodes. You can filter node information by using tags. You specify tags by using a key-value mapping.
Use this operation instead of the
DescribeInstanceInformationRequest$InstanceInformationFilterList
method. The InstanceInformationFilterList
method is a legacy method
and doesn't support tags.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the filter.
-
#value_set ⇒ Array<String>
The filter values.
Instance Attribute Details
#key ⇒ String
The name of the filter.
10522 10523 10524 10525 10526 10527 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 10522 class InstanceInformationFilter < Struct.new( :key, :value_set) SENSITIVE = [] include Aws::Structure end |
#value_set ⇒ Array<String>
The filter values.
10522 10523 10524 10525 10526 10527 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 10522 class InstanceInformationFilter < Struct.new( :key, :value_set) SENSITIVE = [] include Aws::Structure end |