Interface CfnThingType.IThingTypePropertiesProperty
The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.AWS.IoT.dll
Syntax (csharp)
public interface IThingTypePropertiesProperty
Syntax (vb)
Public Interface IThingTypePropertiesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoT;
var thingTypePropertiesProperty = new ThingTypePropertiesProperty {
SearchableAttributes = new [] { "searchableAttributes" },
ThingTypeDescription = "thingTypeDescription"
};
Synopsis
Properties
SearchableAttributes | A list of searchable thing attribute names. |
ThingTypeDescription | The description of the thing type. |
Properties
SearchableAttributes
A list of searchable thing attribute names.
virtual string[] SearchableAttributes { get; }
Property Value
System.String[]
Remarks
ThingTypeDescription
The description of the thing type.
virtual string ThingTypeDescription { get; }
Property Value
System.String