@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-25T18:28:56.096Z")
public interface FileCopyOptions
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.core.*; 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 java.util.List<java.lang.String> |
getExclude()
Glob patterns to exclude from the copy.
|
default SymlinkFollowMode |
getFollowSymlinks()
A strategy for how to handle symlinks.
|
default IgnoreMode |
getIgnoreMode()
The ignore behavior to use for exclude patterns.
|
default java.util.List<java.lang.String> getExclude()
Default: - nothing is excluded
default SymlinkFollowMode getFollowSymlinks()
Default: SymlinkFollowMode.NEVER
default IgnoreMode getIgnoreMode()
Default: IgnoreMode.GLOB
static FileCopyOptions.Builder builder()
FileCopyOptions.Builder
of FileCopyOptions