interface ComponentTypeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTTwinMaker.ComponentTypeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiottwinmaker#ComponentTypeReference |
Java | software.amazon.awscdk.interfaces.iottwinmaker.ComponentTypeReference |
Python | aws_cdk.interfaces.aws_iottwinmaker.ComponentTypeReference |
TypeScript | aws-cdk-lib » interfaces » aws_iottwinmaker » ComponentTypeReference |
A reference to a ComponentType 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 componentTypeReference: interfaces_aws_iottwinmaker.ComponentTypeReference = {
componentTypeArn: 'componentTypeArn',
componentTypeId: 'componentTypeId',
workspaceId: 'workspaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | The ARN of the ComponentType resource. |
| component | string | The ComponentTypeId of the ComponentType resource. |
| workspace | string | The WorkspaceId of the ComponentType resource. |
componentTypeArn
Type:
string
The ARN of the ComponentType resource.
componentTypeId
Type:
string
The ComponentTypeId of the ComponentType resource.
workspaceId
Type:
string
The WorkspaceId of the ComponentType resource.

.NET
Go
Java
Python
TypeScript