Describe Load Balancer Attributes
elb_describe_load_balancer_attributes | R Documentation |
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¶
## Not run:
# This example describes the attributes of the specified load balancer.
svc$describe_load_balancer_attributes(
LoadBalancerName = "my-load-balancer"
)
## End(Not run)