Package software.amazon.awscdk.core
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forFileFingerprintOptions
static final class
An implementation forFileFingerprintOptions
-
Method Summary
Methods inherited from interface software.amazon.awscdk.core.FileCopyOptions
getExclude, getFollowSymlinks, getIgnoreMode
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExtraHash
Extra information to encode into the fingerprint (e.g. build instructions and other inputs).Default: - hash is only based on source content
-
builder
- Returns:
- a
FileFingerprintOptions.Builder
ofFileFingerprintOptions
-