Module Values.ResolutionContactSource

Information 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.

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

    The Amazon Resource Name (ARN) of a contact in the engagement resolution process.

    *)
  2. type_ : ContactType.t option;
    (*

    The type of contact for a resolution step.

    *)
  3. stageIndex : StageIndex.t option;
    (*

    The stage in the escalation plan that resolves to this contact.

    *)
}
Sourceval make : ?contactArn:??? -> ?type_:??? -> ?stageIndex:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of StageIndex.t | `String of SsmContactsArn.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