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

ListBundlesResult

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

Result structure contains a list of all available bundles with details.

interface ListBundlesResult {
bundleList?: BundleDetails[] | null;
nextToken?: string | null;
}

§Properties

§
bundleList?: BundleDetails[] | null
[src]

A list of bundles.

§
nextToken?: string | null
[src]

Pagination token. If non-null pagination token is returned in a result, then pass its value in another request to fetch more entries.