Interface CfnPipe.BatchEnvironmentVariableProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.BatchEnvironmentVariableProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.BatchEnvironmentVariableProperty extends software.amazon.jsii.JsiiSerializable
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.

Environment variables cannot start with " AWS Batch ". This naming convention is reserved for variables that AWS Batch sets.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pipes.*;
 BatchEnvironmentVariableProperty batchEnvironmentVariableProperty = BatchEnvironmentVariableProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: