Class: Aws::IoTSiteWise::Waiters::AssetNotExists
- Inherits:
-
Object
- Object
- Aws::IoTSiteWise::Waiters::AssetNotExists
- Defined in:
- lib/aws-sdk-iotsitewise/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ AssetNotExists
constructor
A new instance of AssetNotExists.
-
#wait(params = {}) ⇒ Types::DescribeAssetResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ AssetNotExists
Returns a new instance of AssetNotExists.
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/aws-sdk-iotsitewise/waiters.rb', line 212 def initialize() @client = .fetch(:client) @waiter = Aws::Waiters::Waiter.new({ max_attempts: 20, delay: 3, poller: Aws::Waiters::Poller.new( operation_name: :describe_asset, acceptors: [{ "state" => "success", "matcher" => "error", "expected" => "ResourceNotFoundException" }] ) }.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.
235 236 237 |
# File 'lib/aws-sdk-iotsitewise/waiters.rb', line 235 def waiter @waiter end |
Instance Method Details
#wait(params = {}) ⇒ Types::DescribeAssetResponse
Returns a response object which responds to the following methods:
-
#asset_id => String
-
#asset_arn => String
-
#asset_name => String
-
#asset_model_id => String
-
#asset_properties => Array<Types::AssetProperty>
-
#asset_hierarchies => Array<Types::AssetHierarchy>
-
#asset_composite_models => Array<Types::AssetCompositeModel>
-
#asset_creation_date => Time
-
#asset_last_update_date => Time
-
#asset_status => Types::AssetStatus
-
#asset_description => String
-
#asset_composite_model_summaries => Array<Types::AssetCompositeModelSummary>
-
#asset_external_id => String
230 231 232 |
# File 'lib/aws-sdk-iotsitewise/waiters.rb', line 230 def wait(params = {}) @waiter.wait(client: @client, params: params) end |