Interface ResolverProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-19T12:54:59.023Z") @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();