AWSIoTAssetPropertyValue
Objective-C
@interface AWSIoTAssetPropertyValue
Swift
class AWSIoTAssetPropertyValue
An asset property value entry containing the following information.
Required parameters: [value, timestamp]
-
Optional. A string that describes the quality of the value. Accepts substitution templates. Must be
GOOD
,BAD
, orUNCERTAIN
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable quality;
Swift
var quality: String? { get set }
-
The asset property value timestamp.
Declaration
Objective-C
@property (nonatomic, strong) AWSIoTAssetPropertyTimestamp *_Nullable timestamp;
Swift
var timestamp: AWSIoTAssetPropertyTimestamp? { get set }
-
The value of the asset property.
Declaration
Objective-C
@property (nonatomic, strong) AWSIoTAssetPropertyVariant *_Nullable value;
Swift
var value: AWSIoTAssetPropertyVariant? { get set }