MDAA TS Docs
    Preparing search index...

    Configuration for DataBrew job scheduling with cron-based automation.

    Use cases: Job scheduling; Automated execution; Workflow orchestration; Batch processing

    AWS: Creates DataBrew schedules for automated job execution and workflow coordination

    Validation: name and cronExpression are required; jobNames is optional for job targeting

    interface ConfigSchedule {
        cronExpression: string;
        jobNames?: string[];
        name: string;
    }
    Index

    Properties

    cronExpression: string

    Cron expression defining when jobs should run.

    jobNames?: string[]

    Job names to execute on this schedule.

    name: string

    Unique name for the schedule.