Interface ResolverProps

All Superinterfaces:
BaseResolverProps, ExtendedResolverProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ResolverProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-24T10:56:27.555Z") @Stability(Stable) public interface ResolverProps extends software.amazon.jsii.JsiiSerializable, ExtendedResolverProps
Additional property for an AppSync resolver for GraphQL API reference.

Example:

 GraphqlApi api;
 AppsyncFunction appsyncFunction;
 Resolver pipelineResolver = Resolver.Builder.create(this, "pipeline")
         .api(api)
         .dataSource(api.addNoneDataSource("none"))
         .typeName("typeName")
         .fieldName("fieldName")
         .requestMappingTemplate(MappingTemplate.fromFile("beforeRequest.vtl"))
         .pipelineConfig(List.of(appsyncFunction))
         .responseMappingTemplate(MappingTemplate.fromFile("afterResponse.vtl"))
         .build();