Class: Aws::Batch::Types::KeyValuePair
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::KeyValuePair
- Includes:
- Structure
- Defined in:
- 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.
5374 5375 5376 5377 5378 5379 |
# File 'lib/aws-sdk-batch/types.rb', line 5374 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.
5374 5375 5376 5377 5378 5379 |
# File 'lib/aws-sdk-batch/types.rb', line 5374 class KeyValuePair < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |