Learn R Programming

paws.networking (version 0.1.11)

elb_describe_load_balancer_attributes: Describes the attributes for the specified load balancer

Description

Describes the attributes for the specified load balancer.

Usage

elb_describe_load_balancer_attributes(LoadBalancerName)

Arguments

LoadBalancerName

[required] The name of the load balancer.

Value

A list with the following syntax:

list(
  LoadBalancerAttributes = list(
    CrossZoneLoadBalancing = list(
      Enabled = TRUE|FALSE
    ),
    AccessLog = list(
      Enabled = TRUE|FALSE,
      S3BucketName = "string",
      EmitInterval = 123,
      S3BucketPrefix = "string"
    ),
    ConnectionDraining = list(
      Enabled = TRUE|FALSE,
      Timeout = 123
    ),
    ConnectionSettings = list(
      IdleTimeout = 123
    ),
    AdditionalAttributes = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$describe_load_balancer_attributes(
  LoadBalancerName = "string"
)

Examples

Run this code
# NOT RUN {
# This example describes the attributes of the specified load balancer.
svc$describe_load_balancer_attributes(
  LoadBalancerName = "my-load-balancer"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab