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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLinuxParametersPropsstatic final classAn implementation forLinuxParametersProps -
Method Summary
Modifier and TypeMethodDescriptionstatic LinuxParametersProps.Builderbuilder()default BooleanSpecifies whether to run an init process inside the container that forwards signals and reaps processes.default NumberThe value for the size (in MiB) of the /dev/shm volume.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInitProcessEnabled
Specifies whether to run an init process inside the container that forwards signals and reaps processes.Default: false
-
builder
- Returns:
- a
LinuxParametersProps.BuilderofLinuxParametersProps
-