class Aws::Glacier::Waiters::VaultNotExists

Attributes

waiter[R]

@api private

Public Class Methods

new(options) click to toggle source

@param [Hash] options @option options [required, Client] :client @option options [Integer] :max_attempts (15) @option options [Integer] :delay (3) @option options [Proc] :before_attempt @option options [Proc] :before_wait

# File lib/aws-sdk-glacier/waiters.rb, line 127
def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 15,
    delay: 3,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_vault,
      acceptors: [
        {
          "state" => "retry",
          "matcher" => "status",
          "expected" => 200
        },
        {
          "state" => "success",
          "matcher" => "error",
          "expected" => "ResourceNotFoundException"
        }
      ]
    )
  }.merge(options))
end

Public Instance Methods

wait(params = {}) click to toggle source

@option (see Client#describe_vault) @return (see Client#describe_vault)

# File lib/aws-sdk-glacier/waiters.rb, line 152
def wait(params = {})
  @waiter.wait(client: @client, params: params)
end