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

CreateFunctionRequest

import type { CreateFunctionRequest } from "https://aws-api.deno.dev/v0.3/services/appsync.ts?docs=full";
interface CreateFunctionRequest {
apiId: string;
dataSourceName: string;
description?: string | null;
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.

§
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. The function name does not have to be unique.

§
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 response mapping template.

§
syncConfig?: SyncConfig | null
[src]