Skip to content

FingerprintOptions

Options related to calculating source hash.

Initializer

import com.aliyun.ros.cdk.core.FingerprintOptions;
FingerprintOptions.builder()
//  .exclude(java.util.List<java.lang.String>)
//  .follow(SymlinkFollowMode)
//  .ignoreMode(IgnoreMode)
//  .extraHash(java.lang.String)
    .build();

Properties

Name Type Description
exclude java.util.List File paths matching the patterns will be excluded.
follow SymlinkFollowMode A strategy for how to handle symlinks.
ignoreMode IgnoreMode The ignore behavior to use for exclude patterns.
extraHash java.lang.String Extra information to encode into the fingerprint (e.g. build instructions and other inputs).

excludeOptional

public java.util.List<java.lang.String> getExclude();
  • Type: java.util.List
  • Default: nothing is excluded

File paths matching the patterns will be excluded.

See ignoreMode to set the matching behavior. Has no effect on Assets bundled using the bundling property.


followOptional

public SymlinkFollowMode getFollow();

A strategy for how to handle symlinks.


ignoreModeOptional

public IgnoreMode getIgnoreMode();

The ignore behavior to use for exclude patterns.


extraHashOptional

public java.lang.String getExtraHash();
  • Type: java.lang.String
  • Default: hash is only based on source content

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