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

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

Instance Attribute Details

#nameString

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

Returns:

  • (String)


5306
5307
5308
5309
5310
5311
# File 'lib/aws-sdk-batch/types.rb', line 5306

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

#valuesArray<String>

The filter values.

Returns:

  • (Array<String>)


5306
5307
5308
5309
5310
5311
# File 'lib/aws-sdk-batch/types.rb', line 5306

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