Interface CfnThingType.ThingTypePropertiesProperty

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

@Stability(Stable) public static interface CfnThingType.ThingTypePropertiesProperty extends software.amazon.jsii.JsiiSerializable
The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.

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.*;
 ThingTypePropertiesProperty thingTypePropertiesProperty = ThingTypePropertiesProperty.builder()
         .searchableAttributes(List.of("searchableAttributes"))
         .thingTypeDescription("thingTypeDescription")
         .build();
 

See Also: