Class: Aws::CloudFront::Waiters::InvalidationCompleted
- Inherits:
 - 
      Object
      
        
- Object
 - Aws::CloudFront::Waiters::InvalidationCompleted
 
 
- Defined in:
 - lib/aws-sdk-cloudfront/waiters.rb
 
Overview
Wait until an invalidation has completed.
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
 
Instance Method Summary collapse
- 
  
    
      #initialize(options)  ⇒ InvalidationCompleted 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InvalidationCompleted.
 - 
  
    
      #wait(params = {})  ⇒ Types::GetInvalidationResult 
    
    
  
  
  
  
  
  
  
  
  
    
Returns a response object which responds to the following methods:.
 
Constructor Details
#initialize(options) ⇒ InvalidationCompleted
Returns a new instance of InvalidationCompleted.
      124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139  | 
    
      # File 'lib/aws-sdk-cloudfront/waiters.rb', line 124 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 30, delay: 20, poller: Aws::Waiters::Poller.new( operation_name: :get_invalidation, acceptors: [{ "expected" => "Completed", "matcher" => "path", "state" => "success", "argument" => "invalidation.status" }] ) }.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.
      148 149 150  | 
    
      # File 'lib/aws-sdk-cloudfront/waiters.rb', line 148 def waiter @waiter end  | 
  
Instance Method Details
#wait(params = {}) ⇒ Types::GetInvalidationResult
Returns a response object which responds to the following methods:
- 
#invalidation => Types::Invalidation
 
      143 144 145  | 
    
      # File 'lib/aws-sdk-cloudfront/waiters.rb', line 143 def wait(params = {}) @waiter.wait(client: @client, params: params) end  |