@Generated(value="jsii-pacmak/1.13.0 (build 385c325)", date="2020-10-21T06:58:44.657Z") @Stability(value=Experimental) public enum EmptyDirMedium extends Enum<EmptyDirMedium>
| Enum Constant and Description |
|---|
DEFAULT
(experimental) The default volume of the backing node.
|
MEMORY
(experimental) 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=Experimental) public static final EmptyDirMedium DEFAULT
@Stability(value=Experimental) 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 © 2020. All rights reserved.