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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnContainer.EnvironmentVariablePropertystatic final classAn implementation forCfnContainer.EnvironmentVariableProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValue
The environment variable value. -
getVariable
The environment variable key. -
builder
-