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

UpdateFunctionRequest

import type { UpdateFunctionRequest } from "https://aws-api.deno.dev/v0.3/services/appsync.ts?docs=full";
interface UpdateFunctionRequest {
apiId: string;
dataSourceName: string;
description?: string | null;
functionId: string;
functionVersion: string;
maxBatchSize?: number | null;
name: string;
requestMappingTemplate?: string | null;
responseMappingTemplate?: string | null;
syncConfig?: SyncConfig | null;
}

§Properties

§
apiId: string
[src]

The GraphQL API ID.

§
dataSourceName: string
[src]

The Function DataSource name.

§
description?: string | null
[src]

The Function description.

§
functionId: string
[src]

The function ID.

§
functionVersion: string
[src]

The version of the request mapping template. Currently, the supported value is 2018-05-29.

§
maxBatchSize?: number | null
[src]

The maximum batching size for a resolver.

§
name: string
[src]

The Function name.

§
requestMappingTemplate?: string | null
[src]

The Function request mapping template. Functions support only the 2018-05-29 version of the request mapping template.

§
responseMappingTemplate?: string | null
[src]

The Function request mapping template.

§
syncConfig?: SyncConfig | null
[src]