Class: Aws::Repostspace::Waiters::SpaceDeleted
- Inherits:
-
Object
- Object
- Aws::Repostspace::Waiters::SpaceDeleted
- Defined in:
- gems/aws-sdk-repostspace/lib/aws-sdk-repostspace/waiters.rb
Instance Method Summary collapse
-
#initialize(options) ⇒ SpaceDeleted
constructor
A new instance of SpaceDeleted.
-
#wait(params = {}) ⇒ Types::GetSpaceOutput
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ SpaceDeleted
Returns a new instance of SpaceDeleted.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'gems/aws-sdk-repostspace/lib/aws-sdk-repostspace/waiters.rb', line 242 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 24, delay: 300, poller: Aws::Waiters::Poller.new( operation_name: :get_space, acceptors: [ { "matcher" => "error", "state" => "success", "expected" => "ResourceNotFoundException" }, { "matcher" => "path", "argument" => "status", "state" => "success", "expected" => "DELETED" }, { "matcher" => "path", "argument" => "status", "state" => "failure", "expected" => "DELETE_FAILED" }, { "matcher" => "path", "argument" => "status", "state" => "retry", "expected" => "DELETING" } ] ) }.merge()) end |
Instance Method Details
#wait(params = {}) ⇒ Types::GetSpaceOutput
Returns a response object which responds to the following methods:
- #space_id => String
- #arn => String
- #name => String
- #status => String
- #configuration_status => String
- #client_id => String
- #identity_store_id => String
- #application_arn => String
- #description => String
- #vanity_domain_status => String
- #vanity_domain => String
- #random_domain => String
- #customer_role_arn => String
- #create_date_time => Time
- #delete_date_time => Time
- #tier => String
- #storage_limit => Integer
- #user_admins => Array<String>
- #group_admins => Array<String>
- #roles => Hash<String,Array<String>>
- #user_kms_key => String
- #user_count => Integer
- #content_size => Integer
- #supported_email_domains => Types::SupportedEmailDomainsStatus
280 281 282 |
# File 'gems/aws-sdk-repostspace/lib/aws-sdk-repostspace/waiters.rb', line 280 def wait(params = {}) @waiter.wait(client: @client, params: params) end |