Class: Aws::IoTSiteWise::Types::AssetModelHierarchy
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::AssetModelHierarchy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Describes an asset hierarchy that contains a hierarchy’s name, ID, and child asset model ID that specifies the type of asset that can be in this hierarchy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#child_asset_model_id ⇒ String
The ID of the asset model, in UUID format.
-
#external_id ⇒ String
The external ID (if any) provided in the [CreateAssetModel] or [UpdateAssetModel] operation.
-
#id ⇒ String
The ID of the asset model hierarchy.
-
#name ⇒ String
The name of the asset model hierarchy that you specify by using the [CreateAssetModel] or [UpdateAssetModel] API operation.
Instance Attribute Details
#child_asset_model_id ⇒ String
The ID of the asset model, in UUID format. All assets in this hierarchy must be instances of the ‘childAssetModelId` asset model. IoT SiteWise will always return the actual asset model ID for this value. However, when you are specifying this value as part of a call to [UpdateAssetModel], you may provide either the asset model ID or else `externalId:` followed by the asset model’s external ID. For more information, see [Using external IDs] in the *IoT SiteWise User Guide*.
[1]: docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_UpdateAssetModel.html [2]: docs.aws.amazon.com/iot-sitewise/latest/userguide/object-ids.html#external-ids
640 641 642 643 644 645 646 647 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 640 class AssetModelHierarchy < Struct.new( :id, :external_id, :name, :child_asset_model_id) SENSITIVE = [] include Aws::Structure end |
#external_id ⇒ String
The external ID (if any) provided in the [CreateAssetModel] or
- UpdateAssetModel][2
-
operation. You can assign an external ID by
specifying this value as part of a call to [UpdateAssetModel]. However, you can’t change the external ID if one is already assigned. For more information, see [Using external IDs] in the *IoT SiteWise User Guide*.
[1]: docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_CreateAssetModel.html [2]: docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_UpdateAssetModel.html [3]: docs.aws.amazon.com/iot-sitewise/latest/userguide/object-ids.html#external-ids
640 641 642 643 644 645 646 647 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 640 class AssetModelHierarchy < Struct.new( :id, :external_id, :name, :child_asset_model_id) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the asset model hierarchy. This ID is a ‘hierarchyId`.
-
If you are callling [UpdateAssetModel] to create a new hierarchy: You can specify its ID here, if desired. IoT SiteWise automatically generates a unique ID for you, so this parameter is never required. However, if you prefer to supply your own ID instead, you can specify it here in UUID format. If you specify your own ID, it must be globally unique.
-
If you are calling UpdateAssetModel to modify an existing hierarchy: This can be either the actual ID in UUID format, or else ‘externalId:` followed by the external ID, if it has one. For more information, see [Referencing objects with external IDs] in the *IoT SiteWise User Guide*.
[1]: docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_UpdateAssetModel.html [2]: docs.aws.amazon.com/iot-sitewise/latest/userguide/object-ids.html#external-id-references
640 641 642 643 644 645 646 647 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 640 class AssetModelHierarchy < Struct.new( :id, :external_id, :name, :child_asset_model_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the asset model hierarchy that you specify by using the
- CreateAssetModel][1
-
or [UpdateAssetModel] API operation.
[1]: docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_CreateAssetModel.html [2]: docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_UpdateAssetModel.html
640 641 642 643 644 645 646 647 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 640 class AssetModelHierarchy < Struct.new( :id, :external_id, :name, :child_asset_model_id) SENSITIVE = [] include Aws::Structure end |