@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:55:17.256Z") @Stability(value=Experimental) public enum IpcMode extends Enum<IpcMode>
| Enum Constant and Description |
|---|
HOST
(experimental) 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
(experimental) 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
(experimental) If task is specified, all containers within the specified task share the same IPC resources.
|
| Modifier and Type | Method and Description |
|---|---|
static IpcMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IpcMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final IpcMode NONE
@Stability(value=Experimental) public static final IpcMode HOST
@Stability(value=Experimental) public static final IpcMode TASK
public static IpcMode[] values()
for (IpcMode c : IpcMode.values()) System.out.println(c);
public static IpcMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.