interface FileCopyOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.FileCopyOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2#FileCopyOptions |
Java | software.amazon.awscdk.FileCopyOptions |
Python | aws_cdk.FileCopyOptions |
TypeScript (source) | aws-cdk-lib » FileCopyOptions |
Options applied when copying directories into the staging location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const fileCopyOptions: cdk.FileCopyOptions = {
exclude: ['exclude'],
followSymlinks: cdk.SymlinkFollowMode.NEVER,
ignoreMode: cdk.IgnoreMode.GLOB,
};
Properties
Name | Type | Description |
---|---|---|
exclude? | string[] | File paths matching the patterns will be excluded. |
follow | Symlink | A strategy for how to handle symlinks. |
ignore | Ignore | The ignore behavior to use for exclude patterns. |
exclude?
Type:
string[]
(optional, 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.
followSymlinks?
Type:
Symlink
(optional, default: SymlinkFollowMode.NEVER)
A strategy for how to handle symlinks.
ignoreMode?
Type:
Ignore
(optional, default: IgnoreMode.GLOB)
The ignore behavior to use for exclude
patterns.