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 listeners or the listeners for the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer. You must specify either a load balancer or one or more listeners.

Note:

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

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

Syntax

C#
public virtual DescribeListenersResponse DescribeListeners(
         DescribeListenersRequest request
)

Parameters

request
Type: Amazon.ElasticLoadBalancingV2.Model.DescribeListenersRequest

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

Return Value


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

Exceptions

ExceptionCondition
ListenerNotFoundException The specified listener does not exist.
LoadBalancerNotFoundException The specified load balancer does not exist.
UnsupportedProtocolException The specified protocol is not supported.

Examples

This example describes the specified listener.

To describe a listener


var client = new AmazonElasticLoadBalancingV2Client();
var response = client.DescribeListeners(new DescribeListenersRequest 
{
    ListenerArns = new List<string> {
        "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2"
    }
});

List<Listener> listeners = response.Listeners;

            

Version Information

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

See Also