enum IpcMode
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ECS.IpcMode |
Java | software.amazon.awscdk.services.ecs.IpcMode |
Python | aws_cdk.aws_ecs.IpcMode |
TypeScript (source) | @aws-cdk/aws-ecs » IpcMode |
The IPC resource namespace to use for the containers in the task.
Members
Name | Description |
---|---|
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. |
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.