aws-cdk-lib.aws_ecs.IpcMode

enum IpcMode

LanguageType name
.NETAmazon.CDK.AWS.ECS.IpcMode
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#IpcMode
Javasoftware.amazon.awscdk.services.ecs.IpcMode
Pythonaws_cdk.aws_ecs.IpcMode
TypeScript (source)aws-cdk-lib » aws_ecs » IpcMode

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

Members

NameDescription
NONEIf 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.
HOSTIf 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.
TASKIf task is specified, all containers within the specified task share the same IPC resources.

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.


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.


TASK

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