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 CreateLoadBalancer operation. Creates a Classic Load Balancer.

You can add listeners, security groups, subnets, and tags when you create your load balancer, or you can add them later using CreateLoadBalancerListeners, ApplySecurityGroupsToLoadBalancer, AttachLoadBalancerToSubnets, and AddTags.

To describe your current load balancers, see DescribeLoadBalancers. When you are finished with a load balancer, you can delete it using DeleteLoadBalancer.

You can create up to 20 load balancers per region per account. You can request an increase for the number of load balancers for your account. For more information, see Limits for Your Classic Load Balancer in the Classic Load Balancers Guide.

Inheritance Hierarchy

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

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

Syntax

C#
public class CreateLoadBalancerRequest : AmazonElasticLoadBalancingRequest
         IAmazonWebServiceRequest

The CreateLoadBalancerRequest type exposes the following members

Constructors

NameDescription
Public Method CreateLoadBalancerRequest()

Empty constructor used to set properties independently even when a simple constructor is available

Public Method CreateLoadBalancerRequest(string)

Instantiates CreateLoadBalancerRequest with the parameterized properties

Public Method CreateLoadBalancerRequest(string, List<Listener>, List<String>)

Instantiates CreateLoadBalancerRequest with the parameterized properties

Properties

NameTypeDescription
Public Property AvailabilityZones System.Collections.Generic.List<System.String>

Gets and sets the property AvailabilityZones.

One or more Availability Zones from the same region as the load balancer.

You must specify at least one Availability Zone.

You can add more Availability Zones after you create the load balancer using EnableAvailabilityZonesForLoadBalancer.

Public Property Listeners System.Collections.Generic.List<Amazon.ElasticLoadBalancing.Model.Listener>

Gets and sets the property Listeners.

The listeners.

For more information, see Listeners for Your Classic Load Balancer in the Classic Load Balancers Guide.

Public Property LoadBalancerName System.String

Gets and sets the property LoadBalancerName.

The name of the load balancer.

This name must be unique within your set of load balancers for the region, must have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and cannot begin or end with a hyphen.

Public Property Scheme System.String

Gets and sets the property Scheme.

The type of a load balancer. Valid only for load balancers in a VPC.

By default, Elastic Load Balancing creates an Internet-facing load balancer with a DNS name that resolves to public IP addresses. For more information about Internet-facing and Internal load balancers, see Load Balancer Scheme in the Elastic Load Balancing User Guide.

Specify internal to create a load balancer with a DNS name that resolves to private IP addresses.

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

Gets and sets the property SecurityGroups.

The IDs of the security groups to assign to the load balancer.

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

Gets and sets the property Subnets.

The IDs of the subnets in your VPC to attach to the load balancer. Specify one subnet per Availability Zone specified in AvailabilityZones.

Public Property Tags System.Collections.Generic.List<Amazon.ElasticLoadBalancing.Model.Tag>

Gets and sets the property Tags.

A list of tags to assign to the load balancer.

For more information about tagging your load balancer, see Tag Your Classic Load Balancer in the Classic Load Balancers Guide.

Examples

This example creates a load balancer with an HTTP listener in a VPC.

To create an HTTP load balancer in a VPC


var client = new AmazonElasticLoadBalancingClient();
var response = client.CreateLoadBalancer(new CreateLoadBalancerRequest 
{
    Listeners = new List<Listener> {
        new Listener {
            InstancePort = 80,
            InstanceProtocol = "HTTP",
            LoadBalancerPort = 80,
            Protocol = "HTTP"
        }
    },
    LoadBalancerName = "my-load-balancer",
    SecurityGroups = new List<string> {
        "sg-a61988c3"
    },
    Subnets = new List<string> {
        "subnet-15aaab61"
    }
});

string dnsName = response.DNSName;

            

This example creates a load balancer with an HTTP listener in EC2-Classic.

To create an HTTP load balancer in EC2-Classic


var client = new AmazonElasticLoadBalancingClient();
var response = client.CreateLoadBalancer(new CreateLoadBalancerRequest 
{
    AvailabilityZones = new List<string> {
        "us-west-2a"
    },
    Listeners = new List<Listener> {
        new Listener {
            InstancePort = 80,
            InstanceProtocol = "HTTP",
            LoadBalancerPort = 80,
            Protocol = "HTTP"
        }
    },
    LoadBalancerName = "my-load-balancer"
});

string dnsName = response.DNSName;

            

This example creates a load balancer with an HTTPS listener in a VPC.

To create an HTTPS load balancer in a VPC


var client = new AmazonElasticLoadBalancingClient();
var response = client.CreateLoadBalancer(new CreateLoadBalancerRequest 
{
    Listeners = new List<Listener> {
        new Listener {
            InstancePort = 80,
            InstanceProtocol = "HTTP",
            LoadBalancerPort = 80,
            Protocol = "HTTP"
        },
        new Listener {
            InstancePort = 80,
            InstanceProtocol = "HTTP",
            LoadBalancerPort = 443,
            Protocol = "HTTPS",
            SSLCertificateId = "arn:aws:iam::123456789012:server-certificate/my-server-cert"
        }
    },
    LoadBalancerName = "my-load-balancer",
    SecurityGroups = new List<string> {
        "sg-a61988c3"
    },
    Subnets = new List<string> {
        "subnet-15aaab61"
    }
});

string dnsName = response.DNSName;

            

This example creates a load balancer with an HTTPS listener in EC2-Classic.

To create an HTTPS load balancer in EC2-Classic


var client = new AmazonElasticLoadBalancingClient();
var response = client.CreateLoadBalancer(new CreateLoadBalancerRequest 
{
    AvailabilityZones = new List<string> {
        "us-west-2a"
    },
    Listeners = new List<Listener> {
        new Listener {
            InstancePort = 80,
            InstanceProtocol = "HTTP",
            LoadBalancerPort = 80,
            Protocol = "HTTP"
        },
        new Listener {
            InstancePort = 80,
            InstanceProtocol = "HTTP",
            LoadBalancerPort = 443,
            Protocol = "HTTPS",
            SSLCertificateId = "arn:aws:iam::123456789012:server-certificate/my-server-cert"
        }
    },
    LoadBalancerName = "my-load-balancer"
});

string dnsName = response.DNSName;

            

This example creates an internal load balancer with an HTTP listener in a VPC.

To create an internal load balancer


var client = new AmazonElasticLoadBalancingClient();
var response = client.CreateLoadBalancer(new CreateLoadBalancerRequest 
{
    Listeners = new List<Listener> {
        new Listener {
            InstancePort = 80,
            InstanceProtocol = "HTTP",
            LoadBalancerPort = 80,
            Protocol = "HTTP"
        }
    },
    LoadBalancerName = "my-load-balancer",
    Scheme = "internal",
    SecurityGroups = new List<string> {
        "sg-a61988c3"
    },
    Subnets = new List<string> {
        "subnet-15aaab61"
    }
});

string dnsName = response.DNSName;

            

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