Package io.github.cdklabs.awslambdarust
Interface ICommandHooks.Jsii$Default
-
- All Superinterfaces:
ICommandHooks,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ICommandHooks.Jsii$Proxy
- Enclosing interface:
- ICommandHooks
@Internal public static interface ICommandHooks.Jsii$Default extends ICommandHooks
Internal default implementation forICommandHooks.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.github.cdklabs.awslambdarust.ICommandHooks
ICommandHooks.Jsii$Default, ICommandHooks.Jsii$Proxy
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default List<String>afterBundling(String inputDir, String outputDir)(experimental) Returns commands to run after bundling.default List<String>beforeBundling(String inputDir, String outputDir)(experimental) Returns commands to run before bundling.
-
-
-
Method Detail
-
afterBundling
@Stability(Experimental) @NotNull default List<String> afterBundling(@NotNull String inputDir, @NotNull String outputDir)
(experimental) Returns commands to run after bundling.Commands are chained with
&&.- Specified by:
afterBundlingin interfaceICommandHooks- Parameters:
inputDir- This parameter is required.outputDir- This parameter is required.
-
beforeBundling
@Stability(Experimental) @NotNull default List<String> beforeBundling(@NotNull String inputDir, @NotNull String outputDir)
(experimental) Returns commands to run before bundling.Commands are chained with
&&.- Specified by:
beforeBundlingin interfaceICommandHooks- Parameters:
inputDir- This parameter is required.outputDir- This parameter is required.
-
-