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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobDefinition.EnvironmentPropertystatic final classAn implementation forCfnJobDefinition.EnvironmentProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the environment variable. -
getValue
The value of the environment variable. -
builder
-