interface EntityReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTTwinMaker.EntityReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiottwinmaker#EntityReference |
Java | software.amazon.awscdk.interfaces.iottwinmaker.EntityReference |
Python | aws_cdk.interfaces.aws_iottwinmaker.EntityReference |
TypeScript | aws-cdk-lib » interfaces » aws_iottwinmaker » EntityReference |
A reference to a Entity resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iottwinmaker as interfaces_aws_iottwinmaker } from 'aws-cdk-lib/interfaces';
const entityReference: interfaces_aws_iottwinmaker.EntityReference = {
entityArn: 'entityArn',
entityId: 'entityId',
workspaceId: 'workspaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| entity | string | The ARN of the Entity resource. |
| entity | string | The EntityId of the Entity resource. |
| workspace | string | The WorkspaceId of the Entity resource. |
entityArn
Type:
string
The ARN of the Entity resource.
entityId
Type:
string
The EntityId of the Entity resource.
workspaceId
Type:
string
The WorkspaceId of the Entity resource.

.NET
Go
Java
Python
TypeScript