interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnCrawler.ScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCrawler_ScheduleProperty |
Java | software.amazon.awscdk.services.glue.CfnCrawler.ScheduleProperty |
Python | aws_cdk.aws_glue.CfnCrawler.ScheduleProperty |
TypeScript | aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript