Class: Aws::S3::Waiters::BucketNotExists
- Inherits:
-
Object
- Object
- Aws::S3::Waiters::BucketNotExists
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/waiters.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ BucketNotExists
constructor
A new instance of BucketNotExists.
-
#wait(params = {}) ⇒ Types::HeadBucketOutput
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ BucketNotExists
Returns a new instance of BucketNotExists.
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/waiters.rb', line 139 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 20, delay: 5, poller: Aws::Waiters::Poller.new( operation_name: :head_bucket, acceptors: [{ "expected" => 404, "matcher" => "status", "state" => "success" }] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::HeadBucketOutput
Returns a response object which responds to the following methods:
- #bucket_location_type => String
- #bucket_location_name => String
- #bucket_region => String
- #access_point_alias => Boolean
157 158 159 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/waiters.rb', line 157 def wait(params = {}) @waiter.wait(client: @client, params: params) end |