Class: Aws::NimbleStudio::Waiters::StreamingSessionDeleted
- Inherits:
-
Object
- Object
- Aws::NimbleStudio::Waiters::StreamingSessionDeleted
- Defined in:
- lib/aws-sdk-nimblestudio/waiters.rb
Overview
Wait until a StreamingSessionDeleted. Use this after invoking DeleteStreamingSession
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ StreamingSessionDeleted
constructor
A new instance of StreamingSessionDeleted.
-
#wait(params = {}) ⇒ Types::GetStreamingSessionResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ StreamingSessionDeleted
Returns a new instance of StreamingSessionDeleted.
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 288 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 180, delay: 5, poller: Aws::Waiters::Poller.new( operation_name: :get_streaming_session, acceptors: [ { "matcher" => "path", "argument" => "session.state", "state" => "success", "expected" => "DELETED" }, { "matcher" => "path", "argument" => "session.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.
320 321 322 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 320 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetStreamingSessionResponse
Returns a response object which responds to the following methods:
-
#session => Types::StreamingSession
315 316 317 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 315 def wait(params = {}) @waiter.wait(client: @client, params: params) end |