Module Values.DescribeDirectoriesRequestSource

Contains the inputs for the DescribeDirectories operation.

Sourcetype nonrec t = {
  1. directoryIds : DirectoryIds.t option;
    (*

    A list of identifiers of the directories for which to obtain the information. If this member is null, all directories that belong to the current account are returned. An empty list results in an InvalidParameterException being thrown.

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

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

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

    The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.

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