Values.ResolutionContactSourceInformation about the engagement resolution steps. The resolution starts from the first contact, which can be an escalation plan, then resolves to an on-call rotation, and finally to a personal contact. The ResolutionContact structure describes the information for each node or step in that process. It contains information about different contact types, such as the escalation, rotation, and personal contacts.
type nonrec t = {contactArn : SsmContactsArn.t option;The Amazon Resource Name (ARN) of a contact in the engagement resolution process.
*)type_ : ContactType.t option;The type of contact for a resolution step.
*)stageIndex : StageIndex.t option;The stage in the escalation plan that resolves to this contact.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of StageIndex.t
| `String of SsmContactsArn.t ])
list ]