Class CreateResolverRequest
- All Implemented Interfaces:
- SdkPojo,- ToCopyableBuilder<CreateResolverRequest.Builder,- CreateResolverRequest> 
- 
Nested Class SummaryNested Classes
- 
Method SummaryModifier and TypeMethodDescriptionfinal StringapiId()The ID for the GraphQL API for which the resolver is being created.builder()final CachingConfigThe caching configuration for the resolver.final Stringcode()Theresolvercode that contains the request and response functions.final StringThe name of the data source for which the resolver is being created.final booleanfinal booleanequalsBySdkFields(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final StringThe name of the field to attach the resolver to.final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) Used to retrieve the value of a field from any class that extendsSdkRequest.final inthashCode()final ResolverKindkind()The resolver type.final StringThe resolver type.final IntegerThe maximum batching size for a resolver.Enables or disables enhanced resolver metrics for specified resolvers.final StringEnables or disables enhanced resolver metrics for specified resolvers.final PipelineConfigThePipelineConfig.final StringThe mapping template to use for requests.final StringThe mapping template to use for responses from the data source.final AppSyncRuntimeruntime()Returns the value of the Runtime property for this object.static Class<? extends CreateResolverRequest.Builder> final SyncConfigTheSyncConfigfor a resolver attached to a versioned data source.Take this object and create a builder that contains all of the current property values of this object.final StringtoString()Returns a string representation of this object.final StringtypeName()The name of theType.Methods inherited from class software.amazon.awssdk.awscore.AwsRequestoverrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuildercopy
- 
Method Details- 
apiIdThe ID for the GraphQL API for which the resolver is being created. - Returns:
- The ID for the GraphQL API for which the resolver is being created.
 
- 
typeName
- 
fieldNameThe name of the field to attach the resolver to. - Returns:
- The name of the field to attach the resolver to.
 
- 
dataSourceNameThe name of the data source for which the resolver is being created. - Returns:
- The name of the data source for which the resolver is being created.
 
- 
requestMappingTemplateThe mapping template to use for requests. A resolver uses a request mapping template to convert a GraphQL expression into a format that a data source can understand. Mapping templates are written in Apache Velocity Template Language (VTL). VTL request mapping templates are optional when using an Lambda data source. For all other data sources, VTL request and response mapping templates are required. - Returns:
- The mapping template to use for requests.
         A resolver uses a request mapping template to convert a GraphQL expression into a format that a data source can understand. Mapping templates are written in Apache Velocity Template Language (VTL). VTL request mapping templates are optional when using an Lambda data source. For all other data sources, VTL request and response mapping templates are required. 
 
- 
responseMappingTemplateThe mapping template to use for responses from the data source. - Returns:
- The mapping template to use for responses from the data source.
 
- 
kindThe resolver type. - 
 UNIT: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source. 
- 
 PIPELINE: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of Functionobjects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
 If the service returns an enum value that is not available in the current SDK version, kindwill returnResolverKind.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromkindAsString().- Returns:
- The resolver type.
         - 
         UNIT: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source. 
- 
         PIPELINE: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of Functionobjects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
 
- 
         
- See Also:
 
- 
 
- 
kindAsStringThe resolver type. - 
 UNIT: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source. 
- 
 PIPELINE: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of Functionobjects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
 If the service returns an enum value that is not available in the current SDK version, kindwill returnResolverKind.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromkindAsString().- Returns:
- The resolver type.
         - 
         UNIT: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source. 
- 
         PIPELINE: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of Functionobjects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
 
- 
         
- See Also:
 
- 
 
- 
pipelineConfig
- 
syncConfigThe SyncConfigfor a resolver attached to a versioned data source.- Returns:
- The SyncConfigfor a resolver attached to a versioned data source.
 
- 
cachingConfigThe caching configuration for the resolver. - Returns:
- The caching configuration for the resolver.
 
- 
maxBatchSizeThe maximum batching size for a resolver. - Returns:
- The maximum batching size for a resolver.
 
- 
runtimeReturns the value of the Runtime property for this object.- Returns:
- The value of the Runtime property for this object.
 
- 
codeThe resolvercode that contains the request and response functions. When code is used, theruntimeis required. Theruntimevalue must beAPPSYNC_JS.- Returns:
- The resolvercode that contains the request and response functions. When code is used, theruntimeis required. Theruntimevalue must beAPPSYNC_JS.
 
- 
metricsConfigEnables or disables enhanced resolver metrics for specified resolvers. Note that metricsConfigwon't be used unless theresolverLevelMetricsBehaviorvalue is set toPER_RESOLVER_METRICS. If theresolverLevelMetricsBehavioris set toFULL_REQUEST_RESOLVER_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.If the service returns an enum value that is not available in the current SDK version, metricsConfigwill returnResolverLevelMetricsConfig.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frommetricsConfigAsString().- Returns:
- Enables or disables enhanced resolver metrics for specified resolvers. Note that
         metricsConfigwon't be used unless theresolverLevelMetricsBehaviorvalue is set toPER_RESOLVER_METRICS. If theresolverLevelMetricsBehavioris set toFULL_REQUEST_RESOLVER_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.
- See Also:
 
- 
metricsConfigAsStringEnables or disables enhanced resolver metrics for specified resolvers. Note that metricsConfigwon't be used unless theresolverLevelMetricsBehaviorvalue is set toPER_RESOLVER_METRICS. If theresolverLevelMetricsBehavioris set toFULL_REQUEST_RESOLVER_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.If the service returns an enum value that is not available in the current SDK version, metricsConfigwill returnResolverLevelMetricsConfig.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frommetricsConfigAsString().- Returns:
- Enables or disables enhanced resolver metrics for specified resolvers. Note that
         metricsConfigwon't be used unless theresolverLevelMetricsBehaviorvalue is set toPER_RESOLVER_METRICS. If theresolverLevelMetricsBehavioris set toFULL_REQUEST_RESOLVER_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.
- See Also:
 
- 
toBuilderDescription copied from interface:ToCopyableBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
- toBuilderin interface- ToCopyableBuilder<CreateResolverRequest.Builder,- CreateResolverRequest> 
- Specified by:
- toBuilderin class- AppSyncRequest
- Returns:
- a builder for type T
 
- 
builder
- 
serializableBuilderClass
- 
hashCodepublic final int hashCode()- Overrides:
- hashCodein class- AwsRequest
 
- 
equals- Overrides:
- equalsin class- AwsRequest
 
- 
equalsBySdkFieldsDescription copied from interface:SdkPojoIndicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojoclass, and is generated based on a service model.If an SdkPojoclass does not have any inherited fields,equalsBySdkFieldsandequalsare essentially the same.- Specified by:
- equalsBySdkFieldsin interface- SdkPojo
- Parameters:
- obj- the object to be compared with
- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
 
- 
toString
- 
getValueForFieldDescription copied from class:SdkRequestUsed to retrieve the value of a field from any class that extendsSdkRequest. The field name specified should match the member name from the corresponding service-2.json model specified in the codegen-resources folder for a given service. The class specifies what class to cast the returned value to. If the returned value is also a modeled class, theSdkRequest.getValueForField(String, Class)method will again be available.- Overrides:
- getValueForFieldin class- SdkRequest
- Parameters:
- fieldName- The name of the member to be retrieved.
- clazz- The class to cast the returned object to.
- Returns:
- Optional containing the casted return value
 
- 
sdkFields
- 
sdkFieldNameToField- Specified by:
- sdkFieldNameToFieldin interface- SdkPojo
- Returns:
- The mapping between the field name and its corresponding field.
 
 
-