Class: Aws::Route53::Waiters::ResourceRecordSetsChanged

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-route53/lib/aws-sdk-route53/waiters.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ResourceRecordSetsChanged

Returns a new instance of ResourceRecordSetsChanged.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 60
  • :delay (Integer) — default: 30
  • :before_attempt (Proc)
  • :before_wait (Proc)


84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/waiters.rb', line 84

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 60,
    delay: 30,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_change,
      acceptors: [{
        "matcher" => "path",
        "expected" => "INSYNC",
        "argument" => "change_info.status",
        "state" => "success"
      }]
    )
  }.merge(options))
end

Instance Method Details

#wait(params = {}) ⇒ Types::GetChangeResponse

Returns a response object which responds to the following methods:

Parameters:

  • params (Hash) (defaults to: {})

    a customizable set of options

Options Hash (params):

  • :id (required, String)

    The ID of the change batch request. The value that you specify here is the value that ChangeResourceRecordSets returned in the Id element when you submitted the request.

Returns:



103
104
105
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/waiters.rb', line 103

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end