org.cdk8s.plus.EmptyDirMedium Maven / Gradle / Ivy
Show all versions of cdk8s-plus Show documentation
package org.cdk8s.plus;
/**
* The medium on which to store the volume.
*
* EXPERIMENTAL
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.7.0 (build 179a3a5)", date = "2020-06-29T13:29:38.493Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = org.cdk8s.plus.$Module.class, fqn = "cdk8s-plus.EmptyDirMedium")
public enum EmptyDirMedium {
/**
* The default volume of the backing node.
*
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
DEFAULT,
/**
* Mount a tmpfs (RAM-backed filesystem) for you instead.
*
* 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.
*
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
MEMORY,
}