interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnCrawlerPropsMixin.ScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnCrawlerPropsMixin_ScheduleProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnCrawlerPropsMixin.ScheduleProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnCrawlerPropsMixin.ScheduleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnCrawlerPropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const scheduleProperty: glue_mixins.CfnCrawlerPropsMixin.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