AWSIoTAddThingToThingGroupRequest
Objective-C
@interface AWSIoTAddThingToThingGroupRequest
Swift
class AWSIoTAddThingToThingGroupRequest
-
Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable overrideDynamicGroups;
Swift
var overrideDynamicGroups: NSNumber? { get set }
-
The ARN of the thing to add to a group.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingArn;
Swift
var thingArn: String? { get set }
-
The ARN of the group to which you are adding a thing.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingGroupArn;
Swift
var thingGroupArn: String? { get set }
-
The name of the group to which you are adding a thing.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingGroupName;
Swift
var thingGroupName: String? { get set }
-
The name of the thing to add to a group.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable thingName;
Swift
var thingName: String? { get set }