AWSAutoScalingTag

Objective-C

@interface AWSAutoScalingTag

Swift

class AWSAutoScalingTag

Describes a tag for an Auto Scaling group.

Required parameters: [Key]

  • key

    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 Auto Scaling 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 }