Class: Aws::CloudFront::Waiters::StreamingDistributionDeployed
- Inherits:
-
Object
- Object
- Aws::CloudFront::Waiters::StreamingDistributionDeployed
- Defined in:
- lib/aws-sdk-cloudfront/waiters.rb
Overview
Wait until a streaming distribution is deployed.
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ StreamingDistributionDeployed
constructor
A new instance of StreamingDistributionDeployed.
-
#wait(params = {}) ⇒ Types::GetStreamingDistributionResult
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ StreamingDistributionDeployed
Returns a new instance of StreamingDistributionDeployed.
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-cloudfront/waiters.rb', line 199 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 25, delay: 60, poller: Aws::Waiters::Poller.new( operation_name: :get_streaming_distribution, acceptors: [{ "matcher" => "path", "argument" => "streaming_distribution.status", "state" => "success", "expected" => "Deployed" }] ) }.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.
223 224 225 |
# File 'lib/aws-sdk-cloudfront/waiters.rb', line 223 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetStreamingDistributionResult
Returns a response object which responds to the following methods:
-
#streaming_distribution => Types::StreamingDistribution
-
#etag => String
218 219 220 |
# File 'lib/aws-sdk-cloudfront/waiters.rb', line 218 def wait(params = {}) @waiter.wait(client: @client, params: params) end |