Module Values.CreateRotationOverrideRequestSource

Creates an override for a rotation in an on-call schedule.

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

    The Amazon Resource Name (ARN) of the rotation to create an override for.

    *)
  2. newContactIds : RotationOverrideContactsArnList.t;
    (*

    The Amazon Resource Names (ARNs) of the contacts to replace those in the current on-call rotation with. If you want to include any current team members in the override shift, you must include their ARNs in the new contact ID list.

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

    The date and time when the override goes into effect.

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

    The date and time when the override ends.

    *)
  5. idempotencyToken : IdempotencyToken.t option;
    (*

    A token that ensures that the operation is called only once with the specified details.

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