Interface CfnJobDefinition.EksContainerEnvironmentVariableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobDefinition.EksContainerEnvironmentVariableProperty.Jsii$Proxy
- Enclosing class:
CfnJobDefinition
@Stability(Stable)
public static interface CfnJobDefinition.EksContainerEnvironmentVariableProperty
extends software.amazon.jsii.JsiiSerializable
An environment variable.
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.batch.*; EksContainerEnvironmentVariableProperty eksContainerEnvironmentVariableProperty = EksContainerEnvironmentVariableProperty.builder() .name("name") // the properties below are optional .value("value") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJobDefinition.EksContainerEnvironmentVariableProperty
static final class
An implementation forCfnJobDefinition.EksContainerEnvironmentVariableProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the environment variable.- See Also:
-
getValue
The value of the environment variable.- See Also:
-
builder
@Stability(Stable) static CfnJobDefinition.EksContainerEnvironmentVariableProperty.Builder builder()
-