AWSIoTThingAttribute
Objective-C
@interface AWSIoTThingAttribute
Swift
class AWSIoTThingAttribute
The properties of the thing, including thing name, thing type name, and a list of thing attributes.
-
A list of thing attributes which are name-value pairs.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable attributes;Swift
var attributes: [String : String]? { get set } -
The thing ARN.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingArn;Swift
var thingArn: String? { get set } -
The name of the thing.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingName;Swift
var thingName: String? { get set } -
The name of the thing type, if the thing has been associated with a type.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingTypeName;Swift
var thingTypeName: String? { get set } -
The version of the thing record in the registry.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable version;Swift
var version: NSNumber? { get set }
View on GitHub
Install in Dash
AWSIoTThingAttribute Class Reference