@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:06.643Z") @Stability(value=Stable) public interface CfnCrawlerProps 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.*;
Object tags;
CfnCrawlerProps cfnCrawlerProps = CfnCrawlerProps.builder()
.role("role")
.targets(TargetsProperty.builder()
.catalogTargets(List.of(CatalogTargetProperty.builder()
.databaseName("databaseName")
.tables(List.of("tables"))
.build()))
.dynamoDbTargets(List.of(DynamoDBTargetProperty.builder()
.path("path")
.build()))
.jdbcTargets(List.of(JdbcTargetProperty.builder()
.connectionName("connectionName")
.exclusions(List.of("exclusions"))
.path("path")
.build()))
.s3Targets(List.of(S3TargetProperty.builder()
.connectionName("connectionName")
.exclusions(List.of("exclusions"))
.path("path")
.build()))
.build())
// the properties below are optional
.classifiers(List.of("classifiers"))
.configuration("configuration")
.crawlerSecurityConfiguration("crawlerSecurityConfiguration")
.databaseName("databaseName")
.description("description")
.name("name")
.recrawlPolicy(RecrawlPolicyProperty.builder()
.recrawlBehavior("recrawlBehavior")
.build())
.schedule(ScheduleProperty.builder()
.scheduleExpression("scheduleExpression")
.build())
.schemaChangePolicy(SchemaChangePolicyProperty.builder()
.deleteBehavior("deleteBehavior")
.updateBehavior("updateBehavior")
.build())
.tablePrefix("tablePrefix")
.tags(tags)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCrawlerProps.Builder
A builder for
CfnCrawlerProps |
static class |
CfnCrawlerProps.Jsii$Proxy
An implementation for
CfnCrawlerProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCrawlerProps.Builder |
builder() |
default List<String> |
getClassifiers()
`AWS::Glue::Crawler.Classifiers`.
|
default String |
getConfiguration()
`AWS::Glue::Crawler.Configuration`.
|
default String |
getCrawlerSecurityConfiguration()
`AWS::Glue::Crawler.CrawlerSecurityConfiguration`.
|
default String |
getDatabaseName()
`AWS::Glue::Crawler.DatabaseName`.
|
default String |
getDescription()
`AWS::Glue::Crawler.Description`.
|
default String |
getName()
`AWS::Glue::Crawler.Name`.
|
default Object |
getRecrawlPolicy()
`AWS::Glue::Crawler.RecrawlPolicy`.
|
String |
getRole()
`AWS::Glue::Crawler.Role`.
|
default Object |
getSchedule()
`AWS::Glue::Crawler.Schedule`.
|
default Object |
getSchemaChangePolicy()
`AWS::Glue::Crawler.SchemaChangePolicy`.
|
default String |
getTablePrefix()
`AWS::Glue::Crawler.TablePrefix`.
|
default Object |
getTags()
`AWS::Glue::Crawler.Tags`.
|
Object |
getTargets()
`AWS::Glue::Crawler.Targets`.
|
@Stability(value=Stable) @Nullable default List<String> getClassifiers()
@Stability(value=Stable) @Nullable default String getConfiguration()
@Stability(value=Stable) @Nullable default String getCrawlerSecurityConfiguration()
@Stability(value=Stable) @Nullable default String getDatabaseName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getRecrawlPolicy()
@Stability(value=Stable) @NotNull String getRole()
@Stability(value=Stable) @Nullable default Object getSchedule()
@Stability(value=Stable) @Nullable default Object getSchemaChangePolicy()
@Stability(value=Stable) @Nullable default String getTablePrefix()
@Stability(value=Stable) @Nullable default Object getTags()
@Stability(value=Stable) @NotNull Object getTargets()
@Stability(value=Stable) static CfnCrawlerProps.Builder builder()
CfnCrawlerProps.Builder of CfnCrawlerPropsCopyright © 2021. All rights reserved.