aws-cdk-lib.aws_glue.CfnCrawler.ScheduleProperty

interface ScheduleProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnCrawler.ScheduleProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCrawler_ScheduleProperty
Javasoftware.amazon.awscdk.services.glue.CfnCrawler.ScheduleProperty
Pythonaws_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

NameTypeDescription
scheduleExpression?stringA 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 * * ? *) .