Interface CfnCrawlerPropsMixin.ScheduleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCrawlerPropsMixin.ScheduleProperty.Jsii$Proxy
- Enclosing class:
CfnCrawlerPropsMixin
@Stability(Stable)
public static interface CfnCrawlerPropsMixin.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.cfnpropertymixins.services.glue.*;
ScheduleProperty scheduleProperty = ScheduleProperty.builder()
.scheduleExpression("scheduleExpression")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCrawlerPropsMixin.SchedulePropertystatic final classAn implementation forCfnCrawlerPropsMixin.ScheduleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScheduleExpression
Acronexpression 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
-