Module Values.GetContactChannelResultSource

List details about a specific contact channel.

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

    The ARN of the contact that the channel belongs to.

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

    The ARN of the contact channel.

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

    The name of the contact channel

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

    The type of contact channel. The type is SMS, VOICE, or 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 indicating if the contact channel has been activated or not.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `DataEncryptionException of DataEncryptionException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?contactArn:??? -> ?contactChannelArn:??? -> ?name:??? -> ?type_:??? -> ?deliveryAddress:??? -> ?activationStatus:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `DataEncryptionException of DataEncryptionException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `DataEncryptionException of DataEncryptionException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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