@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:35.895Z") @Stability(value=Stable) public interface FileCopyOptions extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
FileCopyOptions fileCopyOptions = FileCopyOptions.builder()
.exclude(List.of("exclude"))
.followSymlinks(SymlinkFollowMode.NEVER)
.ignoreMode(IgnoreMode.GLOB)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
FileCopyOptions.Builder
A builder for
FileCopyOptions |
static class |
FileCopyOptions.Jsii$Proxy
An implementation for
FileCopyOptions |
| Modifier and Type | Method and Description |
|---|---|
static FileCopyOptions.Builder |
builder() |
default List<String> |
getExclude()
File paths matching the patterns will be excluded.
|
default SymlinkFollowMode |
getFollowSymlinks()
A strategy for how to handle symlinks.
|
default IgnoreMode |
getIgnoreMode()
The ignore behavior to use for `exclude` patterns.
|
@Stability(value=Stable) @Nullable default List<String> getExclude()
See ignoreMode to set the matching behavior.
Has no effect on Assets bundled using the bundling property.
Default: - nothing is excluded
@Stability(value=Stable) @Nullable default SymlinkFollowMode getFollowSymlinks()
Default: SymlinkFollowMode.NEVER
@Stability(value=Stable) @Nullable default IgnoreMode getIgnoreMode()
Default: IgnoreMode.GLOB
@Stability(value=Stable) static FileCopyOptions.Builder builder()
FileCopyOptions.Builder of FileCopyOptionsCopyright © 2022. All rights reserved.