paws.management (version 0.1.0)

autoscaling_attach_load_balancer_target_groups: Attaches one or more target groups to the specified Auto Scaling group

Description

Attaches one or more target groups to the specified Auto Scaling group.

Usage

autoscaling_attach_load_balancer_target_groups(AutoScalingGroupName,
  TargetGroupARNs)

Arguments

AutoScalingGroupName

[required] The name of the Auto Scaling group.

TargetGroupARNs

[required] The Amazon Resource Names (ARN) of the target groups. You can specify up to 10 target groups.

Request syntax

svc$attach_load_balancer_target_groups(
  AutoScalingGroupName = "string",
  TargetGroupARNs = list(
    "string"
  )
)

Details

To describe the target groups for an Auto Scaling group, use DescribeLoadBalancerTargetGroups. To detach the target group from the Auto Scaling group, use DetachLoadBalancerTargetGroups.

With Application Load Balancers and Network Load Balancers, instances are registered as targets with a target group. With Classic Load Balancers, instances are registered with the load balancer. For more information, see Attaching a Load Balancer to Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

Examples

Run this code
# NOT RUN {
# This example attaches the specified target group to the specified Auto
# Scaling group.
# }
# NOT RUN {
svc$attach_load_balancer_target_groups(
  AutoScalingGroupName = "my-auto-scaling-group",
  TargetGroupARNs = list(
    "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8..."
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab