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.

Describes the specified policies.

If you specify a load balancer name, the action returns the descriptions of all policies created for the load balancer. If you specify a policy name associated with your load balancer, the action returns the description of that policy. If you don't specify a load balancer name, the action returns descriptions of the specified sample policies, or descriptions of all sample policies. The names of the sample policies have the ELBSample- prefix.

Note:

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

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

Syntax

C#
public abstract DescribeLoadBalancerPoliciesResponse DescribeLoadBalancerPolicies(
         DescribeLoadBalancerPoliciesRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancerPoliciesRequest

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

Return Value


The response from the DescribeLoadBalancerPolicies service method, as returned by ElasticLoadBalancing.

Exceptions

ExceptionCondition
AccessPointNotFoundException The specified load balancer does not exist.
PolicyNotFoundException One or more of the specified policies do not exist.

Examples

This example describes the specified policy associated with the specified load balancer.

To describe a policy associated with a load balancer


var client = new AmazonElasticLoadBalancingClient();
var response = client.DescribeLoadBalancerPolicies(new DescribeLoadBalancerPoliciesRequest 
{
    LoadBalancerName = "my-load-balancer",
    PolicyNames = new List<string> {
        "my-authentication-policy"
    }
});

List<PolicyDescription> policyDescriptions = response.PolicyDescriptions;

            

Version Information

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

See Also