Module: AWSCDK::BundlingFileAccess
- Defined in:
- bundling_file_access.rb
Overview
The access mechanism used to make source files available to the bundling container and to return the bundling output back to the host.
Constant Summary collapse
- VOLUME_COPY =
Deprecated.Note:
Default:
Creates temporary volumes and containers to copy files from the host to the bundling container and back.
This is slower, but works also in more complex situations with remote or shared docker sockets.
Jsii::Enum.new("aws-cdk-lib.BundlingFileAccess", "VOLUME_COPY")
- BIND_MOUNT =
Deprecated.Note:
Default:
The source and output folders will be mounted as bind mount from the host system This is faster and simpler, but less portable than
VOLUME_COPY. Jsii::Enum.new("aws-cdk-lib.BundlingFileAccess", "BIND_MOUNT")