Interface CfnJobDefinition.VolumesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobDefinition.VolumesProperty.Jsii$Proxy
- Enclosing class:
CfnJobDefinition
@Stability(Stable)
public static interface CfnJobDefinition.VolumesProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
VolumesProperty volumesProperty = VolumesProperty.builder()
.efsVolumeConfiguration(EfsVolumeConfigurationProperty.builder()
.fileSystemId("fileSystemId")
// the properties below are optional
.authorizationConfig(AuthorizationConfigProperty.builder()
.accessPointId("accessPointId")
.iam("iam")
.build())
.rootDirectory("rootDirectory")
.transitEncryption("transitEncryption")
.transitEncryptionPort(123)
.build())
.host(VolumesHostProperty.builder()
.sourcePath("sourcePath")
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobDefinition.VolumesPropertystatic final classAn implementation forCfnJobDefinition.VolumesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnJobDefinition.EfsVolumeConfigurationPropertydefault ObjectgetHost()Returns union: eitherIResolvableorCfnJobDefinition.VolumesHostPropertydefault StringgetName()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfsVolumeConfiguration
Returns union: eitherIResolvableorCfnJobDefinition.EfsVolumeConfigurationProperty- See Also:
-
getHost
Returns union: eitherIResolvableorCfnJobDefinition.VolumesHostProperty- See Also:
-
getName
- See Also:
-
builder
-