Module Values.DescribeDomainControllersRequestSource

Provides information about any domain controllers in your directory.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t;
    (*

    Identifier of the directory for which to retrieve the domain controller information.

    *)
  2. domainControllerIds : DomainControllerIds.t option;
    (*

    A list of identifiers for the domain controllers whose information will be provided.

    *)
  3. nextToken : NextToken.t option;
    (*

    The DescribeDomainControllers.NextToken value from a previous call to DescribeDomainControllers. Pass null if this is the first call.

    *)
  4. limit : Limit.t option;
    (*

    The maximum number of items to return.

    *)
}
Sourceval context_ : string
Sourceval make : ?domainControllerIds:??? -> ?nextToken:??? -> ?limit:??? -> directoryId:DirectoryId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Limit.t | `List of [> `String of DomainControllerId.t ] list | `String of DirectoryId.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