interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnCrawler.ScheduleProperty |
Java | software.amazon.awscdk.services.glue.CfnCrawler.ScheduleProperty |
Python | aws_cdk.aws_glue.CfnCrawler.ScheduleProperty |
TypeScript | @aws-cdk/aws-glue » CfnCrawler » ScheduleProperty |
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 * as glue from '@aws-cdk/aws-glue';
const scheduleProperty: glue.CfnCrawler.ScheduleProperty = {
scheduleExpression: 'scheduleExpression',
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule | string | A cron expression used to specify the schedule. |
scheduleExpression?
Type:
string
(optional)
A cron 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 * * ? *) .

.NET
Java
Python
TypeScript