Class: Aws::ECS::Types::KeyValuePair
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::KeyValuePair
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/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.
5666 5667 5668 5669 5670 5671 |
# File 'lib/aws-sdk-ecs/types.rb', line 5666 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.
5666 5667 5668 5669 5670 5671 |
# File 'lib/aws-sdk-ecs/types.rb', line 5666 class KeyValuePair < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |