Skip to content

Describe Load Balancer Attributes

elbv2_describe_load_balancer_attributes R Documentation

Describes the attributes for the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer

Description

Describes the attributes for the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer.

For more information, see the following:

Usage

elbv2_describe_load_balancer_attributes(LoadBalancerArn)

Arguments

LoadBalancerArn

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

Value

A list with the following syntax:

list(
  Attributes = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Request syntax

svc$describe_load_balancer_attributes(
  LoadBalancerArn = "string"
)

Examples

## Not run: 
# This example describes the attributes of the specified load balancer.
svc$describe_load_balancer_attributes(
  LoadBalancerArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:lo..."
)

## End(Not run)