Class: Aws::SageMaker::Waiters::NotebookInstanceDeleted

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

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ NotebookInstanceDeleted

Returns a new instance of NotebookInstanceDeleted.

Parameters:

  • options (Hash)

Options Hash (options):

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


431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/waiters.rb', line 431

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 60,
    delay: 30,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_notebook_instance,
      acceptors: [
        {
          "expected" => "ValidationException",
          "matcher" => "error",
          "state" => "success"
        },
        {
          "expected" => "Failed",
          "matcher" => "path",
          "state" => "failure",
          "argument" => "notebook_instance_status"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

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

Returns a response object which responds to the following methods:

Parameters:

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

    a customizable set of options

Options Hash (params):

  • :notebook_instance_name (required, String)

    The name of the notebook instance that you want information about.

Returns:



457
458
459
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/waiters.rb', line 457

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