Class: Aws::PrometheusService::Waiters::AnomalyDetectorDeleted
- Inherits:
-
Object
- Object
- Aws::PrometheusService::Waiters::AnomalyDetectorDeleted
- Defined in:
- gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/waiters.rb
Overview
Wait until the anomaly detector reaches DELETED status
Instance Method Summary collapse
-
#initialize(options) ⇒ AnomalyDetectorDeleted
constructor
A new instance of AnomalyDetectorDeleted.
-
#wait(params = {}) ⇒ Types::DescribeAnomalyDetectorResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ AnomalyDetectorDeleted
Returns a new instance of AnomalyDetectorDeleted.
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/waiters.rb', line 141 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 60, delay: 2, poller: Aws::Waiters::Poller.new( operation_name: :describe_anomaly_detector, acceptors: [ { "matcher" => "error", "state" => "success", "expected" => "ResourceNotFoundException" }, { "matcher" => "path", "argument" => "anomaly_detector.status.status_code", "state" => "retry", "expected" => "DELETING" } ] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeAnomalyDetectorResponse
Returns a response object which responds to the following methods:
- #anomaly_detector => Types::AnomalyDetectorDescription
167 168 169 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/waiters.rb', line 167 def wait(params = {}) @waiter.wait(client: @client, params: params) end |