Class: Aws::ECS::Waiters::ServicesInactive
- Inherits:
-
Object
- Object
- Aws::ECS::Waiters::ServicesInactive
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/waiters.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ ServicesInactive
constructor
A new instance of ServicesInactive.
-
#wait(params = {}) ⇒ Types::DescribeServicesResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ ServicesInactive
Returns a new instance of ServicesInactive.
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/waiters.rb', line 328 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 40, delay: 15, poller: Aws::Waiters::Poller.new( operation_name: :describe_services, acceptors: [ { "matcher" => "pathAny", "argument" => "failures[].reason", "state" => "failure", "expected" => "MISSING" }, { "matcher" => "pathAny", "argument" => "services[].status", "state" => "success", "expected" => "INACTIVE" } ] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeServicesResponse
355 356 357 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/waiters.rb', line 355 def wait(params = {}) @waiter.wait(client: @client, params: params) end |