Class: Aws::Pipes::Types::BatchEnvironmentVariable
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::BatchEnvironmentVariable
- 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.
Batch
". This naming
convention is reserved for variables that Batch sets.
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.
129 130 131 132 133 134 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 129 class BatchEnvironmentVariable < 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.
129 130 131 132 133 134 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 129 class BatchEnvironmentVariable < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |