Module Values.MasterUserOptionsSource

Credentials for the master user for a domain.

Sourcetype nonrec t = {
  1. masterUserARN : ARN.t option;
    (*

    Amazon Resource Name (ARN) for the master user. Only specify if InternalUserDatabaseEnabled is false.

    *)
  2. masterUserName : Username.t option;
    (*

    User name for the master user. Only specify if InternalUserDatabaseEnabled is true.

    *)
  3. masterUserPassword : Password.t option;
    (*

    Password for the master user. Only specify if InternalUserDatabaseEnabled is true.

    *)
}
Sourceval make : ?masterUserARN:??? -> ?masterUserName:??? -> ?masterUserPassword:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ARN.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