Module Values.MasterUserOptionsSource

Credentials for the master user: username and password, ARN, or both.

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

    ARN for the master user (if IAM is enabled).

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

    The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.

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

    The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.

    *)
}
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