Class: Aws::Batch::Types::KeyValuesPair
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::KeyValuesPair
- Includes:
- Structure
- Defined in:
- 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.
5394 5395 5396 5397 5398 5399 |
# File 'lib/aws-sdk-batch/types.rb', line 5394 class KeyValuesPair < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The filter values.
5394 5395 5396 5397 5398 5399 |
# File 'lib/aws-sdk-batch/types.rb', line 5394 class KeyValuesPair < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |