Values.CreateRotationOverrideRequestSourceCreates an override for a rotation in an on-call schedule.
type nonrec t = {rotationId : SsmContactsArn.t;The Amazon Resource Name (ARN) of the rotation to create an override for.
*)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.
*)startTime : DateTime.t;The date and time when the override goes into effect.
*)endTime : DateTime.t;The date and time when the override ends.
*)idempotencyToken : IdempotencyToken.t option;A token that ensures that the operation is called only once with the specified details.
*)}val make :
?idempotencyToken:??? ->
rotationId:SsmContactsArn.t ->
newContactIds:RotationOverrideContactsArnList.t ->
startTime:DateTime.t ->
endTime:DateTime.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of SsmContactsArn.t ] list
| `String of SsmContactsArn.t
| `Timestamp of DateTime.t ])
list ]