Interface CfnJobDefinition.TmpfsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJobDefinition.TmpfsProperty.Jsii$Proxy
Enclosing class:
CfnJobDefinition

@Stability(Stable) public static interface CfnJobDefinition.TmpfsProperty extends software.amazon.jsii.JsiiSerializable
The container path, mount options, and size of the tmpfs mount.

This object isn't applicable to jobs that are running on Fargate resources.

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.*;
 TmpfsProperty tmpfsProperty = TmpfsProperty.builder()
         .containerPath("containerPath")
         .size(123)
         // the properties below are optional
         .mountOptions(List.of("mountOptions"))
         .build();
 

See Also: