Class: Aws::EKS::Waiters::CertificateAuthorityUpdateComplete
- Inherits:
-
Object
- Object
- Aws::EKS::Waiters::CertificateAuthorityUpdateComplete
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/waiters.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ CertificateAuthorityUpdateComplete
constructor
A new instance of CertificateAuthorityUpdateComplete.
-
#wait(params = {}) ⇒ Types::DescribeUpdateResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ CertificateAuthorityUpdateComplete
Returns a new instance of CertificateAuthorityUpdateComplete.
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/waiters.rb', line 185 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 30, poller: Aws::Waiters::Poller.new( operation_name: :describe_update, acceptors: [ { "expected" => "Failed", "matcher" => "path", "state" => "failure", "argument" => "update.status" }, { "expected" => "Cancelled", "matcher" => "path", "state" => "failure", "argument" => "update.status" }, { "expected" => "Successful", "matcher" => "path", "state" => "success", "argument" => "update.status" } ] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeUpdateResponse
218 219 220 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/waiters.rb', line 218 def wait(params = {}) @waiter.wait(client: @client, params: params) end |