Class: Aws::NimbleStudio::Waiters::StudioComponentDeleted
- Inherits:
-
Object
- Object
- Aws::NimbleStudio::Waiters::StudioComponentDeleted
- Defined in:
- lib/aws-sdk-nimblestudio/waiters.rb
Overview
Wait until a StudioComponent Deleted. Use this after invoking DeleteStudioComponent
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ StudioComponentDeleted
constructor
A new instance of StudioComponentDeleted.
-
#wait(params = {}) ⇒ Types::GetStudioComponentResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ StudioComponentDeleted
Returns a new instance of StudioComponentDeleted.
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 474 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 120, delay: 1, poller: Aws::Waiters::Poller.new( operation_name: :get_studio_component, acceptors: [ { "matcher" => "path", "argument" => "studio_component.state", "state" => "success", "expected" => "DELETED" }, { "matcher" => "path", "argument" => "studio_component.state", "state" => "failure", "expected" => "DELETE_FAILED" } ] ) }.merge()) end |
Instance Attribute Details
#waiter ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
506 507 508 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 506 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetStudioComponentResponse
Returns a response object which responds to the following methods:
-
#studio_component => Types::StudioComponent
501 502 503 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 501 def wait(params = {}) @waiter.wait(client: @client, params: params) end |