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 SetLoadBalancerPoliciesOfListener operation. Replaces the current set of policies for the specified load balancer port with the specified set of policies.

To enable back-end server authentication, use SetLoadBalancerPoliciesForBackendServer.

For more information about setting policies, see Update the SSL Negotiation Configuration, Duration-Based Session Stickiness, and Application-Controlled Session Stickiness in the Classic Load Balancers Guide.

Inheritance Hierarchy

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

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

Syntax

C#
public class SetLoadBalancerPoliciesOfListenerRequest : AmazonElasticLoadBalancingRequest
         IAmazonWebServiceRequest

The SetLoadBalancerPoliciesOfListenerRequest type exposes the following members

Constructors

NameDescription
Public Method SetLoadBalancerPoliciesOfListenerRequest()

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

Public Method SetLoadBalancerPoliciesOfListenerRequest(string, int, List<String>)

Instantiates SetLoadBalancerPoliciesOfListenerRequest with the parameterized properties

Properties

NameTypeDescription
Public Property LoadBalancerName System.String

Gets and sets the property LoadBalancerName.

The name of the load balancer.

Public Property LoadBalancerPort System.Int32

Gets and sets the property LoadBalancerPort.

The external port of the load balancer.

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

Gets and sets the property PolicyNames.

The names of the policies. This list must include all policies to be enabled. If you omit a policy that is currently enabled, it is disabled. If the list is empty, all current policies are disabled.

Examples

This example replaces the policies that are currently associated with the specified listener.

To replace the policies associated with a listener


var client = new AmazonElasticLoadBalancingClient();
var response = client.SetLoadBalancerPoliciesOfListener(new SetLoadBalancerPoliciesOfListenerRequest 
{
    LoadBalancerName = "my-load-balancer",
    LoadBalancerPort = 80,
    PolicyNames = new List<string> {
        "my-SSLNegotiation-policy"
    }
});


            

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