Class: Aws::InspectorScan::Errors::ThrottlingException
- Inherits:
-
ServiceError
- Object
- ServiceError
- Aws::InspectorScan::Errors::ThrottlingException
- Defined in:
- lib/aws-sdk-inspectorscan/errors.rb
Instance Method Summary collapse
-
#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ ThrottlingException
constructor
A new instance of ThrottlingException.
- #message ⇒ String
- #retry_after_seconds ⇒ String
- #retryable? ⇒ Boolean
- #throttling? ⇒ Boolean
Constructor Details
#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ ThrottlingException
Returns a new instance of ThrottlingException.
90 91 92 |
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 90 def initialize(context, , data = Aws::EmptyStructure.new) super(context, , data) end |
Instance Method Details
#message ⇒ String
95 96 97 |
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 95 def @message || @data[:message] end |
#retry_after_seconds ⇒ String
100 101 102 |
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 100 def retry_after_seconds @data[:retry_after_seconds] end |
#retryable? ⇒ Boolean
104 105 106 |
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 104 def retryable? true end |
#throttling? ⇒ Boolean
108 109 110 |
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 108 def throttling? true end |