Interface CfnJobDefinition.LinuxParametersProperty

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

@Stability(Stable) public static interface CfnJobDefinition.LinuxParametersProperty extends software.amazon.jsii.JsiiSerializable
Linux-specific modifications that are applied to the container, such as details for device mappings.

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.*;
 LinuxParametersProperty linuxParametersProperty = LinuxParametersProperty.builder()
         .devices(List.of(DeviceProperty.builder()
                 .containerPath("containerPath")
                 .hostPath("hostPath")
                 .permissions(List.of("permissions"))
                 .build()))
         .initProcessEnabled(false)
         .maxSwap(123)
         .sharedMemorySize(123)
         .swappiness(123)
         .tmpfs(List.of(TmpfsProperty.builder()
                 .containerPath("containerPath")
                 .size(123)
                 // the properties below are optional
                 .mountOptions(List.of("mountOptions"))
                 .build()))
         .build();
 

See Also: