@Generated(value="software.amazon.awssdk:codegen") public final class CreateResolverRequest extends AppSyncRequest implements ToCopyableBuilder<CreateResolverRequest.Builder,CreateResolverRequest>
| Modifier and Type | Class and Description |
|---|---|
static interface |
CreateResolverRequest.Builder |
| Modifier and Type | Method and Description |
|---|---|
String |
apiId()
The ID for the GraphQL API for which the resolver is being created.
|
static CreateResolverRequest.Builder |
builder() |
CachingConfig |
cachingConfig()
The caching configuration for the resolver.
|
String |
code()
The
resolver code that contains the request and response functions. |
String |
dataSourceName()
The name of the data source for which the resolver is being created.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
String |
fieldName()
The name of the field to attach the resolver to.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
ResolverKind |
kind()
The resolver type.
|
String |
kindAsString()
The resolver type.
|
Integer |
maxBatchSize()
The maximum batching size for a resolver.
|
PipelineConfig |
pipelineConfig()
The
PipelineConfig. |
String |
requestMappingTemplate()
The mapping template to use for requests.
|
String |
responseMappingTemplate()
The mapping template to use for responses from the data source.
|
AppSyncRuntime |
runtime()
Returns the value of the Runtime property for this object.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends CreateResolverRequest.Builder> |
serializableBuilderClass() |
SyncConfig |
syncConfig()
The
SyncConfig for a resolver attached to a versioned data source. |
CreateResolverRequest.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
String |
typeName()
The name of the
Type. |
overrideConfigurationclone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final String apiId()
The ID for the GraphQL API for which the resolver is being created.
public final String typeName()
The name of the Type.
Type.public final String fieldName()
The name of the field to attach the resolver to.
public final String dataSourceName()
The name of the data source for which the resolver is being created.
public final String requestMappingTemplate()
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.
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.
public final String responseMappingTemplate()
The mapping template to use for responses from the data source.
public final ResolverKind kind()
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
Function objects 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, kind will return
ResolverKind.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
kindAsString().
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
Function objects in a serial manner. You can use a pipeline resolver to run a GraphQL query
against multiple data sources.
ResolverKindpublic final String kindAsString()
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
Function objects 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, kind will return
ResolverKind.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
kindAsString().
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
Function objects in a serial manner. You can use a pipeline resolver to run a GraphQL query
against multiple data sources.
ResolverKindpublic final PipelineConfig pipelineConfig()
The PipelineConfig.
PipelineConfig.public final SyncConfig syncConfig()
The SyncConfig for a resolver attached to a versioned data source.
SyncConfig for a resolver attached to a versioned data source.public final CachingConfig cachingConfig()
The caching configuration for the resolver.
public final Integer maxBatchSize()
The maximum batching size for a resolver.
public final AppSyncRuntime runtime()
public final String code()
The resolver code that contains the request and response functions. When code is used, the
runtime is required. The runtime value must be APPSYNC_JS.
resolver code that contains the request and response functions. When code is used, the
runtime is required. The runtime value must be APPSYNC_JS.public CreateResolverRequest.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<CreateResolverRequest.Builder,CreateResolverRequest>toBuilder in class AppSyncRequestpublic static CreateResolverRequest.Builder builder()
public static Class<? extends CreateResolverRequest.Builder> serializableBuilderClass()
public final int hashCode()
hashCode in class AwsRequestpublic final boolean equals(Object obj)
equals in class AwsRequestpublic final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
getValueForField in class SdkRequestCopyright © 2023. All rights reserved.