Class: Aws::NimbleStudio::Waiters::LaunchProfileReady
- Inherits:
-
Object
- Object
- Aws::NimbleStudio::Waiters::LaunchProfileReady
- Defined in:
- lib/aws-sdk-nimblestudio/waiters.rb
Overview
Wait until a LaunchProfile is Ready. Use this after invoking CreateLaunchProfile or UpdateLaunchProfile
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ LaunchProfileReady
constructor
A new instance of LaunchProfileReady.
-
#wait(params = {}) ⇒ Types::GetLaunchProfileResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ LaunchProfileReady
Returns a new instance of LaunchProfileReady.
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 'lib/aws-sdk-nimblestudio/waiters.rb', line 141 def initialize() @client = .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()) 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.
179 180 181 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 179 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetLaunchProfileResponse
Returns a response object which responds to the following methods:
-
#launch_profile => Types::LaunchProfile
174 175 176 |
# File 'lib/aws-sdk-nimblestudio/waiters.rb', line 174 def wait(params = {}) @waiter.wait(client: @client, params: params) end |