Class: Aws::EC2::Waiters::SnapshotImported
- Inherits:
-
Object
- Object
- Aws::EC2::Waiters::SnapshotImported
- Defined in:
- lib/aws-sdk-ec2/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
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.
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1097 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 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.
1129 1130 1131 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1129 def waiter @waiter 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
1124 1125 1126 |
# File 'lib/aws-sdk-ec2/waiters.rb', line 1124 def wait(params = {}) @waiter.wait(client: @client, params: params) end |