Interface CfnThing.AttributePayloadProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnThing.AttributePayloadProperty.Jsii$Proxy
Enclosing class:
CfnThing

@Stability(Stable) public static interface CfnThing.AttributePayloadProperty extends software.amazon.jsii.JsiiSerializable
The AttributePayload property specifies up to three attributes for an AWS IoT as key-value pairs.

AttributePayload is a property of the AWS::IoT::Thing resource.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iot.*;
 AttributePayloadProperty attributePayloadProperty = AttributePayloadProperty.builder()
         .attributes(Map.of(
                 "attributesKey", "attributes"))
         .build();