Class: Aws::NimbleStudio::Waiters::StreamingSessionStopped
- Inherits:
-
Object
- Object
- Aws::NimbleStudio::Waiters::StreamingSessionStopped
- Defined in:
- lib/aws-sdk-nimblestudio/waiters.rb
Overview
Wait until a StreamingSessionStopped. Use this after invoking StopStreamingSession
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ StreamingSessionStopped
constructor
A new instance of StreamingSessionStopped.
-
#wait(params = {}) ⇒ Types::GetStreamingSessionResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ StreamingSessionStopped
Returns a new instance of StreamingSessionStopped.
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 384 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" => "STOPPED" }, { "matcher" => "path", "argument" => "session.state", "state" => "failure", "expected" => "STOP_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.
416 417 418 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 416 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetStreamingSessionResponse
Returns a response object which responds to the following methods:
-
#session => Types::StreamingSession
411 412 413 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 411 def wait(params = {}) @waiter.wait(client: @client, params: params) end |