Class: Aws::MWAA::Types::RestApiClientException

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

Overview

An exception indicating that a client-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)


1338
1339
1340
1341
1342
1343
# File 'lib/aws-sdk-mwaa/types.rb', line 1338

class RestApiClientException < 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)


1338
1339
1340
1341
1342
1343
# File 'lib/aws-sdk-mwaa/types.rb', line 1338

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