You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GlueDataBrew::Types::CreateScheduleRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateScheduleRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  job_names: ["JobName"],
  cron_expression: "CronExpression", # required
  tags: {
    "TagKey" => "TagValue",
  },
  name: "ScheduleName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#cron_expressionString

The date or dates and time or times, in cron format, when the jobs are to be run.

Returns:

  • (String)

    The date or dates and time or times, in cron format, when the jobs are to be run.

#job_namesArray<String>

The name or names of one or more jobs to be run.

Returns:

  • (Array<String>)

    The name or names of one or more jobs to be run.

#nameString

A unique name for the schedule.

Returns:

  • (String)

    A unique name for the schedule.

#tagsHash<String,String>

Metadata tags to apply to this schedule.

Returns:

  • (Hash<String,String>)

    Metadata tags to apply to this schedule.