Class: Aws::Batch::Types::KeyValuePair
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::KeyValuePair
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
A key-value pair object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the key-value pair.
-
#value ⇒ String
The value of the key-value pair.
Instance Attribute Details
#name ⇒ String
The name of the key-value pair. For environment variables, this is the name of the environment variable.
5395 5396 5397 5398 5399 5400 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5395 class KeyValuePair < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the key-value pair. For environment variables, this is the value of the environment variable.
5395 5396 5397 5398 5399 5400 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5395 class KeyValuePair < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |