#[non_exhaustive]pub struct LoadBalancer { /* private fields */ }
Expand description
Information about a load balancer.
Implementations§
source§impl LoadBalancer
impl LoadBalancer
sourcepub fn load_balancer_arn(&self) -> Option<&str>
pub fn load_balancer_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the load balancer.
sourcepub fn canonical_hosted_zone_id(&self) -> Option<&str>
pub fn canonical_hosted_zone_id(&self) -> Option<&str>
The ID of the Amazon Route 53 hosted zone associated with the load balancer.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The date and time the load balancer was created.
sourcepub fn load_balancer_name(&self) -> Option<&str>
pub fn load_balancer_name(&self) -> Option<&str>
The name of the load balancer.
sourcepub fn scheme(&self) -> Option<&LoadBalancerSchemeEnum>
pub fn scheme(&self) -> Option<&LoadBalancerSchemeEnum>
The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet.
The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer.
sourcepub fn state(&self) -> Option<&LoadBalancerState>
pub fn state(&self) -> Option<&LoadBalancerState>
The state of the load balancer.
sourcepub fn type(&self) -> Option<&LoadBalancerTypeEnum>
pub fn type(&self) -> Option<&LoadBalancerTypeEnum>
The type of load balancer.
sourcepub fn availability_zones(&self) -> Option<&[AvailabilityZone]>
pub fn availability_zones(&self) -> Option<&[AvailabilityZone]>
The subnets for the load balancer.
sourcepub fn security_groups(&self) -> Option<&[String]>
pub fn security_groups(&self) -> Option<&[String]>
The IDs of the security groups for the load balancer.
sourcepub fn ip_address_type(&self) -> Option<&IpAddressType>
pub fn ip_address_type(&self) -> Option<&IpAddressType>
The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4
(for IPv4 addresses) and dualstack
(for IPv4 and IPv6 addresses).
sourcepub fn customer_owned_ipv4_pool(&self) -> Option<&str>
pub fn customer_owned_ipv4_pool(&self) -> Option<&str>
[Application Load Balancers on Outposts] The ID of the customer-owned address pool.
source§impl LoadBalancer
impl LoadBalancer
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LoadBalancer
.
Trait Implementations§
source§impl Clone for LoadBalancer
impl Clone for LoadBalancer
source§fn clone(&self) -> LoadBalancer
fn clone(&self) -> LoadBalancer
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LoadBalancer
impl Debug for LoadBalancer
source§impl PartialEq<LoadBalancer> for LoadBalancer
impl PartialEq<LoadBalancer> for LoadBalancer
source§fn eq(&self, other: &LoadBalancer) -> bool
fn eq(&self, other: &LoadBalancer) -> bool
self
and other
values to be equal, and is used
by ==
.