@Generated(value="jsii-pacmak/1.34.0 (build 9b72778)", date="2021-09-21T00:27:37.467Z") @Stability(value=Stable) public enum EmptyDirMedium extends Enum<EmptyDirMedium>
| Enum Constant and Description |
|---|
DEFAULT
The default volume of the backing node.
|
MEMORY
Mount a tmpfs (RAM-backed filesystem) for you instead.
|
| Modifier and Type | Method and Description |
|---|---|
static EmptyDirMedium |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmptyDirMedium[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final EmptyDirMedium DEFAULT
@Stability(value=Stable) public static final EmptyDirMedium MEMORY
While tmpfs is very fast, be aware that unlike disks, tmpfs is cleared on node reboot and any files you write will count against your Container's memory limit.
public static EmptyDirMedium[] values()
for (EmptyDirMedium c : EmptyDirMedium.values()) System.out.println(c);
public static EmptyDirMedium 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.