Show / Hide Table of Contents

Interface IFingerprintOptions

Options related to calculating source hash.

Inherited Members
ICopyOptions.Exclude
ICopyOptions.Follow
ICopyOptions.IgnoreMode
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFingerprintOptions : ICopyOptions
Syntax (vb)
Public Interface IFingerprintOptions Inherits ICopyOptions
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 fingerprintOptions = new FingerprintOptions {
                Exclude = new [] { "exclude" },
                ExtraHash = "extraHash",
                Follow = 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