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 DetachLoadBalancerFromSubnets operation. Removes the specified subnets from the set of configured subnets for the load balancer.

After a subnet is removed, all EC2 instances registered with the load balancer in the removed subnet go into the OutOfService state. Then, the load balancer balances the traffic among the remaining routable subnets.

Inheritance Hierarchy

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

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

Syntax

C#
public class DetachLoadBalancerFromSubnetsRequest : AmazonElasticLoadBalancingRequest
         IAmazonWebServiceRequest

The DetachLoadBalancerFromSubnetsRequest 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.

Examples

This example detaches the specified load balancer from the specified subnet.

To detach a load balancer from a subnet


var client = new AmazonElasticLoadBalancingClient();
var response = client.DetachLoadBalancerFromSubnets(new DetachLoadBalancerFromSubnetsRequest 
{
    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