class Aws::SageMaker::Waiters::ImageUpdated
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 (60) @option options [Integer] :delay (60) @option options [Proc] :before_attempt @option options [Proc] :before_wait
# File lib/aws-sdk-sagemaker/waiters.rb, line 285 def initialize(options) @client = options.fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 60, poller: Aws::Waiters::Poller.new( operation_name: :describe_image, acceptors: [ { "expected" => "CREATED", "matcher" => "path", "state" => "success", "argument" => "image_status" }, { "expected" => "UPDATE_FAILED", "matcher" => "path", "state" => "failure", "argument" => "image_status" }, { "expected" => "ValidationException", "matcher" => "error", "state" => "failure" } ] ) }.merge(options)) end
Public Instance Methods
wait(params = {})
click to toggle source
@option (see Client#describe_image
) @return (see Client#describe_image
)
# File lib/aws-sdk-sagemaker/waiters.rb, line 317 def wait(params = {}) @waiter.wait(client: @client, params: params) end