Enum DockerVolumeConsistency

java.lang.Object
java.lang.Enum<DockerVolumeConsistency>
software.amazon.awscdk.DockerVolumeConsistency
All Implemented Interfaces:
Serializable, Comparable<DockerVolumeConsistency>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:10.066Z") @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

  • Enum Constant Details

    • CONSISTENT

      @Stability(Stable) public static final DockerVolumeConsistency CONSISTENT
      Read/write operations inside the Docker container are applied immediately on the mounted host machine volumes.
    • DELEGATED

      @Stability(Stable) public static final DockerVolumeConsistency DELEGATED
      Read/write operations on mounted Docker volumes are first written inside the container and then synchronized to the host machine.
    • CACHED

      @Stability(Stable) public static final DockerVolumeConsistency CACHED
      Read/write operations on mounted Docker volumes are first applied on the host machine and then synchronized to the container.
  • Method Details

    • values

      public static DockerVolumeConsistency[] 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

      public static DockerVolumeConsistency valueOf(String name)
      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 name
      NullPointerException - if the argument is null