Class: Aws::ECS::Types::KeyValuePair
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::KeyValuePair
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Note:
When making an API call, you may pass KeyValuePair data as a hash:
{
name: "String",
value: "String",
}
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.
5766 5767 5768 5769 5770 5771 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5766 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.
5766 5767 5768 5769 5770 5771 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5766 class KeyValuePair < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |