interface EnforcedAssetModelInterfaceRelationshipProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnAssetModelPropsMixin.EnforcedAssetModelInterfaceRelationshipProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnAssetModelPropsMixin_EnforcedAssetModelInterfaceRelationshipProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnAssetModelPropsMixin.EnforcedAssetModelInterfaceRelationshipProperty |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnAssetModelPropsMixin.EnforcedAssetModelInterfaceRelationshipProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnAssetModelPropsMixin » EnforcedAssetModelInterfaceRelationshipProperty |
Contains information about applied interface hierarchy and asset model hierarchy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const enforcedAssetModelInterfaceRelationshipProperty: iotsitewise_mixins.CfnAssetModelPropsMixin.EnforcedAssetModelInterfaceRelationshipProperty = {
interfaceAssetModelId: 'interfaceAssetModelId',
propertyMappings: [{
assetModelPropertyExternalId: 'assetModelPropertyExternalId',
assetModelPropertyLogicalId: 'assetModelPropertyLogicalId',
interfaceAssetModelPropertyExternalId: 'interfaceAssetModelPropertyExternalId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| interface | string | The ID of the asset model that has the interface applied to it. |
| property | IResolvable | (IResolvable | Enforced)[] | A list of property mappings between the interface asset model and the asset model where the interface is applied. |
interfaceAssetModelId?
Type:
string
(optional)
The ID of the asset model that has the interface applied to it.
propertyMappings?
Type:
IResolvable | (IResolvable | Enforced)[]
(optional)
A list of property mappings between the interface asset model and the asset model where the interface is applied.

.NET
Go
Java
Python
TypeScript