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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnThing.AttributePayloadProperty
static final class
An implementation forCfnThing.AttributePayloadProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributes
A JSON string containing up to three key-value pair in JSON format. For example:.{\"attributes\":{\"string1\":\"string2\"}}
- See Also:
-
builder
-