aws-cdk-lib.aws_iot.CfnThingType.ThingTypePropertiesProperty

interface ThingTypePropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.IoT.CfnThingType.ThingTypePropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnThingType_ThingTypePropertiesProperty
Javasoftware.amazon.awscdk.services.iot.CfnThingType.ThingTypePropertiesProperty
Pythonaws_cdk.aws_iot.CfnThingType.ThingTypePropertiesProperty
TypeScript aws-cdk-lib » 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 { aws_iot as iot } from 'aws-cdk-lib';
const thingTypePropertiesProperty: iot.CfnThingType.ThingTypePropertiesProperty = {
  searchableAttributes: ['searchableAttributes'],
  thingTypeDescription: 'thingTypeDescription',
};

Properties

NameTypeDescription
searchableAttributes?string[]A list of searchable thing attribute names.
thingTypeDescription?stringThe 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.