Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BatchListObjectChildrenResponse

import type { BatchListObjectChildrenResponse } from "https://aws-api.deno.dev/v0.3/services/clouddirectory.ts?docs=full";

Represents the output of a "ListObjectChildren" response operation.

interface BatchListObjectChildrenResponse {
Children?: {
[key: string]: string | null | undefined;
}
| null;
NextToken?: string | null;
}

§Properties

§
Children?: {
[key: string]: string | null | undefined;
}
| null
[src]

The children structure, which is a map with the key as the LinkName and ObjectIdentifier as the value.

§
NextToken?: string | null
[src]

The pagination token.