interface ThingTypePropertiesProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoT.CfnThingType.ThingTypePropertiesProperty | 
  Java | software.amazon.awscdk.services.iot.CfnThingType.ThingTypePropertiesProperty | 
  Python | aws_cdk.aws_iot.CfnThingType.ThingTypePropertiesProperty | 
  TypeScript  | @aws-cdk/aws-iot » CfnThingType » ThingTypePropertiesProperty | 
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 * as iot from '@aws-cdk/aws-iot';
const thingTypePropertiesProperty: iot.CfnThingType.ThingTypePropertiesProperty = {
  searchableAttributes: ['searchableAttributes'],
  thingTypeDescription: 'thingTypeDescription',
};
Properties
| Name | Type | Description | 
|---|---|---|
| searchable | string[] | A list of searchable thing attribute names. | 
| thing | string | The description of the thing type. | 
searchableAttributes?
Type:
string[]
(optional)
A list of searchable thing attribute names.
thingTypeDescription?
Type:
string
(optional)
The description of the thing type.

 .NET
 Java
 Python
 TypeScript