aws-cdk-lib.aws_databrew.CfnScheduleProps

interface CfnScheduleProps

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnScheduleProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnScheduleProps
Javasoftware.amazon.awscdk.services.databrew.CfnScheduleProps
Pythonaws_cdk.aws_databrew.CfnScheduleProps
TypeScript aws-cdk-lib » aws_databrew » CfnScheduleProps

Properties for defining a CfnSchedule.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_databrew as databrew } from 'aws-cdk-lib';
const cfnScheduleProps: databrew.CfnScheduleProps = {
  cronExpression: 'cronExpression',
  name: 'name',

  // the properties below are optional
  jobNames: ['jobNames'],
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
cronExpressionstringThe dates and times when the job is to run.
namestringThe name of the schedule.
jobNames?string[]A list of jobs to be run, according to the schedule.
tags?CfnTag[]Metadata tags that have been applied to the schedule.

cronExpression

Type: string

The dates and times when the job is to run.

For more information, see Working with cron expressions for recipe jobs in the AWS Glue DataBrew Developer Guide .


name

Type: string

The name of the schedule.


jobNames?

Type: string[] (optional)

A list of jobs to be run, according to the schedule.


tags?

Type: CfnTag[] (optional)

Metadata tags that have been applied to the schedule.