Module Values.DescribeDirectoryConfigsRequestSource

Retrieves a list that describes one or more specified Directory Config objects for WorkSpaces Applications, if the names for these objects are provided. Otherwise, all Directory Config objects in the account are described. These objects include the configuration information required to join fleets and image builders to Microsoft Active Directory domains. Although the response syntax in this topic includes the account password, this password is not returned in the actual response.

Sourcetype nonrec t = {
  1. directoryNames : DirectoryNameList.t option;
    (*

    The directory names.

    *)
  2. maxResults : Integer.t option;
    (*

    The maximum size of each page of results.

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

    The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

    *)
}
Sourceval make : ?directoryNames:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of DirectoryName.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