interface RelationshipProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTTwinMaker.CfnEntity.RelationshipProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#CfnEntity_RelationshipProperty |
Java | software.amazon.awscdk.services.iottwinmaker.CfnEntity.RelationshipProperty |
Python | aws_cdk.aws_iottwinmaker.CfnEntity.RelationshipProperty |
TypeScript | aws-cdk-lib » 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 { aws_iottwinmaker as iottwinmaker } from 'aws-cdk-lib';
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.

.NET
Go
Java
Python
TypeScript