Class: Aws::IoTSiteWise::Types::AssetModelHierarchyDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::AssetModelHierarchyDefinition
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass AssetModelHierarchyDefinition data as a hash:
{
name: "Name", # required
child_asset_model_id: "ID", # required
}
Contains an asset model hierarchy used in asset model creation. An asset model hierarchy determines the kind (or type) of asset that can belong to a hierarchy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#child_asset_model_id ⇒ String
The ID of an asset model for this hierarchy.
-
#name ⇒ String
The name of the asset model hierarchy definition (as specified in the [CreateAssetModel][1] or [UpdateAssetModel][2] API operation).
Instance Attribute Details
#child_asset_model_id ⇒ String
The ID of an asset model for this hierarchy.
442 443 444 445 446 447 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 442 class AssetModelHierarchyDefinition < Struct.new( :name, :child_asset_model_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the asset model hierarchy definition (as specified in the CreateAssetModel or UpdateAssetModel API operation).
442 443 444 445 446 447 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 442 class AssetModelHierarchyDefinition < Struct.new( :name, :child_asset_model_id) SENSITIVE = [] include Aws::Structure end |