Class: Aws::Pipes::Types::EcsEnvironmentVariable
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::EcsEnvironmentVariable
- 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
-
#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.
947 948 949 950 951 952 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 947 class EcsEnvironmentVariable < 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.
947 948 949 950 951 952 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 947 class EcsEnvironmentVariable < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |