Class: Aws::Glue::Types::ResponseConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#error_pathString

The JSON path expression that identifies where error information is located within API responses when requests fail.

Returns:

  • (String)


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_pathString

The JSON path expression that identifies where the actual result data is located within the API response.

Returns:

  • (String)


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