Class: Aws::ECS::Types::KeyValuePair

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb

Overview

A key-value pair object.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the key-value pair. For environment variables, this is the name of the environment variable.

Returns:

  • (String)


5535
5536
5537
5538
5539
5540
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5535

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

#valueString

The value of the key-value pair. For environment variables, this is the value of the environment variable.

Returns:

  • (String)


5535
5536
5537
5538
5539
5540
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5535

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