IpcMode

class aws_cdk.aws_ecs.IpcMode(value)

Bases: Enum

The IPC resource namespace to use for the containers in the task.

Attributes

HOST

If host is specified, then all containers within the tasks that specified the host IPC mode on the same container instance share the same IPC resources with the host Amazon EC2 instance.

NONE

If none is specified, then IPC resources within the containers of a task are private and not shared with other containers in a task or on the container instance.

TASK

If task is specified, all containers within the specified task share the same IPC resources.