Interface CfnJobDefinitionPropsMixin.VolumesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobDefinitionPropsMixin.VolumesProperty.Jsii$Proxy
- Enclosing class:
CfnJobDefinitionPropsMixin
@Stability(Stable)
public static interface CfnJobDefinitionPropsMixin.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.cfnpropertymixins.services.batch.*;
VolumesProperty volumesProperty = VolumesProperty.builder()
.efsVolumeConfiguration(EfsVolumeConfigurationProperty.builder()
.authorizationConfig(AuthorizationConfigProperty.builder()
.accessPointId("accessPointId")
.iam("iam")
.build())
.fileSystemId("fileSystemId")
.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 forCfnJobDefinitionPropsMixin.VolumesPropertystatic final classAn implementation forCfnJobDefinitionPropsMixin.VolumesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnJobDefinitionPropsMixin.EfsVolumeConfigurationPropertydefault ObjectgetHost()Returns union: eitherIResolvableorCfnJobDefinitionPropsMixin.VolumesHostPropertydefault StringgetName()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfsVolumeConfiguration
Returns union: eitherIResolvableorCfnJobDefinitionPropsMixin.EfsVolumeConfigurationProperty- See Also:
-
getHost
Returns union: eitherIResolvableorCfnJobDefinitionPropsMixin.VolumesHostProperty- See Also:
-
getName
- See Also:
-
builder
-