Class: Aws::NimbleStudio::Waiters::StreamingImageDeleted
- Inherits:
-
Object
- Object
- Aws::NimbleStudio::Waiters::StreamingImageDeleted
- Defined in:
- lib/aws-sdk-nimblestudio/waiters.rb
Overview
Wait until a StreamingImage Deleted. Use this after invoking DeleteStreamingImage
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ StreamingImageDeleted
constructor
A new instance of StreamingImageDeleted.
-
#wait(params = {}) ⇒ Types::GetStreamingImageResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ StreamingImageDeleted
Returns a new instance of StreamingImageDeleted.
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 192 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 2, poller: Aws::Waiters::Poller.new( operation_name: :get_streaming_image, acceptors: [ { "matcher" => "path", "argument" => "streaming_image.state", "state" => "success", "expected" => "DELETED" }, { "matcher" => "path", "argument" => "streaming_image.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.
224 225 226 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 224 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetStreamingImageResponse
Returns a response object which responds to the following methods:
-
#streaming_image => Types::StreamingImage
219 220 221 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 219 def wait(params = {}) @waiter.wait(client: @client, params: params) end |