Class: Aws::IoTSiteWise::Waiters::AssetActive
- Inherits:
-
Object
- Object
- Aws::IoTSiteWise::Waiters::AssetActive
- Defined in:
- lib/aws-sdk-iotsitewise/waiters.rb
Instance Attribute Summary collapse
- #waiter ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(options) ⇒ AssetActive
constructor
A new instance of AssetActive.
-
#wait(params = {}) ⇒ Types::DescribeAssetResponse
Returns a response object which responds to the following methods:.
Constructor Details
#initialize(options) ⇒ AssetActive
Returns a new instance of AssetActive.
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/aws-sdk-iotsitewise/waiters.rb', line 89 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" => "path", "argument" => "asset_status.state", "expected" => "ACTIVE" }, { "state" => "failure", "matcher" => "path", "argument" => "asset_status.state", "expected" => "FAILED" } ] ) }.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.
121 122 123 |
# File 'lib/aws-sdk-iotsitewise/waiters.rb', line 121 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
116 117 118 |
# File 'lib/aws-sdk-iotsitewise/waiters.rb', line 116 def wait(params = {}) @waiter.wait(client: @client, params: params) end |