Module Values.SettingsSource

The settings of your MFA configuration for the backend of your Amplify project.

Sourcetype nonrec t = {
  1. mfaTypes : ListOfMfaTypesElement.t option;
    (*

    The supported MFA types.

    *)
  2. smsMessage : string option;
    (*

    The body of the SMS message.

    *)
}
Sourceval make : ?mfaTypes:??? -> ?smsMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of string ]) 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