Module Values.AwsRdsDbDomainMembershipSource

Information about an Active Directory domain membership record associated with the DB instance.

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

    The identifier of the Active Directory domain.

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

    The status of the Active Directory Domain membership for the DB instance.

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

    The fully qualified domain name of the Active Directory domain.

    *)
  4. iamRoleName : NonEmptyString.t option;
    (*

    The name of the IAM role to use 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 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