interface ThingGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.ThingGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#ThingGroupReference |
Java | software.amazon.awscdk.interfaces.iot.ThingGroupReference |
Python | aws_cdk.interfaces.aws_iot.ThingGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_iot » ThingGroupReference |
A reference to a ThingGroup 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 interfaces_aws_iot } from 'aws-cdk-lib/interfaces';
const thingGroupReference: interfaces_aws_iot.ThingGroupReference = {
thingGroupArn: 'thingGroupArn',
thingGroupName: 'thingGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| thing | string | The ARN of the ThingGroup resource. |
| thing | string | The ThingGroupName of the ThingGroup resource. |
thingGroupArn
Type:
string
The ARN of the ThingGroup resource.
thingGroupName
Type:
string
The ThingGroupName of the ThingGroup resource.

.NET
Go
Java
Python
TypeScript