Class: Aws::MediaConnect::Waiters::OutputActive
- Inherits:
-
Object
- Object
- Aws::MediaConnect::Waiters::OutputActive
- Defined in:
- lib/aws-sdk-mediaconnect/waiters.rb
Overview
Wait until the Output is ACTIVE
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ OutputActive
constructor
A new instance of OutputActive.
-
#wait(params = {}) ⇒ Types::GetRouterOutputResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ OutputActive
Returns a new instance of OutputActive.
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
# File 'lib/aws-sdk-mediaconnect/waiters.rb', line 476 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 3, poller: Aws::Waiters::Poller.new( operation_name: :get_router_output, acceptors: [ { "matcher" => "path", "argument" => "router_output.state", "state" => "success", "expected" => "ACTIVE" }, { "matcher" => "path", "argument" => "router_output.state", "state" => "retry", "expected" => "STARTING" }, { "matcher" => "path", "argument" => "router_output.state", "state" => "retry", "expected" => "UPDATING" }, { "matcher" => "error", "state" => "retry", "expected" => "InternalServerErrorException" }, { "matcher" => "error", "state" => "retry", "expected" => "ServiceUnavailableException" }, { "matcher" => "path", "argument" => "router_output.state", "state" => "failure", "expected" => "ERROR" } ] ) }.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.
530 531 532 |
# File 'lib/aws-sdk-mediaconnect/waiters.rb', line 530 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetRouterOutputResponse
Returns a response object which responds to the following methods:
-
#router_output => Types::RouterOutput
525 526 527 |
# File 'lib/aws-sdk-mediaconnect/waiters.rb', line 525 def wait(params = {}) @waiter.wait(client: @client, params: params) end |