Class: Aws::IoTSiteWise::Types::ListAssetModelsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ListAssetModelsRequest
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_model_types ⇒ Array<String>
The type of asset model.
-
#asset_model_version ⇒ String
The version alias that specifies the latest or active version of the asset model.
-
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
-
#next_token ⇒ String
The token to be used for the next set of paginated results.
Instance Attribute Details
#asset_model_types ⇒ Array<String>
The type of asset model. If you don't provide an assetModelTypes
,
all types of asset models are returned.
ASSET_MODEL – An asset model that you can use to create assets. Can't be included as a component in another asset model.
COMPONENT_MODEL – A reusable component that you can include in the composite models of other asset models. You can't create assets directly from this type of asset model.
6482 6483 6484 6485 6486 6487 6488 6489 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6482 class ListAssetModelsRequest < Struct.new( :asset_model_types, :next_token, :max_results, :asset_model_version) SENSITIVE = [] include Aws::Structure end |
#asset_model_version ⇒ String
The version alias that specifies the latest or active version of the
asset model. The details are returned in the response. The default
value is LATEST
. See Asset model versions in the IoT
SiteWise User Guide.
6482 6483 6484 6485 6486 6487 6488 6489 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6482 class ListAssetModelsRequest < Struct.new( :asset_model_types, :next_token, :max_results, :asset_model_version) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
Default: 50
6482 6483 6484 6485 6486 6487 6488 6489 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6482 class ListAssetModelsRequest < Struct.new( :asset_model_types, :next_token, :max_results, :asset_model_version) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to be used for the next set of paginated results.
6482 6483 6484 6485 6486 6487 6488 6489 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6482 class ListAssetModelsRequest < Struct.new( :asset_model_types, :next_token, :max_results, :asset_model_version) SENSITIVE = [] include Aws::Structure end |