Describe Load Balancers
elbv2_describe_load_balancers | R Documentation |
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. |
Value¶
A list with the following syntax:
list(
LoadBalancers = list(
list(
LoadBalancerArn = "string",
DNSName = "string",
CanonicalHostedZoneId = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LoadBalancerName = "string",
Scheme = "internet-facing"|"internal",
VpcId = "string",
State = list(
Code = "active"|"provisioning"|"active_impaired"|"failed",
Reason = "string"
),
Type = "application"|"network"|"gateway",
AvailabilityZones = list(
list(
ZoneName = "string",
SubnetId = "string",
OutpostId = "string",
LoadBalancerAddresses = list(
list(
IpAddress = "string",
AllocationId = "string",
PrivateIPv4Address = "string",
IPv6Address = "string"
)
),
SourceNatIpv6Prefixes = list(
"string"
)
)
),
SecurityGroups = list(
"string"
),
IpAddressType = "ipv4"|"dualstack"|"dualstack-without-public-ipv4",
CustomerOwnedIpv4Pool = "string",
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic = "string",
EnablePrefixForIpv6SourceNat = "on"|"off"
)
),
NextMarker = "string"
)
Request syntax¶
svc$describe_load_balancers(
LoadBalancerArns = list(
"string"
),
Names = list(
"string"
),
Marker = "string",
PageSize = 123
)
Examples¶
## Not run:
# This example describes the specified load balancer.
svc$describe_load_balancers(
LoadBalancerArns = list(
"arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/m..."
)
)
## End(Not run)