interface EnforcedAssetModelInterfaceRelationshipProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnAssetModelPropsMixin.EnforcedAssetModelInterfaceRelationshipProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnAssetModelPropsMixin_EnforcedAssetModelInterfaceRelationshipProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnAssetModelPropsMixin.EnforcedAssetModelInterfaceRelationshipProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnAssetModelPropsMixin.EnforcedAssetModelInterfaceRelationshipProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » 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 { aws_iotsitewise as iotsitewise } from '@aws-cdk/cfn-property-mixins';
const enforcedAssetModelInterfaceRelationshipProperty: iotsitewise.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