Class: Aws::MWAA::Types::RestApiServerException
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAA::Types::RestApiServerException
- 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
-
#rest_api_response ⇒ Hash, ...
The error response data from the Apache Airflow REST API call, provided as a JSON object.
-
#rest_api_status_code ⇒ Integer
The HTTP status code returned by the Apache Airflow REST API call.
Instance Attribute Details
#rest_api_response ⇒ Hash, ...
The error response data from the Apache Airflow REST API call, provided as a JSON object.
1369 1370 1371 1372 1373 1374 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1369 class RestApiServerException < Struct.new( :rest_api_status_code, :rest_api_response) SENSITIVE = [:rest_api_response] include Aws::Structure end |
#rest_api_status_code ⇒ Integer
The HTTP status code returned by the Apache Airflow REST API call.
1369 1370 1371 1372 1373 1374 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1369 class RestApiServerException < Struct.new( :rest_api_status_code, :rest_api_response) SENSITIVE = [:rest_api_response] include Aws::Structure end |