/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::AppSync::FunctionConfiguration */ export interface AwsAppsyncFunctionconfiguration { FunctionId?: string; FunctionArn?: string; Description?: string; RequestMappingTemplate?: string; ResponseMappingTemplate?: string; MaxBatchSize?: number; SyncConfig?: SyncConfig; Code?: string; Name: string; ResponseMappingTemplateS3Location?: string; Runtime?: AppSyncRuntime; CodeS3Location?: string; DataSourceName: string; FunctionVersion?: string; Id?: string; RequestMappingTemplateS3Location?: string; ApiId: string; } export interface SyncConfig { ConflictHandler?: string; ConflictDetection: string; LambdaConflictHandlerConfig?: LambdaConflictHandlerConfig; } export interface LambdaConflictHandlerConfig { LambdaConflictHandlerArn?: string; } export interface AppSyncRuntime { RuntimeVersion: string; Name: string; }