Class: Aws::Redshift::Waiters::ClusterRestored
- Inherits:
-
Object
- Object
- Aws::Redshift::Waiters::ClusterRestored
- Defined in:
- lib/aws-sdk-redshift/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ ClusterRestored
constructor
A new instance of ClusterRestored.
-
#wait(params = {}) ⇒ Types::ClustersMessage
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ ClusterRestored
Returns a new instance of ClusterRestored.
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/aws-sdk-redshift/waiters.rb', line 185 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 30, delay: 60, poller: Aws::Waiters::Poller.new( operation_name: :describe_clusters, acceptors: [ { "state" => "success", "matcher" => "pathAll", "argument" => "clusters[].restore_status.status", "expected" => "completed" }, { "state" => "failure", "matcher" => "pathAny", "argument" => "clusters[].cluster_status", "expected" => "deleting" } ] ) }.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.
217 218 219 |
# File 'lib/aws-sdk-redshift/waiters.rb', line 217 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::ClustersMessage
212 213 214 |
# File 'lib/aws-sdk-redshift/waiters.rb', line 212 def wait(params = {}) @waiter.wait(client: @client, params: params) end |