Module Values.DescribeSharedDirectoriesRequestSource

Returns the shared directories in your account.

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

    Returns the identifier of the directory in the directory owner account.

    *)
  2. sharedDirectoryIds : DirectoryIds.t option;
    (*

    A list of identifiers of all shared directories in your account.

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

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

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

    The number of shared directories to return in the response object.

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