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.info
andutil.log.error
in the evaluated code.
Instance Attribute Details
#error ⇒ Types::EvaluateCodeErrorDetail
Contains the payload of the response error.
2552 2553 2554 2555 2556 2557 2558 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2552 class EvaluateCodeResponse < Struct.new( :evaluation_result, :error, :logs) SENSITIVE = [] include Aws::Structure end |
#evaluation_result ⇒ String
The result of the evaluation operation.
2552 2553 2554 2555 2556 2557 2558 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2552 class EvaluateCodeResponse < Struct.new( :evaluation_result, :error, :logs) 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.
2552 2553 2554 2555 2556 2557 2558 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2552 class EvaluateCodeResponse < Struct.new( :evaluation_result, :error, :logs) SENSITIVE = [] include Aws::Structure end |