Class: Aws::EC2::Waiters::VolumeAvailable
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::VolumeAvailable
- Defined in:
- lib/aws-sdk-ec2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ VolumeAvailable
constructor
A new instance of VolumeAvailable.
-
#wait(params = {}) ⇒ Types::DescribeVolumesResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ VolumeAvailable
Returns a new instance of VolumeAvailable.
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1336 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_volumes, acceptors: [ { "expected" => "available", "matcher" => "pathAll", "state" => "success", "argument" => "volumes[].state" }, { "expected" => "deleted", "matcher" => "pathAny", "state" => "failure", "argument" => "volumes[].state" } ] ) }.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.
1368 1369 1370 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1368 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeVolumesResult
Returns a response object which responds to the following methods:
-
#next_token => String
-
#volumes => Array<Types::Volume>
1363 1364 1365 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1363 def wait(params = {}) @waiter.wait(client: @client, params: params) end |