Class: Aws::AppSync::Types::EvaluateCodeResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::AppSync::Types::EvaluateCodeResponse
 
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #error  ⇒ Types::EvaluateCodeErrorDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains the payload of the response error. 
- 
  
    
      #evaluation_result  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The result of the evaluation operation. 
- 
  
    
      #logs  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of logs that were generated by calls to util.log.infoandutil.log.errorin 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::EvaluateCodeErrorDetail
Contains the payload of the response error.
| 2605 2606 2607 2608 2609 2610 2611 2612 2613 | # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2605 class EvaluateCodeResponse < Struct.new( :evaluation_result, :error, :logs, :stash, :out_errors) SENSITIVE = [] include Aws::Structure end | 
#evaluation_result ⇒ String
The result of the evaluation operation.
| 2605 2606 2607 2608 2609 2610 2611 2612 2613 | # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2605 class EvaluateCodeResponse < 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.
| 2605 2606 2607 2608 2609 2610 2611 2612 2613 | # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2605 class EvaluateCodeResponse < 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.
| 2605 2606 2607 2608 2609 2610 2611 2612 2613 | # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2605 class EvaluateCodeResponse < 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.
| 2605 2606 2607 2608 2609 2610 2611 2612 2613 | # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2605 class EvaluateCodeResponse < Struct.new( :evaluation_result, :error, :logs, :stash, :out_errors) SENSITIVE = [] include Aws::Structure end |