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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnThingType.ThingTypePropertiesProperty
static final class
An implementation forCfnThingType.ThingTypePropertiesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSearchableAttributes
A list of searchable thing attribute names. -
getThingTypeDescription
The description of the thing type. -
builder
-