AWSEC2DeregisterInstanceTagAttributeRequest
Objective-C
@interface AWSEC2DeregisterInstanceTagAttributeRequest
Swift
class AWSEC2DeregisterInstanceTagAttributeRequest
Information about the tag keys to deregister for the current Region. You can either specify individual tag keys or deregister all tag keys in the current Region. You must specify either IncludeAllTagsOfInstance
or InstanceTagKeys
in the request
-
Indicates whether to deregister all tag keys in the current Region. Specify
false
to deregister all tag keys.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable includeAllTagsOfInstance;
Swift
var includeAllTagsOfInstance: NSNumber? { get set }
-
Information about the tag keys to deregister.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable instanceTagKeys;
Swift
var instanceTagKeys: [String]? { get set }