Interface CfnJobDefinition.EnvironmentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobDefinition.EnvironmentProperty.Jsii$Proxy
- Enclosing class:
CfnJobDefinition
@Stability(Stable)
public static interface CfnJobDefinition.EnvironmentProperty
extends software.amazon.jsii.JsiiSerializable
The Environment property type specifies environment variables to use in a job definition.
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.*; EnvironmentProperty environmentProperty = EnvironmentProperty.builder() .name("name") .value("value") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJobDefinition.EnvironmentProperty
static final class
An implementation forCfnJobDefinition.EnvironmentProperty
-
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
-