Module Values_1.SignupResponseSource

A SignupResponse object that contains a summary of a newly created account.

Sourcetype nonrec t = {
  1. iAMUser : Values_0.Boolean.t option;
    (*

    A Boolean that is TRUE if the Amazon Quick Sight uses IAM as an authentication method.

    *)
  2. userLoginName : Values_0.String_.t option;
    (*

    The user login name for your Amazon Quick Sight account.

    *)
  3. accountName : Values_0.String_.t option;
    (*

    The name of your Quick Sight account.

    *)
  4. directoryType : Values_0.String_.t option;
    (*

    The type of Active Directory that is being used to authenticate the Amazon Quick Sight account. Valid values are SIMPLE_AD, AD_CONNECTOR, and MICROSOFT_AD.

    *)
}
Sourceval make : ?iAMUser:??? -> ?userLoginName:??? -> ?accountName:??? -> ?directoryType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.String_.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