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¶
Arguments¶
LoadBalancerArnsThe Amazon Resource Names (ARN) of the load balancers. You can specify up to 20 load balancers in a single call.
NamesThe names of the load balancers.
MarkerThe marker for the next set of results. (You received this marker from a previous call.)
PageSizeThe 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"
)
)
)
),
SecurityGroups = list(
"string"
),
IpAddressType = "ipv4"|"dualstack"|"dualstack-without-public-ipv4",
CustomerOwnedIpv4Pool = "string",
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic = "string"
)
),
NextMarker = "string"
)
Request syntax¶
svc$describe_load_balancers(
LoadBalancerArns = list(
"string"
),
Names = list(
"string"
),
Marker = "string",
PageSize = 123
)