interface CfnScheduleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnScheduleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnScheduleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnScheduleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnScheduleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const cfnScheduleMixinProps: databrew.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