Class: Aws::Pipes::Types::EcsEnvironmentVariable

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

Overview

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition. You must also specify a container name.

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)


882
883
884
885
886
887
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 882

class EcsEnvironmentVariable < 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)


882
883
884
885
886
887
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 882

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