Class: Aws::Evs::Types::ThrottlingException

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb

Overview

The operation couldn't be performed because the service is throttling requests. This exception is thrown when there are too many requests accepted concurrently from the service endpoint.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

Describes the error encountered.

Returns:

  • (String)


1386
1387
1388
1389
1390
1391
# File 'gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb', line 1386

class ThrottlingException < Struct.new(
  :message,
  :retry_after_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#retry_after_secondsInteger

The seconds to wait to retry.

Returns:

  • (Integer)


1386
1387
1388
1389
1390
1391
# File 'gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb', line 1386

class ThrottlingException < Struct.new(
  :message,
  :retry_after_seconds)
  SENSITIVE = []
  include Aws::Structure
end