Interface CfnCrawler.ScheduleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCrawler.ScheduleProperty.Jsii$Proxy
- Enclosing class:
CfnCrawler
@Stability(Stable)
public static interface CfnCrawler.ScheduleProperty
extends software.amazon.jsii.JsiiSerializable
A scheduling object using a
cron
statement to schedule an event.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCrawler.ScheduleProperty
static final class
An implementation forCfnCrawler.ScheduleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScheduleExpression
Acron
expression used to specify the schedule.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 * * ? *)
.- See Also:
-
builder
-