interface CfnScheduleProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnScheduleProps |
Java | software.amazon.awscdk.services.databrew.CfnScheduleProps |
Python | aws_cdk.aws_databrew.CfnScheduleProps |
TypeScript | @aws-cdk/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 * as databrew from '@aws-cdk/aws-databrew';
const cfnScheduleProps: databrew.CfnScheduleProps = {
cronExpression: 'cronExpression',
name: 'name',
// the properties below are optional
jobNames: ['jobNames'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
cron | string | The dates and times when the job is to run. |
name | string | The name of the schedule. |
job | string[] | A list of jobs to be run, according to the schedule. |
tags? | Cfn [] | 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:
Cfn
[]
(optional)
Metadata tags that have been applied to the schedule.