Class: Aws::AppSync::Types::Resolver

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb

Overview

Describes a resolver.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#caching_configTypes::CachingConfig

The caching configuration for the resolver.



3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#codeString

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.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#data_source_nameString

The resolver data source name.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#field_nameString

The resolver field name.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#kindString

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.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#max_batch_sizeInteger

The maximum batching size for a resolver.

Returns:

  • (Integer)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#metrics_configString

Enables or disables enhanced resolver metrics for specified resolvers. Note that metricsConfig won't be used unless the resolverLevelMetricsBehavior value is set to PER_RESOLVER_METRICS. If the resolverLevelMetricsBehavior is set to FULL_REQUEST_RESOLVER_METRICS instead, metricsConfig will be ignored. However, you can still set its value.

metricsConfig can be ENABLED or DISABLED.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#pipeline_configTypes::PipelineConfig

The PipelineConfig.



3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#request_mapping_templateString

The request mapping template.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#resolver_arnString

The resolver Amazon Resource Name (ARN).

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#response_mapping_templateString

The response mapping template.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#runtimeTypes::AppSyncRuntime

Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified.



3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#sync_configTypes::SyncConfig

The SyncConfig for a resolver attached to a versioned data source.

Returns:



3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end

#type_nameString

The resolver type name.

Returns:

  • (String)


3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3929

class Resolver < Struct.new(
  :type_name,
  :field_name,
  :data_source_name,
  :resolver_arn,
  :request_mapping_template,
  :response_mapping_template,
  :kind,
  :pipeline_config,
  :sync_config,
  :caching_config,
  :max_batch_size,
  :runtime,
  :code,
  :metrics_config)
  SENSITIVE = []
  include Aws::Structure
end