Class: Aws::SSM::Types::InstanceInformationStringFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::InstanceInformationStringFilter
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
The filters to describe or get information about your managed nodes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The filter key name to describe your managed nodes.
-
#values ⇒ Array<String>
The filter values.
Instance Attribute Details
#key ⇒ String
The filter key name to describe your managed nodes.
Valid filter key values: ActivationIds | AgentVersion |
AssociationStatus | IamRole | InstanceIds | PingStatus |
PlatformTypes | ResourceType | SourceIds | SourceTypes |
"tag-key" | "tag:{keyname}
Valid values for the
AssociationStatus
filter key: Success | Pending | FailedValid values for the
PingStatus
filter key: Online | ConnectionLost | Inactive (deprecated)Valid values for the
PlatformType
filter key: Windows | Linux | MacOSValid values for the
ResourceType
filter key: EC2Instance | ManagedInstanceValid values for the
SourceType
filter key: AWS::EC2::Instance | AWS::SSM::ManagedInstance | AWS::IoT::ThingValid tag examples:
Key=tag-key,Values=Purpose
|Key=tag:Purpose,Values=Test
.
9662 9663 9664 9665 9666 9667 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 9662 class InstanceInformationStringFilter < Struct.new( :key, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The filter values.
9662 9663 9664 9665 9666 9667 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 9662 class InstanceInformationStringFilter < Struct.new( :key, :values) SENSITIVE = [] include Aws::Structure end |