Module Values.SMSConfigurationSource

Contains the configuration information of SMS notifications.

Sourcetype nonrec t = {
  1. senderId : SMSSenderId.t option;
    (*

    The sender ID.

    *)
  2. additionalMessage : NotificationAdditionalMessage.t option;
    (*

    The message that you want to send. The message can be up to 200 characters.

    *)
  3. recipients : RecipientDetails.t;
    (*

    Specifies one or more recipients who receive the message. You must add the users that receive SMS messages to your AWS SSO store.

    *)
}
Sourceval context_ : string
Sourceval make : ?senderId:??? -> ?additionalMessage:??? -> recipients:RecipientDetails.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `String of IdentityStoreId.t ]) list ]) list ] list | `String of SMSSenderId.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