Class: Aws::NimbleStudio::Waiters::LaunchProfileReady

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/waiters.rb

Overview

Wait until a LaunchProfile is Ready. Use this after invoking CreateLaunchProfile or UpdateLaunchProfile

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ LaunchProfileReady

Returns a new instance of LaunchProfileReady.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 150
  • :delay (Integer) — default: 5
  • :before_attempt (Proc)
  • :before_wait (Proc)


141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/waiters.rb', line 141

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 150,
    delay: 5,
    poller: Aws::Waiters::Poller.new(
      operation_name: :get_launch_profile,
      acceptors: [
        {
          "matcher" => "path",
          "argument" => "launch_profile.state",
          "state" => "success",
          "expected" => "READY"
        },
        {
          "matcher" => "path",
          "argument" => "launch_profile.state",
          "state" => "failure",
          "expected" => "CREATE_FAILED"
        },
        {
          "matcher" => "path",
          "argument" => "launch_profile.state",
          "state" => "failure",
          "expected" => "UPDATE_FAILED"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

#wait(params = {}) ⇒ Types::GetLaunchProfileResponse

Returns a response object which responds to the following methods:

Parameters:

  • params (Hash) (defaults to: {})

    a customizable set of options

Options Hash (params):

  • :launch_profile_id (required, String)

    The ID of the launch profile used to control access from the streaming session.

  • :studio_id (required, String)

    The studio ID.

Returns:



174
175
176
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/waiters.rb', line 174

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end