Class: Aws::ServiceQuotas::Types::ErrorReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceQuotas::Types::ErrorReason
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicequotas/types.rb
Overview
An error that explains why an action did not succeed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
Service Quotas returns the following error values:.
-
#error_message ⇒ String
The error message.
Instance Attribute Details
#error_code ⇒ String
Service Quotas returns the following error values:
-
‘DEPENDENCY_ACCESS_DENIED_ERROR` - The caller does not have the required permissions to complete the action. To resolve the error, you must have permission to access the Amazon Web Service or quota.
-
‘DEPENDENCY_THROTTLING_ERROR` - The Amazon Web Service is throttling Service Quotas.
-
‘DEPENDENCY_SERVICE_ERROR` - The Amazon Web Service is not available.
-
‘SERVICE_QUOTA_NOT_AVAILABLE_ERROR` - There was an error in Service Quotas.
130 131 132 133 134 135 |
# File 'lib/aws-sdk-servicequotas/types.rb', line 130 class ErrorReason < Struct.new( :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The error message.
130 131 132 133 134 135 |
# File 'lib/aws-sdk-servicequotas/types.rb', line 130 class ErrorReason < Struct.new( :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |