Module: AWSCDK::DockerVolumeConsistency
- Defined in:
- docker_volume_consistency.rb
Overview
Supported Docker volume consistency types.
Only valid on macOS due to the way file storage works on Mac
Constant Summary collapse
- CONSISTENT =
Deprecated.Note:
Default:
Read/write operations inside the Docker container are applied immediately on the mounted host machine volumes.
Jsii::Enum.new("aws-cdk-lib.DockerVolumeConsistency", "CONSISTENT")
- DELEGATED =
Deprecated.Note:
Default:
Read/write operations on mounted Docker volumes are first written inside the container and then synchronized to the host machine.
Jsii::Enum.new("aws-cdk-lib.DockerVolumeConsistency", "DELEGATED")
- CACHED =
Deprecated.Note:
Default:
Read/write operations on mounted Docker volumes are first applied on the host machine and then synchronized to the container.
Jsii::Enum.new("aws-cdk-lib.DockerVolumeConsistency", "CACHED")