Interface LinuxParametersProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LinuxParametersProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.411Z") @Stability(Stable) public interface LinuxParametersProps extends software.amazon.jsii.JsiiSerializable
The properties for defining Linux-specific options that are applied to the container.

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.ecs.*;
 LinuxParametersProps linuxParametersProps = LinuxParametersProps.builder()
         .initProcessEnabled(false)
         .sharedMemorySize(123)
         .build();
 
  • Method Details

    • getInitProcessEnabled

      @Stability(Stable) @Nullable default Boolean getInitProcessEnabled()
      Specifies whether to run an init process inside the container that forwards signals and reaps processes.

      Default: false

    • getSharedMemorySize

      @Stability(Stable) @Nullable default Number getSharedMemorySize()
      The value for the size (in MiB) of the /dev/shm volume.

      Default: No shared memory.

    • builder

      @Stability(Stable) static LinuxParametersProps.Builder builder()
      Returns:
      a LinuxParametersProps.Builder of LinuxParametersProps