Class: Aws::MWAA::Types::RestApiServerException

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mwaa/types.rb

Overview

An exception indicating that a server-side error occurred during the Apache Airflow REST API call.

Constant Summary collapse

SENSITIVE =
[:rest_api_response]

Instance Attribute Summary collapse

Instance Attribute Details

#rest_api_responseHash, ...

The error response data from the Apache Airflow REST API call, provided as a JSON object.

Returns:

  • (Hash, Array, String, Numeric, Boolean)


1359
1360
1361
1362
1363
1364
# File 'lib/aws-sdk-mwaa/types.rb', line 1359

class RestApiServerException < Struct.new(
  :rest_api_status_code,
  :rest_api_response)
  SENSITIVE = [:rest_api_response]
  include Aws::Structure
end

#rest_api_status_codeInteger

The HTTP status code returned by the Apache Airflow REST API call.

Returns:

  • (Integer)


1359
1360
1361
1362
1363
1364
# File 'lib/aws-sdk-mwaa/types.rb', line 1359

class RestApiServerException < Struct.new(
  :rest_api_status_code,
  :rest_api_response)
  SENSITIVE = [:rest_api_response]
  include Aws::Structure
end