Class: Aws::Deadline::Errors::ThrottlingException

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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ThrottlingException.

Parameters:



203
204
205
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 203

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

Instance Method Details

#contextString

Returns:

  • (String)


208
209
210
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 208

def context
  @data[:context]
end

#messageString

Returns:

  • (String)


213
214
215
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 213

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

#quota_codeString

Returns:

  • (String)


218
219
220
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 218

def quota_code
  @data[:quota_code]
end

#retry_after_secondsString

Returns:

  • (String)


223
224
225
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 223

def retry_after_seconds
  @data[:retry_after_seconds]
end

#retryable?Boolean

Returns:

  • (Boolean)


232
233
234
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 232

def retryable?
  true
end

#service_codeString

Returns:

  • (String)


228
229
230
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 228

def service_code
  @data[:service_code]
end

#throttling?Boolean

Returns:

  • (Boolean)


236
237
238
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/errors.rb', line 236

def throttling?
  true
end