Class: Aws::AppSync::Types::EvaluateMappingTemplateResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::EvaluateMappingTemplateResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appsync/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error ⇒ Types::ErrorDetail
The ‘ErrorDetail` object.
-
#evaluation_result ⇒ String
The mapping template; this can be a request or response template.
-
#logs ⇒ Array<String>
A list of logs that were generated by calls to ‘util.log.info` and `util.log.error` in the evaluated code.
-
#out_errors ⇒ String
The list of runtime errors that are added to the GraphQL operation response.
-
#stash ⇒ String
An object available inside each resolver and function handler.
Instance Attribute Details
#error ⇒ Types::ErrorDetail
The ‘ErrorDetail` object.
2635 2636 2637 2638 2639 2640 2641 2642 2643 |
# File 'lib/aws-sdk-appsync/types.rb', line 2635 class EvaluateMappingTemplateResponse < Struct.new( :evaluation_result, :error, :logs, :stash, :out_errors) SENSITIVE = [] include Aws::Structure end |
#evaluation_result ⇒ String
The mapping template; this can be a request or response template.
2635 2636 2637 2638 2639 2640 2641 2642 2643 |
# File 'lib/aws-sdk-appsync/types.rb', line 2635 class EvaluateMappingTemplateResponse < Struct.new( :evaluation_result, :error, :logs, :stash, :out_errors) SENSITIVE = [] include Aws::Structure end |
#logs ⇒ Array<String>
A list of logs that were generated by calls to ‘util.log.info` and `util.log.error` in the evaluated code.
2635 2636 2637 2638 2639 2640 2641 2642 2643 |
# File 'lib/aws-sdk-appsync/types.rb', line 2635 class EvaluateMappingTemplateResponse < Struct.new( :evaluation_result, :error, :logs, :stash, :out_errors) SENSITIVE = [] include Aws::Structure end |
#out_errors ⇒ String
The list of runtime errors that are added to the GraphQL operation response.
2635 2636 2637 2638 2639 2640 2641 2642 2643 |
# File 'lib/aws-sdk-appsync/types.rb', line 2635 class EvaluateMappingTemplateResponse < Struct.new( :evaluation_result, :error, :logs, :stash, :out_errors) SENSITIVE = [] include Aws::Structure end |
#stash ⇒ String
An object available inside each resolver and function handler. A single ‘stash` object lives through a single resolver run. Therefore, you can use the stash to pass arbitrary data across request and response handlers and across functions in a pipeline resolver.
2635 2636 2637 2638 2639 2640 2641 2642 2643 |
# File 'lib/aws-sdk-appsync/types.rb', line 2635 class EvaluateMappingTemplateResponse < Struct.new( :evaluation_result, :error, :logs, :stash, :out_errors) SENSITIVE = [] include Aws::Structure end |