Module Values.ScheduleSummarySource

The details of a schedule.

Sourcetype nonrec t = {
  1. arn : ScheduleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the schedule.

    *)
  2. creationDate : CreationDate.t option;
    (*

    The time at which the schedule was created.

    *)
  3. groupName : ScheduleGroupName.t option;
    (*

    The name of the schedule group associated with this schedule.

    *)
  4. lastModificationDate : LastModificationDate.t option;
    (*

    The time at which the schedule was last modified.

    *)
  5. name : Name.t option;
    (*

    The name of the schedule.

    *)
  6. state : ScheduleState.t option;
    (*

    Specifies whether the schedule is enabled or disabled.

    *)
  7. target : TargetSummary.t option;
    (*

    The schedule's target details.

    *)
}
Sourceval make : ?arn:??? -> ?creationDate:??? -> ?groupName:??? -> ?lastModificationDate:??? -> ?name:??? -> ?state:??? -> ?target:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ScheduleArn.t | `Structure of (string * [> `String of TargetArn.t ]) list | `Timestamp of CreationDate.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