Class: Aws::MediaConnect::Waiters::OutputActive
- Inherits:
-
Object
- Object
- Aws::MediaConnect::Waiters::OutputActive
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/waiters.rb
Overview
Wait until the Output is ACTIVE
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.
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 522 523 524 525 526 527 528 529 530 531 532 533 534 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/waiters.rb', line 483 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" => "path", "argument" => "router_output.state", "state" => "retry", "expected" => "MIGRATING" }, { "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 Method Details
#wait(params = {}) ⇒ Types::GetRouterOutputResponse
Returns a response object which responds to the following methods:
- #router_output => Types::RouterOutput
538 539 540 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/waiters.rb', line 538 def wait(params = {}) @waiter.wait(client: @client, params: params) end |