Class: Aws::EC2::Waiters::NatGatewayAvailable
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::NatGatewayAvailable
- Defined in:
- lib/aws-sdk-ec2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ NatGatewayAvailable
constructor
A new instance of NatGatewayAvailable.
-
#wait(params = {}) ⇒ Types::DescribeNatGatewaysResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ NatGatewayAvailable
Returns a new instance of NatGatewayAvailable.
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 827 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_nat_gateways, acceptors: [ { "state" => "success", "matcher" => "pathAll", "argument" => "nat_gateways[].state", "expected" => "available" }, { "state" => "failure", "matcher" => "pathAny", "argument" => "nat_gateways[].state", "expected" => "failed" }, { "state" => "failure", "matcher" => "pathAny", "argument" => "nat_gateways[].state", "expected" => "deleting" }, { "state" => "failure", "matcher" => "pathAny", "argument" => "nat_gateways[].state", "expected" => "deleted" }, { "state" => "retry", "matcher" => "error", "expected" => "NatGatewayNotFound" } ] ) }.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.
876 877 878 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 876 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeNatGatewaysResult
Returns a response object which responds to the following methods:
-
#nat_gateways => Array<Types::NatGateway>
-
#next_token => String
871 872 873 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 871 def wait(params = {}) @waiter.wait(client: @client, params: params) end |