Show / Hide Table of Contents

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-thingtypeproperties.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-thingtypeproperties.html#cfn-iot-thingtype-thingtypeproperties-searchableattributes

ThingTypeDescription

The description of the thing type.

virtual string ThingTypeDescription { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thingtype-thingtypeproperties.html#cfn-iot-thingtype-thingtypeproperties-thingtypedescription

Back to top Generated by DocFX