Module Values.CreateBackendAuthVerificationMessageConfigSource

Creates an email or SMS verification message for the auth resource configured for your Amplify project.

Sourcetype nonrec t = {
  1. deliveryMethod : DeliveryMethod.t;
    (*

    The type of verification message to send.

    *)
  2. emailSettings : EmailSettings.t option;
    (*

    The settings for the email message.

    *)
  3. smsSettings : SmsSettings.t option;
    (*

    The settings for the SMS message.

    *)
}
Sourceval context_ : string
Sourceval make : ?emailSettings:??? -> ?smsSettings:??? -> deliveryMethod:DeliveryMethod.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of string ]) 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