Module Values.AwsOpenSearchServiceDomainMasterUserOptionsDetailsSource

Specifies information about the master user of the domain.

Sourcetype nonrec t = {
  1. masterUserArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) for the master user.

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

    The username for the master user.

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

    The password for the master user.

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