Class: Aws::Proton::Errors::ThrottlingException

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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ThrottlingException.

Parameters:



128
129
130
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/errors.rb', line 128

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

Instance Method Details

#messageString

Returns:

  • (String)


133
134
135
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/errors.rb', line 133

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

#retryable?Boolean

Returns:

  • (Boolean)


137
138
139
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/errors.rb', line 137

def retryable?
  true
end

#throttling?Boolean

Returns:

  • (Boolean)


141
142
143
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/errors.rb', line 141

def throttling?
  true
end