@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:55:17.260Z") @Stability(value=Experimental) public enum PidMode extends Enum<PidMode>
| Enum Constant and Description |
|---|
HOST
(experimental) If host is specified, then all containers within the tasks that specified the host PID mode on the same container instance share the same process namespace with the host Amazon EC2 instance.
|
TASK
(experimental) If task is specified, all containers within the specified task share the same process namespace.
|
| Modifier and Type | Method and Description |
|---|---|
static PidMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PidMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final PidMode HOST
@Stability(value=Experimental) public static final PidMode TASK
public static PidMode[] values()
for (PidMode c : PidMode.values()) System.out.println(c);
public static PidMode 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.