interface ThingReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.ThingReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#ThingReference |
Java | software.amazon.awscdk.services.iot.ThingReference |
Python | aws_cdk.aws_iot.ThingReference |
TypeScript | aws-cdk-lib » aws_iot » ThingReference |
A reference to a Thing resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const thingReference: iot.ThingReference = {
thingArn: 'thingArn',
thingName: 'thingName',
};
Properties
| Name | Type | Description |
|---|---|---|
| thing | string | The ARN of the Thing resource. |
| thing | string | The ThingName of the Thing resource. |
thingArn
Type:
string
The ARN of the Thing resource.
thingName
Type:
string
The ThingName of the Thing resource.

.NET
Go
Java
Python
TypeScript