Class: Aws::MWAA::Types::RestApiClientException
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAA::Types::RestApiClientException
- 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
-
#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.
1348 1349 1350 1351 1352 1353 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1348 class RestApiClientException < 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.
1348 1349 1350 1351 1352 1353 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1348 class RestApiClientException < Struct.new( :rest_api_status_code, :rest_api_response) SENSITIVE = [:rest_api_response] include Aws::Structure end |