Package software.amazon.awscdk.core
Interface ILocalBundling
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ILocalBundling.Jsii$Default
- All Known Implementing Classes:
ILocalBundling.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.075Z")
@Stability(Stable)
public interface ILocalBundling
extends software.amazon.jsii.JsiiSerializable
Local bundling.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Internal default implementation forILocalBundling
.static final class
A proxy class which represents a concrete javascript instance of this type. -
Method Summary
Modifier and TypeMethodDescriptiontryBundle
(String outputDir, BundlingOptions options) This method is called before attempting docker bundling to allow the bundler to be executed locally.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
tryBundle
@Stability(Stable) @NotNull Boolean tryBundle(@NotNull String outputDir, @NotNull BundlingOptions options) This method is called before attempting docker bundling to allow the bundler to be executed locally.If the local bundler exists, and bundling was performed locally, return
true
. Otherwise, returnfalse
.- Parameters:
outputDir
- the directory where the bundled asset should be output. This parameter is required.options
- bundling options for this asset. This parameter is required.
-