Class: Aws::SSM::Types::NodeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::NodeFilter
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
The filters for the operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the filter.
-
#type ⇒ String
The type of filter operator.
-
#values ⇒ Array<String>
A filter value supported by the specified key.
Instance Attribute Details
#key ⇒ String
The name of the filter.
13736 13737 13738 13739 13740 13741 13742 |
# File 'lib/aws-sdk-ssm/types.rb', line 13736 class NodeFilter < Struct.new( :key, :values, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of filter operator.
13736 13737 13738 13739 13740 13741 13742 |
# File 'lib/aws-sdk-ssm/types.rb', line 13736 class NodeFilter < Struct.new( :key, :values, :type) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
A filter value supported by the specified key. For example, for the key ‘PlatformType`, supported values include `Linux` and `Windows`.
13736 13737 13738 13739 13740 13741 13742 |
# File 'lib/aws-sdk-ssm/types.rb', line 13736 class NodeFilter < Struct.new( :key, :values, :type) SENSITIVE = [] include Aws::Structure end |