AWSIoTThingTypeProperties
Objective-C
@interface AWSIoTThingTypeProperties
Swift
class AWSIoTThingTypeProperties
The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.
-
A list of searchable thing attribute names.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable searchableAttributes;
Swift
var searchableAttributes: [String]? { get set }
-
The description of the thing type.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingTypeDescription;
Swift
var thingTypeDescription: String? { get set }