FileCopyOptions
- class aws_cdk.FileCopyOptions(*, exclude=None, follow_symlinks=None, ignore_mode=None)
Bases:
object
Options applied when copying directories into the staging location.
- Parameters:
exclude (
Optional
[Sequence
[str
]]) – File paths matching the patterns will be excluded. SeeignoreMode
to set the matching behavior. Has no effect on Assets bundled using thebundling
property. Default: - nothing is excludedfollow_symlinks (
Optional
[SymlinkFollowMode
]) – A strategy for how to handle symlinks. Default: SymlinkFollowMode.NEVERignore_mode (
Optional
[IgnoreMode
]) – The ignore behavior to use forexclude
patterns. Default: IgnoreMode.GLOB
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk as cdk file_copy_options = cdk.FileCopyOptions( exclude=["exclude"], follow_symlinks=cdk.SymlinkFollowMode.NEVER, ignore_mode=cdk.IgnoreMode.GLOB )
Attributes
- exclude
File paths matching the patterns will be excluded.
See
ignoreMode
to set the matching behavior. Has no effect on Assets bundled using thebundling
property.- Default:
nothing is excluded
- follow_symlinks
A strategy for how to handle symlinks.
- Default:
SymlinkFollowMode.NEVER
- ignore_mode
The ignore behavior to use for
exclude
patterns.- Default:
IgnoreMode.GLOB