Module Values.CreateScheduleRequestSource

Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific date and time, or at regular intervals.

Sourcetype nonrec t = {
  1. jobNames : JobNameList.t option;
    (*

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

    *)
  2. cronExpression : CronExpression.t;
    (*

    The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.

    *)
  3. tags : TagMap.t option;
    (*

    Metadata tags to apply to this schedule.

    *)
  4. name : ScheduleName.t;
    (*

    A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

    *)
}
Sourceval context_ : string
Sourceval make : ?jobNames:??? -> ?tags:??? -> cronExpression:CronExpression.t -> name:ScheduleName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of JobName.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of CronExpression.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t