Class: Aws::NimbleStudio::Waiters::StudioDeleted
- Inherits:
 - 
      Object
      
        
- Object
 - Aws::NimbleStudio::Waiters::StudioDeleted
 
 
- Defined in:
 - lib/aws-sdk-nimblestudio/waiters.rb
 
Overview
Wait until a Studio is Deleted. Use this after invoking DeleteStudio.
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
 
Instance Method Summary collapse
- 
  
    
      #initialize(options)  ⇒ StudioDeleted 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of StudioDeleted.
 - 
  
    
      #wait(params = {})  ⇒ Types::GetStudioResponse 
    
    
  
  
  
  
  
  
  
  
  
    
Returns a response object which responds to the following methods:.
 
Constructor Details
#initialize(options) ⇒ StudioDeleted
Returns a new instance of StudioDeleted.
      570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593  | 
    
      # File 'lib/aws-sdk-nimblestudio/waiters.rb', line 570 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 2, poller: Aws::Waiters::Poller.new( operation_name: :get_studio, acceptors: [ { "matcher" => "path", "argument" => "studio.state", "state" => "success", "expected" => "DELETED" }, { "matcher" => "path", "argument" => "studio.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.
      602 603 604  | 
    
      # File 'lib/aws-sdk-nimblestudio/waiters.rb', line 602 def waiter @waiter end  | 
  
Instance Method Details
#wait(params = {}) ⇒ Types::GetStudioResponse
Returns a response object which responds to the following methods:
- 
#studio => Types::Studio
 
      597 598 599  | 
    
      # File 'lib/aws-sdk-nimblestudio/waiters.rb', line 597 def wait(params = {}) @waiter.wait(client: @client, params: params) end  |