Class CfnThingType.ThingTypePropertiesProperty
The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ThingTypePropertiesProperty : Object, CfnThingType.IThingTypePropertiesProperty
Syntax (vb)
Public Class ThingTypePropertiesProperty
Inherits Object
Implements CfnThingType.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 {
Mqtt5Configuration = new Mqtt5ConfigurationProperty {
PropagatingAttributes = new [] { new PropagatingAttributeProperty {
UserPropertyKey = "userPropertyKey",
// the properties below are optional
ConnectionAttribute = "connectionAttribute",
ThingAttribute = "thingAttribute"
} }
},
SearchableAttributes = new [] { "searchableAttributes" },
ThingTypeDescription = "thingTypeDescription"
};
Synopsis
Constructors
Thing |
Properties
Mqtt5Configuration | The configuration to add user-defined properties to enrich MQTT 5 messages. |
Searchable |
A list of searchable thing attribute names. |
Thing |
The description of the thing type. |
Constructors
ThingTypePropertiesProperty()
public ThingTypePropertiesProperty()
Properties
Mqtt5Configuration
The configuration to add user-defined properties to enrich MQTT 5 messages.
public object Mqtt5Configuration { get; set; }
Property Value
System.
Remarks
SearchableAttributes
A list of searchable thing attribute names.
public string[] SearchableAttributes { get; set; }
Property Value
System.
Remarks
ThingTypeDescription
The description of the thing type.
public string ThingTypeDescription { get; set; }
Property Value
System.