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

GetScreenDataRequest

import type { GetScreenDataRequest } from "https://aws-api.deno.dev/v0.4/services/honeycode.ts?docs=full";
interface GetScreenDataRequest {
appId: string;
maxResults?: number | null;
nextToken?: string | null;
screenId: string;
variables?: {
[key: string]: VariableValue | null | undefined;
}
| null;
workbookId: string;
}

§Properties

§
appId: string
[src]

The ID of the app that contains the screen.

§
maxResults?: number | null
[src]

The number of results to be returned on a single page. Specify a number between 1 and 100. The maximum value is 100.

This parameter is optional. If you don't specify this parameter, the default page size is 100.

§
nextToken?: string | null
[src]

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

§
screenId: string
[src]

The ID of the screen.

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

Variables are optional and are needed only if the screen requires them to render correctly. Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen.

§
workbookId: string
[src]

The ID of the workbook that contains the screen.