Class: Aws::InspectorScan::Errors::ThrottlingException

Inherits:
ServiceError
  • Object
show all
Defined in:
lib/aws-sdk-inspectorscan/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(context, message, data = Aws::EmptyStructure.new) ⇒ ThrottlingException

Returns a new instance of ThrottlingException.

Parameters:



90
91
92
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 90

def initialize(context, message, data = Aws::EmptyStructure.new)
  super(context, message, data)
end

Instance Method Details

#messageString

Returns:

  • (String)


95
96
97
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 95

def message
  @message || @data[:message]
end

#retry_after_secondsString

Returns:

  • (String)


100
101
102
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 100

def retry_after_seconds
  @data[:retry_after_seconds]
end

#retryable?Boolean

Returns:

  • (Boolean)


104
105
106
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 104

def retryable?
  true
end

#throttling?Boolean

Returns:

  • (Boolean)


108
109
110
# File 'lib/aws-sdk-inspectorscan/errors.rb', line 108

def throttling?
  true
end