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

ListAppsResult

import type { ListAppsResult } from "https://aws-api.deno.dev/v0.4/services/amplify.ts?docs=full";

The result structure for an Amplify app list request.

interface ListAppsResult {
apps: App[];
nextToken?: string | null;
}

§Properties

§
apps: App[]
[src]

A list of Amplify apps.

§
nextToken?: string | null
[src]

A pagination token. Set to null to start listing apps from start. If non-null, the pagination token is returned in a result. Pass its value in here to list more projects.