paws.networking (version 0.1.6)

elbv2_describe_listeners: Describes the specified listeners or the listeners for the specified Application Load Balancer or Network Load Balancer

Description

Describes the specified listeners or the listeners for the specified Application Load Balancer or Network Load Balancer. You must specify either a load balancer or one or more listeners.

Usage

elbv2_describe_listeners(LoadBalancerArn, ListenerArns, Marker,
  PageSize)

Arguments

LoadBalancerArn

The Amazon Resource Name (ARN) of the load balancer.

ListenerArns

The Amazon Resource Names (ARN) of the listeners.

Marker

The marker for the next set of results. (You received this marker from a previous call.)

PageSize

The maximum number of results to return with this call.

Request syntax

svc$describe_listeners(
  LoadBalancerArn = "string",
  ListenerArns = list(
    "string"
  ),
  Marker = "string",
  PageSize = 123
)

Details

For an HTTPS or TLS listener, the output includes the default certificate for the listener. To describe the certificate list for the listener, use DescribeListenerCertificates.

Examples

Run this code
# NOT RUN {
# This example describes the specified listener.
# }
# NOT RUN {
svc$describe_listeners(
  ListenerArns = list(
    "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6..."
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab