CfnScheduleMixinProps
- class aws_cdk.mixins_preview.aws_databrew.mixins.CfnScheduleMixinProps(*, cron_expression=None, job_names=None, name=None, tags=None)
Bases:
objectProperties for CfnSchedulePropsMixin.
- Parameters:
cron_expression (
Optional[str]) – 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 .job_names (
Optional[Sequence[str]]) – A list of jobs to be run, according to the schedule.name (
Optional[str]) – The name of the schedule.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata tags that have been applied to the schedule.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_databrew import mixins as databrew_mixins cfn_schedule_mixin_props = databrew_mixins.CfnScheduleMixinProps( cron_expression="cronExpression", job_names=["jobNames"], name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- cron_expression
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 .
- job_names
A list of jobs to be run, according to the schedule.
- name
The name of the schedule.
- tags
Metadata tags that have been applied to the schedule.