Interface CfnContainerGroupDefinition.ContainerEnvironmentProperty

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

@Stability(Stable) public static interface CfnContainerGroupDefinition.ContainerEnvironmentProperty extends software.amazon.jsii.JsiiSerializable
*This data type is currently not available.

It is under improvement as we respond to customer feedback from the Containers public preview.*

An environment variable to set inside a container, in the form of a key-value pair.

Related data type: ContainerDefinition$Environment

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.gamelift.*;
 ContainerEnvironmentProperty containerEnvironmentProperty = ContainerEnvironmentProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: