Interface BatchJobStateChange.MountPoint
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BatchJobStateChange.MountPoint.Jsii$Proxy
- Enclosing class:
BatchJobStateChange
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.batch.events.*;
MountPoint mountPoint = MountPoint.builder()
.containerPath(List.of("containerPath"))
.readOnly(List.of("readOnly"))
.sourceVolume(List.of("sourceVolume"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBatchJobStateChange.MountPointstatic final classAn implementation forBatchJobStateChange.MountPoint -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) containerPath property.(experimental) readOnly property.(experimental) sourceVolume property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerPath
(experimental) containerPath property.Specify an array of string values to match this event if the actual value of containerPath is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getReadOnly
(experimental) readOnly property.Specify an array of string values to match this event if the actual value of readOnly is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSourceVolume
(experimental) sourceVolume property.Specify an array of string values to match this event if the actual value of sourceVolume is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-