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 or ListJobsByConsumableResource 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)


6272
6273
6274
6275
6276
6277
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6272

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

#valuesArray<String>

The filter values.

Returns:

  • (Array<String>)


6272
6273
6274
6275
6276
6277
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6272

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