class Aws::CloudFront::Waiters::InvalidationCompleted
Wait until an invalidation has completed.
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 (30) @option options [Integer] :delay (20) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-cloudfront/waiters.rb, line 124 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 30, delay: 20, poller: Aws::Waiters::Poller.new( operation_name: :get_invalidation, acceptors: [{ "expected" => "Completed", "matcher" => "path", "state" => "success", "argument" => "invalidation.status" }] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#get_invalidation
) @return (see Client#get_invalidation
)
# File lib/aws-sdk-cloudfront/waiters.rb, line 143 def wait(params = {}) @waiter.wait(client: @client, params: params) end