attachTrafficSources

Attaches one or more traffic sources to the specified Auto Scaling group.

You can use any of the following as traffic sources for an Auto Scaling group:

  • Application Load Balancer

  • Classic Load Balancer

  • Gateway Load Balancer

  • Network Load Balancer

  • VPC Lattice

This operation is additive and does not detach existing traffic sources from the Auto Scaling group.

After the operation completes, use the DescribeTrafficSources API to return details about the state of the attachments between traffic sources and your Auto Scaling group. To detach a traffic source from the Auto Scaling group, call the DetachTrafficSources API.

Samples

import aws.sdk.kotlin.services.autoscaling.model.TrafficSourceIdentifier
fun main() { 
   //sampleStart 
   // This example attaches the specified target group to the specified Auto Scaling group.
val resp = autoScalingClient.attachTrafficSources {
    autoScalingGroupName = "my-auto-scaling-group"
    trafficSources = listOf<TrafficSourceIdentifier>(
        TrafficSourceIdentifier {
            identifier = "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"
        }            
    )
} 
   //sampleEnd
}