Interface AppsyncFunctionProps

All Superinterfaces:
BaseAppsyncFunctionProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AppsyncFunctionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:12.724Z") @Stability(Stable) public interface AppsyncFunctionProps extends software.amazon.jsii.JsiiSerializable, BaseAppsyncFunctionProps
the CDK properties for AppSync Functions.

Example:

 GraphqlApi api;
 AppsyncFunction appsyncFunction = AppsyncFunction.Builder.create(this, "function")
         .name("appsync_function")
         .api(api)
         .dataSource(api.addNoneDataSource("none"))
         .requestMappingTemplate(MappingTemplate.fromFile("request.vtl"))
         .responseMappingTemplate(MappingTemplate.fromFile("response.vtl"))
         .build();