Module: AWSCDK::BundlingOutput
- Defined in:
- bundling_output.rb
Overview
The type of output that a bundling operation is producing.
Constant Summary collapse
- ARCHIVED =
Deprecated.Note:
Default:
The bundling output directory includes a single .zip or .jar file which will be used as the final bundle. If the output directory does not include exactly a single archive, bundling will fail.
Jsii::Enum.new("aws-cdk-lib.BundlingOutput", "ARCHIVED")
- NOT_ARCHIVED =
Deprecated.Note:
Default:
The bundling output directory contains one or more files which will be archived and uploaded as a .zip file to S3.
Jsii::Enum.new("aws-cdk-lib.BundlingOutput", "NOT_ARCHIVED")
- AUTO_DISCOVER =
Deprecated.Note:
Default:
If the bundling output directory contains a single archive file (zip or jar) it will be used as the bundle output as-is.
Otherwise, all the files in the bundling output directory will be zipped.
Jsii::Enum.new("aws-cdk-lib.BundlingOutput", "AUTO_DISCOVER")
- SINGLE_FILE =
Deprecated.Note:
Default:
The bundling output directory includes a single file which will be used as the final bundle.
If the output directory does not include exactly a single file, bundling will fail.
Similar to ARCHIVED but for non-archive files
Jsii::Enum.new("aws-cdk-lib.BundlingOutput", "SINGLE_FILE")