Interface CfnPipe.EcsEnvironmentVariableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.EcsEnvironmentVariableProperty.Jsii$Proxy
- Enclosing class:
CfnPipe
@Stability(Stable)
public static interface CfnPipe.EcsEnvironmentVariableProperty
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. You must also specify a container name.
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.*; EcsEnvironmentVariableProperty ecsEnvironmentVariableProperty = EcsEnvironmentVariableProperty.builder() .name("name") .value("value") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipe.EcsEnvironmentVariableProperty
static final class
An implementation forCfnPipe.EcsEnvironmentVariableProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the key-value pair.For environment variables, this is the name of the environment variable.
- See Also:
-
getValue
The value of the key-value pair.For environment variables, this is the value of the environment variable.
- See Also:
-
builder
-