Module Values.RotationOverrideSource

Information about an override specified for an on-call rotation.

Sourcetype nonrec t = {
  1. rotationOverrideId : Uuid.t option;
    (*

    The Amazon Resource Name (ARN) of the override to an on-call rotation.

    *)
  2. newContactIds : SsmContactsArnList.t option;
    (*

    The Amazon Resource Names (ARNs) of the contacts assigned to the override of the on-call rotation.

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

    The time a rotation override begins.

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

    The time a rotation override ends.

    *)
  5. createTime : DateTime.t option;
    (*

    The time a rotation override was created.

    *)
}
Sourceval make : ?rotationOverrideId:??? -> ?newContactIds:??? -> ?startTime:??? -> ?endTime:??? -> ?createTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SsmContactsArn.t ] list | `String of Uuid.t | `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