interface CfnScheduleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnScheduleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnScheduleMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnScheduleMixinProps |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnScheduleMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnScheduleMixinProps |
Properties for CfnSchedulePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const cfnScheduleMixinProps: databrew_mixins.CfnScheduleMixinProps = {
cronExpression: 'cronExpression',
jobNames: ['jobNames'],
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cron | string | The dates and times when the job is to run. |
| job | string[] | A list of jobs to be run, according to the schedule. |
| name? | string | The name of the schedule. |
| tags? | Cfn[] | Metadata tags that have been applied to the schedule. |
cronExpression?
Type:
string
(optional)
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 .
jobNames?
Type:
string[]
(optional)
A list of jobs to be run, according to the schedule.
name?
Type:
string
(optional)
The name of the schedule.
tags?
Type:
Cfn[]
(optional)
Metadata tags that have been applied to the schedule.

.NET
Go
Java
Python
TypeScript