Interface CfnContainer.EnvironmentVariableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContainer.EnvironmentVariableProperty.Jsii$Proxy
- Enclosing class:
CfnContainer
@Stability(Stable)
public static interface CfnContainer.EnvironmentVariableProperty
extends software.amazon.jsii.JsiiSerializable
EnvironmentVariable
is a property of the Container property. It describes the environment variables of a container on a container service which are key-value parameters that provide dynamic configuration of the application or script run by the container.
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.lightsail.*; EnvironmentVariableProperty environmentVariableProperty = EnvironmentVariableProperty.builder() .value("value") .variable("variable") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContainer.EnvironmentVariableProperty
static final class
An implementation forCfnContainer.EnvironmentVariableProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValue
The environment variable value.- See Also:
-
getVariable
The environment variable key.- See Also:
-
builder
-