Class: Aws::EC2::Waiters::SnapshotImported
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::SnapshotImported
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ SnapshotImported
constructor
A new instance of SnapshotImported.
-
#wait(params = {}) ⇒ Types::DescribeImportSnapshotTasksResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ SnapshotImported
Returns a new instance of SnapshotImported.
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 1250 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_import_snapshot_tasks, acceptors: [ { "expected" => "completed", "matcher" => "pathAll", "state" => "success", "argument" => "import_snapshot_tasks[].snapshot_task_detail.status" }, { "expected" => "error", "matcher" => "pathAny", "state" => "failure", "argument" => "import_snapshot_tasks[].snapshot_task_detail.status" } ] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeImportSnapshotTasksResult
Returns a response object which responds to the following methods:
- #import_snapshot_tasks => Array<Types::ImportSnapshotTask>
- #next_token => String
1277 1278 1279 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/waiters.rb', line 1277 def wait(params = {}) @waiter.wait(client: @client, params: params) end |