Module Values.ContactChannelSource

The method that Incident Manager uses to engage a contact.

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

    The Amazon Resource Name (ARN) of the contact channel.

    *)
  2. contactArn : SsmContactsArn.t option;
    (*

    The ARN of the contact that contains the contact channel.

    *)
  3. name : ChannelName.t option;
    (*

    The name of the contact channel.

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

    The type of the contact channel. Incident Manager supports three contact methods: SMS VOICE EMAIL

    *)
  5. deliveryAddress : ContactChannelAddress.t option;
    (*

    The details that Incident Manager uses when trying to engage the contact channel.

    *)
  6. activationStatus : ActivationStatus.t option;
    (*

    A Boolean value describing if the contact channel has been activated or not. If the contact channel isn't activated, Incident Manager can't engage the contact through it.

    *)
}
Sourceval make : ?contactChannelArn:??? -> ?contactArn:??? -> ?name:??? -> ?type_:??? -> ?deliveryAddress:??? -> ?activationStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SsmContactsArn.t | `Structure of (string * [> `String of SimpleAddress.t ]) list ]) 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