Module Values.ContactSource

A personal contact or escalation plan that Incident Manager engages during an incident.

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

    The Amazon Resource Name (ARN) of the contact or escalation plan.

    *)
  2. alias : ContactAlias.t option;
    (*

    The unique and identifiable alias of the contact or escalation plan.

    *)
  3. displayName : ContactName.t option;
    (*

    The full name of the contact or escalation plan.

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

    The type of contact. PERSONAL: A single, individual contact. ESCALATION: An escalation plan. ONCALL_SCHEDULE: An on-call schedule.

    *)
}
Sourceval make : ?contactArn:??? -> ?alias:??? -> ?displayName:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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