AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the AttachLoadBalancerToSubnets operation. Adds one or more subnets to the set of configured subnets for the specified load balancer.

The load balancer evenly distributes requests across all registered subnets. For more information, see Add or Remove Subnets for Your Load Balancer in a VPC in the Classic Load Balancers Guide.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingRequest
      Amazon.ElasticLoadBalancing.Model.AttachLoadBalancerToSubnetsRequest

Namespace: Amazon.ElasticLoadBalancing.Model
Assembly: AWSSDK.ElasticLoadBalancing.dll
Version: 3.x.y.z

Syntax

C#
public class AttachLoadBalancerToSubnetsRequest : AmazonElasticLoadBalancingRequest
         IAmazonWebServiceRequest

The AttachLoadBalancerToSubnetsRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property LoadBalancerName System.String

Gets and sets the property LoadBalancerName.

The name of the load balancer.

Public Property Subnets System.Collections.Generic.List<System.String>

Gets and sets the property Subnets.

The IDs of the subnets to add. You can add only one subnet per Availability Zone.

Examples

This example adds the specified subnet to the set of configured subnets for the specified load balancer.

To attach subnets to a load balancer


var client = new AmazonElasticLoadBalancingClient();
var response = client.AttachLoadBalancerToSubnets(new AttachLoadBalancerToSubnetsRequest 
{
    LoadBalancerName = "my-load-balancer",
    Subnets = new List<string> {
        "subnet-0ecac448"
    }
});

List<string> subnets = response.Subnets;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5