@Stability(value=Stable)
public static interface CfnCrawler.ScheduleProperty
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.*;
ScheduleProperty scheduleProperty = ScheduleProperty.builder()
.scheduleExpression("scheduleExpression")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCrawler.ScheduleProperty.Builder
A builder for
CfnCrawler.ScheduleProperty |
static class |
CfnCrawler.ScheduleProperty.Jsii$Proxy
An implementation for
CfnCrawler.ScheduleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCrawler.ScheduleProperty.Builder |
builder() |
default String |
getScheduleExpression()
A `cron` expression used to specify the schedule.
|
@Stability(value=Stable) @Nullable default String getScheduleExpression()
For more information, see Time-Based Schedules for Jobs and Crawlers . For example, to run something every day at 12:15 UTC, specify cron(15 12 * * ? *) .
@Stability(value=Stable) static CfnCrawler.ScheduleProperty.Builder builder()
Copyright © 2022. All rights reserved.