Class: Aws::LambdaCore::Errors::TooManyRequestsException

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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of TooManyRequestsException.

Parameters:



148
149
150
# File 'lib/aws-sdk-lambdacore/errors.rb', line 148

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

Instance Method Details

#messageString

Returns:

  • (String)


163
164
165
# File 'lib/aws-sdk-lambdacore/errors.rb', line 163

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

#reasonString

Returns:

  • (String)


168
169
170
# File 'lib/aws-sdk-lambdacore/errors.rb', line 168

def reason
  @data[:reason]
end

#retry_after_secondsString

Returns:

  • (String)


153
154
155
# File 'lib/aws-sdk-lambdacore/errors.rb', line 153

def retry_after_seconds
  @data[:retry_after_seconds]
end

#typeString

Returns:

  • (String)


158
159
160
# File 'lib/aws-sdk-lambdacore/errors.rb', line 158

def type
  @data[:type]
end