class Aws::ECR::Waiters::LifecyclePolicyPreviewComplete
Wait until a lifecycle policy preview request is complete and results can be accessed
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 (20) @option options [Integer] :delay (5) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-ecr/waiters.rb, line 131 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 20, delay: 5, poller: Aws::Waiters::Poller.new( operation_name: :get_lifecycle_policy_preview, acceptors: [ { "state" => "success", "matcher" => "path", "argument" => "status", "expected" => "COMPLETE" }, { "state" => "failure", "matcher" => "path", "argument" => "status", "expected" => "FAILED" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#get_lifecycle_policy_preview
) @return (see Client#get_lifecycle_policy_preview
)
# File lib/aws-sdk-ecr/waiters.rb, line 158 def wait(params = {}) @waiter.wait(client: @client, params: params) end