interface CfnThingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnThingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnThingMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnThingMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnThingMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const cfnThingMixinProps: iot.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