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.
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/aws-sdk-cloudfront/waiters.rb', line 161 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.
185 186 187 |
# File 'lib/aws-sdk-cloudfront/waiters.rb', line 185 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
180 181 182 |
# File 'lib/aws-sdk-cloudfront/waiters.rb', line 180 def wait(params = {}) @waiter.wait(client: @client, params: params) end |