Module Values.DescribeScheduleResponseSource

Returns the definition of a specific DataBrew schedule.

Sourcetype nonrec t = {
  1. createDate : Date.t option;
    (*

    The date and time that the schedule was created.

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

    The identifier (user name) of the user who created the schedule.

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

    The name or names of one or more jobs to be run by using the schedule.

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

    The identifier (user name) of the user who last modified the schedule.

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

    The date and time that the schedule was last modified.

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

    The Amazon Resource Name (ARN) of the schedule.

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

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

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

    Metadata tags associated with this schedule.

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

    The name of the schedule.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?createDate:??? -> ?createdBy:??? -> ?jobNames:??? -> ?lastModifiedBy:??? -> ?lastModifiedDate:??? -> ?resourceArn:??? -> ?cronExpression:??? -> ?tags:??? -> ?name:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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 CreatedBy.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