paws.networking (version 0.1.6)

elbv2_describe_load_balancers: Describes the specified load balancers or all of your load balancers

Description

Describes the specified load balancers or all of your load balancers.

Usage

elbv2_describe_load_balancers(LoadBalancerArns, Names, Marker, PageSize)

Arguments

LoadBalancerArns

The Amazon Resource Names (ARN) of the load balancers. You can specify up to 20 load balancers in a single call.

Names

The names of the load balancers.

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_load_balancers(
  LoadBalancerArns = list(
    "string"
  ),
  Names = list(
    "string"
  ),
  Marker = "string",
  PageSize = 123
)

Details

To describe the listeners for a load balancer, use DescribeListeners. To describe the attributes for a load balancer, use DescribeLoadBalancerAttributes.

Examples

Run this code
# NOT RUN {
# This example describes the specified load balancer.
# }
# NOT RUN {
svc$describe_load_balancers(
  LoadBalancerArns = list(
    "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/5..."
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab