AWSAutoScalingTagDescription
Objective-C
@interface AWSAutoScalingTagDescription
Swift
class AWSAutoScalingTagDescription
Describes a tag for an Auto Scaling group.
-
The tag key.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable key;
Swift
var key: String? { get set }
-
Determines whether the tag is added to new instances as they are launched in the group.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable propagateAtLaunch;
Swift
var propagateAtLaunch: NSNumber? { get set }
-
The name of the group.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable resourceId;
Swift
var resourceId: String? { get set }
-
The type of resource. The only supported value is
auto-scaling-group
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable resourceType;
Swift
var resourceType: String? { get set }
-
The tag value.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable value;
Swift
var value: String? { get set }