Class: Aws::Glue::Types::ResponseConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ResponseConfiguration
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Configuration that defines how to parse JSON responses from REST API calls, including paths to result data and error information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_path ⇒ String
The JSON path expression that identifies where error information is located within API responses when requests fail.
-
#result_path ⇒ String
The JSON path expression that identifies where the actual result data is located within the API response.
Instance Attribute Details
#error_path ⇒ String
The JSON path expression that identifies where error information is located within API responses when requests fail.
23632 23633 23634 23635 23636 23637 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23632 class ResponseConfiguration < Struct.new( :result_path, :error_path) SENSITIVE = [] include Aws::Structure end |
#result_path ⇒ String
The JSON path expression that identifies where the actual result data is located within the API response.
23632 23633 23634 23635 23636 23637 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23632 class ResponseConfiguration < Struct.new( :result_path, :error_path) SENSITIVE = [] include Aws::Structure end |