AWSIoTAttributePayload
Objective-C
@interface AWSIoTAttributePayload
Swift
class AWSIoTAttributePayload
The attribute payload.
-
A JSON string containing up to three key-value pair in JSON format. For example:
{\"attributes\":{\"string1\":\"string2\"}}Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable attributes;Swift
var attributes: [String : String]? { get set } -
Specifies whether the list of attributes provided in the
AttributePayloadis merged with the attributes stored in the registry, instead of overwriting them.To remove an attribute, call
UpdateThingwith an empty attribute value.The
mergeattribute is only valid when callingUpdateThingorUpdateThingGroup.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable merge;Swift
var merge: NSNumber? { get set }
View on GitHub
Install in Dash
AWSIoTAttributePayload Class Reference