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.

Enables the Availability Zones for the specified public subnets for the specified Application Load Balancer, Network Load Balancer or Gateway Load Balancer. The specified subnets replace the previously enabled subnets.

When you specify subnets for a Network Load Balancer, or Gateway Load Balancer you must include all subnets that were enabled previously, with their existing configurations, plus any additional subnets.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to SetSubnetsAsync.

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

Syntax

C#
public abstract SetSubnetsResponse SetSubnets(
         SetSubnetsRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancingV2.Model.SetSubnetsRequest

Container for the necessary parameters to execute the SetSubnets service method.

Return Value


The response from the SetSubnets service method, as returned by ElasticLoadBalancingV2.

Exceptions

ExceptionCondition
AllocationIdNotFoundException The specified allocation ID does not exist.
AvailabilityZoneNotSupportedException The specified Availability Zone is not supported.
InvalidConfigurationRequestException The requested configuration is not valid.
InvalidSubnetException The specified subnet is out of available addresses.
LoadBalancerNotFoundException The specified load balancer does not exist.
SubnetNotFoundException The specified subnet does not exist.

Examples

This example enables the Availability Zones for the specified subnets for the specified load balancer.

To enable Availability Zones for a load balancer


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.SetSubnets(new SetSubnetsRequest 
{
    LoadBalancerArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
    Subnets = new List<string> {
        "subnet-8360a9e7",
        "subnet-b7d581c0"
    }
});

List<AvailabilityZone> availabilityZones = response.AvailabilityZones;

            

Version Information

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

See Also