@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:01.055Z") @Stability(value=Experimental) public interface CopyOptions 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.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 List<String> |
getExclude()
(experimental) Glob patterns to exclude from the copy.
|
default SymlinkFollowMode |
getFollow()
(experimental) A strategy for how to handle symlinks.
|
default IgnoreMode |
getIgnoreMode()
(experimental) The ignore behavior to use for exclude patterns.
|
@Stability(value=Experimental) @Nullable default List<String> getExclude()
Default: - nothing is excluded
@Stability(value=Experimental) @Nullable default SymlinkFollowMode getFollow()
Default: SymlinkFollowMode.NEVER
@Stability(value=Experimental) @Nullable default IgnoreMode getIgnoreMode()
Default: IgnoreMode.GLOB
@Stability(value=Experimental) static CopyOptions.Builder builder()
CopyOptions.Builder of CopyOptionsCopyright © 2022. All rights reserved.