Show / Hide Table of Contents

Interface IFileFingerprintOptions

Options related to calculating source hash.

Inherited Members
IFileCopyOptions.Exclude
IFileCopyOptions.FollowSymlinks
IFileCopyOptions.IgnoreMode
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFileFingerprintOptions : IFileCopyOptions
Syntax (vb)
Public Interface IFileFingerprintOptions Inherits IFileCopyOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;

            var fileFingerprintOptions = new FileFingerprintOptions {
                Exclude = new [] { "exclude" },
                ExtraHash = "extraHash",
                FollowSymlinks = SymlinkFollowMode.NEVER,
                IgnoreMode = IgnoreMode.GLOB
            };

Synopsis

Properties

ExtraHash

Extra information to encode into the fingerprint (e.g. build instructions and other inputs).

Properties

ExtraHash

Extra information to encode into the fingerprint (e.g. build instructions and other inputs).

string? ExtraHash { get; }
Property Value

string

Remarks

Default: - hash is only based on source content

Back to top Generated by DocFX