Class: Aws::DynamoDB::Waiters::TableExists
- Inherits:
-
Object
- Object
- Aws::DynamoDB::Waiters::TableExists
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/waiters.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ TableExists
constructor
A new instance of TableExists.
-
#wait(params = {}) ⇒ Types::DescribeTableOutput
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ TableExists
Returns a new instance of TableExists.
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/waiters.rb', line 271 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 25, delay: 20, poller: Aws::Waiters::Poller.new( operation_name: :describe_table, acceptors: [ { "expected" => "ACTIVE", "matcher" => "path", "state" => "success", "argument" => "table.table_status" }, { "expected" => "ResourceNotFoundException", "matcher" => "error", "state" => "retry" } ] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeTableOutput
297 298 299 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/waiters.rb', line 297 def wait(params = {}) @waiter.wait(client: @client, params: params) end |