Class: Aws::AppFabric::Errors::ThrottlingException
- Inherits:
-
ServiceError
- Object
- ServiceError
- Aws::AppFabric::Errors::ThrottlingException
- Defined in:
- lib/aws-sdk-appfabric/errors.rb
Instance Method Summary collapse
-
#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ ThrottlingException
constructor
A new instance of ThrottlingException.
- #message ⇒ String
- #quota_code ⇒ String
- #retry_after_seconds ⇒ String
- #retryable? ⇒ Boolean
- #service_code ⇒ String
- #throttling? ⇒ Boolean
Constructor Details
#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ ThrottlingException
Returns a new instance of ThrottlingException.
173 174 175 |
# File 'lib/aws-sdk-appfabric/errors.rb', line 173 def initialize(context, , data = Aws::EmptyStructure.new) super(context, , data) end |
Instance Method Details
#message ⇒ String
178 179 180 |
# File 'lib/aws-sdk-appfabric/errors.rb', line 178 def @message || @data[:message] end |
#quota_code ⇒ String
188 189 190 |
# File 'lib/aws-sdk-appfabric/errors.rb', line 188 def quota_code @data[:quota_code] end |
#retry_after_seconds ⇒ String
193 194 195 |
# File 'lib/aws-sdk-appfabric/errors.rb', line 193 def retry_after_seconds @data[:retry_after_seconds] end |
#retryable? ⇒ Boolean
197 198 199 |
# File 'lib/aws-sdk-appfabric/errors.rb', line 197 def retryable? true end |
#service_code ⇒ String
183 184 185 |
# File 'lib/aws-sdk-appfabric/errors.rb', line 183 def service_code @data[:service_code] end |
#throttling? ⇒ Boolean
201 202 203 |
# File 'lib/aws-sdk-appfabric/errors.rb', line 201 def throttling? true end |