@Stability(value=Stable)
public static interface CfnJobDefinition.VolumesProperty
extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJobDefinition.VolumesProperty.Builder
A builder for
CfnJobDefinition.VolumesProperty |
static class |
CfnJobDefinition.VolumesProperty.Jsii$Proxy
An implementation for
CfnJobDefinition.VolumesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJobDefinition.VolumesProperty.Builder |
builder() |
default Object |
getEfsVolumeConfiguration()
`CfnJobDefinition.VolumesProperty.EfsVolumeConfiguration`.
|
default Object |
getHost()
`CfnJobDefinition.VolumesProperty.Host`.
|
default String |
getName()
`CfnJobDefinition.VolumesProperty.Name`.
|
@Stability(value=Stable) @Nullable default Object getEfsVolumeConfiguration()
@Stability(value=Stable) @Nullable default Object getHost()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) static CfnJobDefinition.VolumesProperty.Builder builder()
Copyright © 2022. All rights reserved.