Interface FileFingerprintOptions

All Superinterfaces:
FileCopyOptions, software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
AssetImageCodeProps, AssetImageProps, DockerImageAssetOptions, DockerImageAssetProps
All Known Implementing Classes:
AssetImageCodeProps.Jsii$Proxy, AssetImageProps.Jsii$Proxy, DockerImageAssetOptions.Jsii$Proxy, DockerImageAssetProps.Jsii$Proxy, FileFingerprintOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.040Z") @Stability(Stable) public interface FileFingerprintOptions extends software.amazon.jsii.JsiiSerializable, FileCopyOptions
Options related to calculating source hash.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.core.*;
 FileFingerprintOptions fileFingerprintOptions = FileFingerprintOptions.builder()
         .exclude(List.of("exclude"))
         .extraHash("extraHash")
         .followSymlinks(SymlinkFollowMode.NEVER)
         .ignoreMode(IgnoreMode.GLOB)
         .build();