Interface CfnThingGroup.ThingGroupPropertiesProperty

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

@Stability(Stable) public static interface CfnThingGroup.ThingGroupPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Thing group properties.

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.*;
 ThingGroupPropertiesProperty thingGroupPropertiesProperty = ThingGroupPropertiesProperty.builder()
         .attributePayload(AttributePayloadProperty.builder()
                 .attributes(Map.of(
                         "attributesKey", "attributes"))
                 .build())
         .thingGroupDescription("thingGroupDescription")
         .build();