Class: Aws::IoTSiteWise::Types::AssetHierarchy
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::AssetHierarchy
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Describes an asset hierarchy that contains a hierarchy's name and ID.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the hierarchy.
-
#name ⇒ String
The hierarchy name provided in the [CreateAssetModel][1] or [UpdateAssetModel][2] API operation.
Instance Attribute Details
#id ⇒ String
The ID of the hierarchy. This ID is a hierarchyId
.
228 229 230 231 232 233 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 228 class AssetHierarchy < Struct.new( :id, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The hierarchy name provided in the CreateAssetModel or UpdateAssetModel API operation.
228 229 230 231 232 233 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 228 class AssetHierarchy < Struct.new( :id, :name) SENSITIVE = [] include Aws::Structure end |