AWSAutoScalingAttachTrafficSourcesType

Objective-C

@interface AWSAutoScalingAttachTrafficSourcesType

Swift

class AWSAutoScalingAttachTrafficSourcesType
  • The name of the Auto Scaling group.

    Declaration

    Objective-C

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

    Swift

    var autoScalingGroupName: String? { get set }
  • The unique identifiers of one or more traffic sources. You can specify up to 10 traffic sources.

    Currently, you must specify an Amazon Resource Name (ARN) for an existing VPC Lattice target group. Amazon EC2 Auto Scaling registers the running instances with the attached target groups. The target groups receive incoming traffic and route requests to one or more registered targets.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSAutoScalingTrafficSourceIdentifier *> *_Nullable trafficSources;

    Swift

    var trafficSources: [AWSAutoScalingTrafficSourceIdentifier]? { get set }