class Aws::Proton::Waiters::EnvironmentDeployed

Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment

Attributes

waiter[R]

@api private

Public Class Methods

new(options) click to toggle source

@param [Hash] options @option options [required, Client] :client @option options [Integer] :max_attempts (999) @option options [Integer] :delay (5) @option options [Proc] :before_attempt @option options [Proc] :before_wait

# File lib/aws-sdk-proton/waiters.rb, line 92
def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 999,
    delay: 5,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_environment,
      acceptors: [
        {
          "matcher" => "path",
          "argument" => "environment.deployment_status",
          "state" => "success",
          "expected" => "SUCCEEDED"
        },
        {
          "matcher" => "path",
          "argument" => "environment.deployment_status",
          "state" => "failure",
          "expected" => "FAILED"
        }
      ]
    )
  }.merge(options))
end

Public Instance Methods

wait(params = {}) click to toggle source

@option (see Client#get_environment) @return (see Client#get_environment)

# File lib/aws-sdk-proton/waiters.rb, line 119
def wait(params = {})
  @waiter.wait(client: @client, params: params)
end