Module Values.DomainMembershipSource

An Active Directory Domain membership record associated with a DB instance.

Sourcetype nonrec t = {
  1. domain : String_.t option;
    (*

    The identifier of the Active Directory Domain.

    *)
  2. status : String_.t option;
    (*

    The status of the DB instance's Active Directory Domain membership, such as joined, pending-join, failed etc).

    *)
  3. fQDN : String_.t option;
    (*

    The fully qualified domain name of the Active Directory Domain.

    *)
  4. iAMRoleName : String_.t option;
    (*

    The name of the IAM role to be used when making API calls to the Directory Service.

    *)
}
Sourceval make : ?domain:??? -> ?status:??? -> ?fQDN:??? -> ?iAMRoleName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of 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