interface CfnThingGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnThingGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnThingGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnThingGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnThingGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnThingGroupMixinProps |
Properties for CfnThingGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thinggroup.html
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 cfnThingGroupMixinProps: iot.CfnThingGroupMixinProps = {
parentGroupName: 'parentGroupName',
queryString: 'queryString',
tags: [{
key: 'key',
value: 'value',
}],
thingGroupName: 'thingGroupName',
thingGroupProperties: {
attributePayload: {
attributes: {
attributesKey: 'attributes',
},
},
thingGroupDescription: 'thingGroupDescription',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| parent | string | The parent thing group name. |
| query | string | The dynamic thing group search query string. |
| tags? | Cfn[] | Metadata which can be used to manage the thing group or dynamic thing group. |
| thing | string | The thing group name. |
| thing | IResolvable | Thing | Thing group properties. |
parentGroupName?
Type:
string
(optional)
The parent thing group name.
A Dynamic Thing Group does not have parentGroupName defined.
queryString?
Type:
string
(optional)
The dynamic thing group search query string.
The queryString attribute is required for CreateDynamicThingGroup . The queryString attribute is not required for CreateThingGroup .
tags?
Type:
Cfn[]
(optional)
Metadata which can be used to manage the thing group or dynamic thing group.
thingGroupName?
Type:
string
(optional)
The thing group name.
thingGroupProperties?
Type:
IResolvable | Thing
(optional)
Thing group properties.

.NET
Go
Java
Python
TypeScript