Class: Aws::Batch::Types::KeyValuesPair
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::KeyValuesPair
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
A filter name and value pair that's used to return a more specific
list of results from a ListJobs
API operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the filter.
-
#values ⇒ Array<String>
The filter values.
Instance Attribute Details
#name ⇒ String
The name of the filter. Filter names are case sensitive.
5415 5416 5417 5418 5419 5420 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5415 class KeyValuesPair < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The filter values.
5415 5416 5417 5418 5419 5420 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5415 class KeyValuesPair < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |