FingerprintOptions¶
-
class
aws_cdk.assets.
FingerprintOptions
(*, exclude=None, follow=None, ignore_mode=None, extra_hash=None)¶ Bases:
aws_cdk.assets.CopyOptions
(deprecated) Options related to calculating source hash.
- Parameters
exclude (
Optional
[List
[str
]]) – (deprecated) Glob patterns to exclude from the copy. Default: nothing is excludedfollow (
Optional
[FollowMode
]) – (deprecated) A strategy for how to handle symlinks. Default: Neverignore_mode (
Optional
[IgnoreMode
]) – (deprecated) The ignore behavior to use for exclude patterns. Default: - GLOB for file assets, DOCKER or GLOB for docker assets depending on whether the ‘extra_hash (
Optional
[str
]) – (deprecated) Extra information to encode into the fingerprint (e.g. build instructions and other inputs). Default: - hash is only based on source content
- Deprecated
see
core.FingerprintOptions
- Stability
deprecated
Attributes
-
exclude
¶ (deprecated) Glob patterns to exclude from the copy.
- Default
nothing is excluded
- Stability
deprecated
- Return type
Optional
[List
[str
]]
-
extra_hash
¶ (deprecated) Extra information to encode into the fingerprint (e.g. build instructions and other inputs).
- Default
hash is only based on source content
- Stability
deprecated
- Return type
Optional
[str
]
-
follow
¶ (deprecated) A strategy for how to handle symlinks.
- Default
Never
- Stability
deprecated
- Return type
Optional
[FollowMode
]
-
ignore_mode
¶ (deprecated) The ignore behavior to use for exclude patterns.
- Default
GLOB for file assets, DOCKER or GLOB for docker assets depending on whether the
‘
- Stability
deprecated
- Aws-cdk
/aws-ecr-assets:dockerIgnoreSupport’ flag is set.
- Return type
Optional
[IgnoreMode
]