Class: Aws::MediaLive::Waiters::NodeRegistered
- Inherits:
-
Object
- Object
- Aws::MediaLive::Waiters::NodeRegistered
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/waiters.rb
Overview
Wait until a node has been registered
Instance Method Summary collapse
-
#initialize(options) ⇒ NodeRegistered
constructor
A new instance of NodeRegistered.
-
#wait(params = {}) ⇒ Types::DescribeNodeResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ NodeRegistered
Returns a new instance of NodeRegistered.
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/waiters.rb', line 986 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 5, delay: 3, poller: Aws::Waiters::Poller.new( operation_name: :describe_node, acceptors: [ { "state" => "success", "matcher" => "path", "argument" => "state", "expected" => "ACTIVE" }, { "state" => "retry", "matcher" => "path", "argument" => "state", "expected" => "REGISTERING" }, { "state" => "retry", "matcher" => "status", "expected" => 404 }, { "state" => "failure", "matcher" => "path", "argument" => "state", "expected" => "REGISTRATION_FAILED" }, { "state" => "retry", "matcher" => "status", "expected" => 500 } ] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeNodeResponse
Returns a response object which responds to the following methods:
- #arn => String
- #channel_placement_groups => Array<String>
- #cluster_id => String
- #connection_state => String
- #id => String
- #instance_arn => String
- #name => String
- #node_interface_mappings => Array<Types::NodeInterfaceMapping>
- #role => String
- #state => String
- #sdi_source_mappings => Array<Types::SdiSourceMapping>
1029 1030 1031 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/waiters.rb', line 1029 def wait(params = {}) @waiter.wait(client: @client, params: params) end |