interface ThingGroupPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnThingGroupPropsMixin.ThingGroupPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnThingGroupPropsMixin_ThingGroupPropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnThingGroupPropsMixin.ThingGroupPropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnThingGroupPropsMixin.ThingGroupPropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnThingGroupPropsMixin » ThingGroupPropertiesProperty |
Thing group properties.
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/cfn-property-mixins';
const thingGroupPropertiesProperty: iot.CfnThingGroupPropsMixin.ThingGroupPropertiesProperty = {
attributePayload: {
attributes: {
attributesKey: 'attributes',
},
},
thingGroupDescription: 'thingGroupDescription',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | IResolvable | Attribute | The thing group attributes in JSON format. |
| thing | string | The thing group description. |
attributePayload?
Type:
IResolvable | Attribute
(optional)
The thing group attributes in JSON format.
thingGroupDescription?
Type:
string
(optional)
The thing group description.

.NET
Go
Java
Python
TypeScript