Module Values.RotationSource

Information about a rotation in an on-call schedule.

Sourcetype nonrec t = {
  1. rotationArn : SsmContactsArn.t option;
    (*

    The Amazon Resource Name (ARN) of the rotation.

    *)
  2. name : RotationName.t option;
    (*

    The name of the rotation.

    *)
  3. contactIds : SsmContactsArnList.t option;
    (*

    The Amazon Resource Names (ARNs) of the contacts assigned to the rotation team.

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

    The date and time the rotation becomes active.

    *)
  5. timeZoneId : TimeZoneId.t option;
    (*

    The time zone the rotation’s activity is based on, in Internet Assigned Numbers Authority (IANA) format. For example: "America/Los_Angeles", "UTC", or "Asia/Seoul".

    *)
  6. recurrence : RecurrenceSettings.t option;
    (*

    Information about when an on-call rotation is in effect and how long the rotation period lasts.

    *)
}
Sourceval make : ?rotationArn:??? -> ?name:??? -> ?contactIds:??? -> ?startTime:??? -> ?timeZoneId:??? -> ?recurrence:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SsmContactsArn.t ] list | `String of SsmContactsArn.t | `Structure of (string * [> `Integer of NumberOfOnCalls.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of DayOfMonth.t | `Structure of (string * [> `Integer of HourOfDay.t ]) list ]) list ] list | `Map of ([> `Enum of string ] * [> `List of [> `Structure of (string * [> `Structure of (string * [> `Integer of HourOfDay.t ]) list ]) list ] list ]) 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