Class: Aws::ElasticLoadBalancingV2::Waiters::LoadBalancersDeleted
- Inherits:
-
Object
- Object
- Aws::ElasticLoadBalancingV2::Waiters::LoadBalancersDeleted
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ LoadBalancersDeleted
constructor
A new instance of LoadBalancersDeleted.
-
#wait(params = {}) ⇒ Types::DescribeLoadBalancersOutput
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ LoadBalancersDeleted
Returns a new instance of LoadBalancersDeleted.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/aws-sdk-elasticloadbalancingv2/waiters.rb', line 179 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_load_balancers, acceptors: [ { "state" => "retry", "matcher" => "pathAll", "argument" => "load_balancers[].state.code", "expected" => "active" }, { "matcher" => "error", "expected" => "LoadBalancerNotFound", "state" => "success" } ] ) }.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.
210 211 212 |
# File 'lib/aws-sdk-elasticloadbalancingv2/waiters.rb', line 210 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeLoadBalancersOutput
Returns a response object which responds to the following methods:
-
#load_balancers => Array<Types::LoadBalancer>
-
#next_marker => String
205 206 207 |
# File 'lib/aws-sdk-elasticloadbalancingv2/waiters.rb', line 205 def wait(params = {}) @waiter.wait(client: @client, params: params) end |