@Stability(value=Stable)
public static interface CfnCrawler.S3TargetProperty
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.services.glue.*;
S3TargetProperty s3TargetProperty = S3TargetProperty.builder()
.connectionName("connectionName")
.dlqEventQueueArn("dlqEventQueueArn")
.eventQueueArn("eventQueueArn")
.exclusions(List.of("exclusions"))
.path("path")
.sampleSize(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCrawler.S3TargetProperty.Builder
A builder for
CfnCrawler.S3TargetProperty |
static class |
CfnCrawler.S3TargetProperty.Jsii$Proxy
An implementation for
CfnCrawler.S3TargetProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCrawler.S3TargetProperty.Builder |
builder() |
default String |
getConnectionName()
The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).
|
default String |
getDlqEventQueueArn()
`CfnCrawler.S3TargetProperty.DlqEventQueueArn`.
|
default String |
getEventQueueArn()
`CfnCrawler.S3TargetProperty.EventQueueArn`.
|
default List<String> |
getExclusions()
A list of glob patterns used to exclude from the crawl.
|
default String |
getPath()
The path to the Amazon S3 target.
|
default Number |
getSampleSize()
Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset.
|
@Stability(value=Stable) @Nullable default String getConnectionName()
@Stability(value=Stable) @Nullable default String getDlqEventQueueArn()
@Stability(value=Stable) @Nullable default String getEventQueueArn()
@Stability(value=Stable) @Nullable default List<String> getExclusions()
For more information, see Catalog Tables with a Crawler .
@Stability(value=Stable) @Nullable default String getPath()
@Stability(value=Stable) @Nullable default Number getSampleSize()
If not set, all the files are crawled. A valid value is an integer between 1 and 249.
@Stability(value=Stable) static CfnCrawler.S3TargetProperty.Builder builder()
Copyright © 2022. All rights reserved.