Interface StagingProps

All Superinterfaces:
CopyOptions, FingerprintOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
StagingProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.214Z") @Stability(Deprecated) @Deprecated public interface StagingProps extends software.amazon.jsii.JsiiSerializable, FingerprintOptions
Deprecated.
use core.AssetStagingProps
(deprecated) Deprecated.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.assets.*;
 import software.amazon.awscdk.core.*;
 StagingProps stagingProps = StagingProps.builder()
         .sourcePath("sourcePath")
         // the properties below are optional
         .exclude(List.of("exclude"))
         .extraHash("extraHash")
         .follow(FollowMode.NEVER)
         .ignoreMode(IgnoreMode.GLOB)
         .build();