Module Values_0.DomainMembershipSource

An Active Directory Domain membership record associated with the DB instance or cluster.

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

    The identifier of the Active Directory Domain.

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

    The status of the Active Directory Domain membership for the DB instance or cluster. Values include joined, pending-join, failed, and so on.

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

    The fully qualified domain name (FQDN) of the Active Directory Domain.

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

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

    *)
  5. oU : String_.t option;
    (*

    The Active Directory organizational unit for the DB instance or cluster.

    *)
  6. authSecretArn : String_.t option;
    (*

    The ARN for the Secrets Manager secret with the credentials for the user that's a member of the domain.

    *)
  7. dnsIps : StringList.t option;
    (*

    The IPv4 DNS IP addresses of the primary and secondary Active Directory domain controllers.

    *)
}
Sourceval make : ?domain:??? -> ?status:??? -> ?fQDN:??? -> ?iAMRoleName:??? -> ?oU:??? -> ?authSecretArn:??? -> ?dnsIps:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `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