interface RelationshipProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTTwinMaker.CfnEntity.RelationshipProperty | 
|  Java | software.amazon.awscdk.services.iottwinmaker.CfnEntity.RelationshipProperty | 
|  Python | aws_cdk.aws_iottwinmaker.CfnEntity.RelationshipProperty | 
|  TypeScript | @aws-cdk/aws-iottwinmaker»CfnEntity»RelationshipProperty | 
The entity relationship.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iottwinmaker from '@aws-cdk/aws-iottwinmaker';
const relationshipProperty: iottwinmaker.CfnEntity.RelationshipProperty = {
  relationshipType: 'relationshipType',
  targetComponentTypeId: 'targetComponentTypeId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| relationship | string | The relationship type. | 
| target | string | the component type Id target. | 
relationshipType?
Type:
string
(optional)
The relationship type.
targetComponentTypeId?
Type:
string
(optional)
the component type Id target.
