Show / Hide Table of Contents

Class FingerprintOptions

Options related to calculating source hash.

Inheritance
System.Object
FingerprintOptions
Implements
IFingerprintOptions
ICopyOptions
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public class FingerprintOptions : Object, IFingerprintOptions, ICopyOptions
Syntax (vb)
Public Class FingerprintOptions
    Inherits Object
    Implements IFingerprintOptions, 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;
FingerprintOptions fingerprintOptions = new FingerprintOptions {
    Exclude = new [] { "exclude" },
    ExtraHash = "extraHash",
    Follow = SymlinkFollowMode.NEVER,
    IgnoreMode = IgnoreMode.GLOB
};

Synopsis

Constructors

FingerprintOptions()

Properties

Exclude

Glob patterns to exclude from the copy.

ExtraHash

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

Follow

A strategy for how to handle symlinks.

IgnoreMode

The ignore behavior to use for exclude patterns.

Constructors

FingerprintOptions()

public FingerprintOptions()

Properties

Exclude

Glob patterns to exclude from the copy.

public string[] Exclude { get; set; }
Property Value

System.String[]

Remarks

Default: - nothing is excluded

ExtraHash

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

public string ExtraHash { get; set; }
Property Value

System.String

Remarks

Default: - hash is only based on source content

Follow

A strategy for how to handle symlinks.

public Nullable<SymlinkFollowMode> Follow { get; set; }
Property Value

System.Nullable<SymlinkFollowMode>

Remarks

Default: SymlinkFollowMode.NEVER

IgnoreMode

The ignore behavior to use for exclude patterns.

public Nullable<IgnoreMode> IgnoreMode { get; set; }
Property Value

System.Nullable<IgnoreMode>

Remarks

Default: IgnoreMode.GLOB

Implements

IFingerprintOptions
ICopyOptions
Back to top Generated by DocFX