interface AttributePayloadProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoT.CfnThingGroup.AttributePayloadProperty | 
|  Java | software.amazon.awscdk.services.iot.CfnThingGroup.AttributePayloadProperty | 
|  Python | aws_cdk.aws_iot.CfnThingGroup.AttributePayloadProperty | 
|  TypeScript | @aws-cdk/aws-iot»CfnThingGroup»AttributePayloadProperty | 
The attribute payload.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iot from '@aws-cdk/aws-iot';
const attributePayloadProperty: iot.CfnThingGroup.AttributePayloadProperty = {
  attributes: {
    attributesKey: 'attributes',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| attributes? | IResolvable | { [string]: string } | A JSON string containing up to three key-value pair in JSON format. For example:. | 
attributes?
Type:
IResolvable | { [string]: string }
(optional)
A JSON string containing up to three key-value pair in JSON format. For example:.
{\"attributes\":{\"string1\":\"string2\"}}
