Module Values.ScheduleGroupSummarySource

The details of a schedule group.

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

    The Amazon Resource Name (ARN) of the schedule group.

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

    The time at which the schedule group was created.

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

    The time at which the schedule group was last modified.

    *)
  4. name : ScheduleGroupName.t option;
    (*

    The name of the schedule group.

    *)
  5. state : ScheduleGroupState.t option;
    (*

    Specifies the state of the schedule group.

    *)
}
Sourceval make : ?arn:??? -> ?creationDate:??? -> ?lastModificationDate:??? -> ?name:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ScheduleGroupArn.t | `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