@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-20T22:19:53.035Z")
public interface CopyOptions
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.*; CopyOptions copyOptions = CopyOptions.builder() .exclude(List.of("exclude")) .follow(SymlinkFollowMode.NEVER) .ignoreMode(IgnoreMode.GLOB) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CopyOptions.Builder
A builder for
CopyOptions |
static class |
CopyOptions.Jsii$Proxy
An implementation for
CopyOptions |
Modifier and Type | Method and Description |
---|---|
static CopyOptions.Builder |
builder() |
default java.util.List<java.lang.String> |
getExclude()
Glob patterns to exclude from the copy.
|
default SymlinkFollowMode |
getFollow()
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 getFollow()
Default: SymlinkFollowMode.NEVER
default IgnoreMode getIgnoreMode()
Default: IgnoreMode.GLOB
static CopyOptions.Builder builder()
CopyOptions.Builder
of CopyOptions