interface CfnThingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnThingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnThingMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnThingMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnThingMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnThingMixinProps |
Properties for CfnThingPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const cfnThingMixinProps: iot_mixins.CfnThingMixinProps = {
attributePayload: {
attributes: {
attributesKey: 'attributes',
},
},
thingName: 'thingName',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | IResolvable | Attribute | A string that contains up to three key value pairs. |
| thing | string | The name of the thing to update. |
attributePayload?
Type:
IResolvable | Attribute
(optional)
A string that contains up to three key value pairs.
Maximum length of 800. Duplicates not allowed.
thingName?
Type:
string
(optional)
The name of the thing to update.
You can't change a thing's name. To change a thing's name, you must create a new thing, give it the new name, and then delete the old thing.

.NET
Go
Java
Python
TypeScript