LinuxParametersProps¶
-
class
aws_cdk.aws_ecs.
LinuxParametersProps
(*, init_process_enabled=None, shared_memory_size=None)¶ Bases:
object
The properties for defining Linux-specific options that are applied to the container.
- Parameters
init_process_enabled (
Optional
[bool
]) – Specifies whether to run an init process inside the container that forwards signals and reaps processes. Default: falseshared_memory_size (
Union
[int
,float
,None
]) – The value for the size (in MiB) of the /dev/shm volume. Default: No shared memory.
Attributes
-
init_process_enabled
¶ Specifies whether to run an init process inside the container that forwards signals and reaps processes.
- Default
false
- Return type
Optional
[bool
]
The value for the size (in MiB) of the /dev/shm volume.
- Default
No shared memory.
- Return type
Union
[int
,float
,None
]