Interface CfnAssetModel.EnforcedAssetModelInterfaceRelationshipProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssetModel.EnforcedAssetModelInterfaceRelationshipProperty.Jsii$Proxy
Enclosing class:
CfnAssetModel

@Stability(Stable) public static interface CfnAssetModel.EnforcedAssetModelInterfaceRelationshipProperty extends software.amazon.jsii.JsiiSerializable
Contains information about enforced 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 software.amazon.awscdk.services.iotsitewise.*;
 EnforcedAssetModelInterfaceRelationshipProperty enforcedAssetModelInterfaceRelationshipProperty = EnforcedAssetModelInterfaceRelationshipProperty.builder()
         .interfaceAssetModelId("interfaceAssetModelId")
         .propertyMappings(List.of(EnforcedAssetModelInterfacePropertyMappingProperty.builder()
                 .interfaceAssetModelPropertyExternalId("interfaceAssetModelPropertyExternalId")
                 // the properties below are optional
                 .assetModelPropertyExternalId("assetModelPropertyExternalId")
                 .assetModelPropertyLogicalId("assetModelPropertyLogicalId")
                 .build()))
         .build();
 

See Also: