Package software.amazon.awscdk
Enum DockerVolumeConsistency
- All Implemented Interfaces:
Serializable
,Comparable<DockerVolumeConsistency>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:53.505Z")
@Stability(Stable)
public enum DockerVolumeConsistency
extends Enum<DockerVolumeConsistency>
Supported Docker volume consistency types.
Only valid on macOS due to the way file storage works on Mac
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionRead/write operations on mounted Docker volumes are first applied on the host machine and then synchronized to the container.Read/write operations inside the Docker container are applied immediately on the mounted host machine volumes.Read/write operations on mounted Docker volumes are first written inside the container and then synchronized to the host machine. -
Method Summary
Modifier and TypeMethodDescriptionstatic DockerVolumeConsistency
Returns the enum constant of this type with the specified name.static DockerVolumeConsistency[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CONSISTENT
Read/write operations inside the Docker container are applied immediately on the mounted host machine volumes. -
DELEGATED
Read/write operations on mounted Docker volumes are first written inside the container and then synchronized to the host machine. -
CACHED
Read/write operations on mounted Docker volumes are first applied on the host machine and then synchronized to the container.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-