Module Values.RotationShiftSource

Information about a shift that belongs to an on-call rotation.

Sourcetype nonrec t = {
  1. contactIds : SsmContactsArnList.t option;
    (*

    The Amazon Resource Names (ARNs) of the contacts who are part of the shift rotation.

    *)
  2. startTime : DateTime.t option;
    (*

    The time a shift rotation begins.

    *)
  3. endTime : DateTime.t option;
    (*

    The time a shift rotation ends.

    *)
  4. type_ : ShiftType.t option;
    (*

    The type of shift rotation.

    *)
  5. shiftDetails : ShiftDetails.t option;
    (*

    Additional information about an on-call rotation shift.

    *)
}
Sourceval make : ?contactIds:??? -> ?startTime:??? -> ?endTime:??? -> ?type_:??? -> ?shiftDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SsmContactsArn.t ] list | `Structure of (string * [> `List of [> `String of SsmContactsArn.t ] list ]) list | `Timestamp of DateTime.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