Module Values.ScheduleSource

Represents one or more dates and times when a job is to run.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The ID of the Amazon Web Services account that owns the schedule.

    *)
  2. createdBy : CreatedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who created the schedule.

    *)
  3. createDate : Date.t option;
    (*

    The date and time that the schedule was created.

    *)
  4. jobNames : JobNameList.t option;
    (*

    A list of jobs to be run, according to the schedule.

    *)
  5. lastModifiedBy : LastModifiedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who last modified the schedule.

    *)
  6. lastModifiedDate : Date.t option;
    (*

    The date and time when the schedule was last modified.

    *)
  7. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the schedule.

    *)
  8. cronExpression : CronExpression.t option;
    (*

    The dates and times when the job is to run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.

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

    Metadata tags that have been applied to the schedule.

    *)
  10. name : ScheduleName.t option;
    (*

    The name of the schedule.

    *)
}
Sourceval make : ?accountId:??? -> ?createdBy:??? -> ?createDate:??? -> ?jobNames:??? -> ?lastModifiedBy:??? -> ?lastModifiedDate:??? -> ?resourceArn:??? -> ?cronExpression:??? -> ?tags:??? -> ?name:??? -> 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 AccountId.t | `Timestamp of Date.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