AWSAutoScalingDetachInstancesQuery

Objective-C

@interface AWSAutoScalingDetachInstancesQuery

Swift

class AWSAutoScalingDetachInstancesQuery
  • The name of the Auto Scaling group.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable autoScalingGroupName;

    Swift

    var autoScalingGroupName: String? { get set }
  • The IDs of the instances. You can specify up to 20 instances.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable instanceIds;

    Swift

    var instanceIds: [String]? { get set }
  • Indicates whether the Auto Scaling group decrements the desired capacity value by the number of instances detached.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable shouldDecrementDesiredCapacity;

    Swift

    var shouldDecrementDesiredCapacity: NSNumber? { get set }