Class: Aws::Batch::Types::KeyValuesPair

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of the filter. Filter names are case sensitive.

Returns:

  • (String)


5228
5229
5230
5231
5232
5233
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5228

class KeyValuesPair < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The filter values.

Returns:

  • (Array<String>)


5228
5229
5230
5231
5232
5233
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5228

class KeyValuesPair < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end