[−][src]Struct rusoto_elb::LoadBalancerDescription
Information about a load balancer.
Fields
availability_zones: Option<Vec<String>>
The Availability Zones for the load balancer.
backend_server_descriptions: Option<Vec<BackendServerDescription>>
Information about your EC2 instances.
canonical_hosted_zone_name: Option<String>
The DNS name of the load balancer.
For more information, see Configure a Custom Domain Name in the Classic Load Balancers Guide.
canonical_hosted_zone_name_id: Option<String>
The ID of the Amazon Route 53 hosted zone for the load balancer.
created_time: Option<String>
The date and time the load balancer was created.
dns_name: Option<String>
The DNS name of the load balancer.
health_check: Option<HealthCheck>
Information about the health checks conducted on the load balancer.
instances: Option<Vec<Instance>>
The IDs of the instances for the load balancer.
listener_descriptions: Option<Vec<ListenerDescription>>
The listeners for the load balancer.
load_balancer_name: Option<String>
The name of the load balancer.
policies: Option<Policies>
The policies defined for the load balancer.
scheme: Option<String>
The type of load balancer. Valid only for load balancers in a VPC.
If Scheme
is internet-facing
, the load balancer has a public DNS name that resolves to a public IP address.
If Scheme
is internal
, the load balancer has a public DNS name that resolves to a private IP address.
security_groups: Option<Vec<String>>
The security groups for the load balancer. Valid only for load balancers in a VPC.
source_security_group: Option<SourceSecurityGroup>
The security group for the load balancer, which you can use as part of your inbound rules for your registered instances. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
subnets: Option<Vec<String>>
The IDs of the subnets for the load balancer.
vpc_id: Option<String>
The ID of the VPC for the load balancer.
Trait Implementations
impl PartialEq<LoadBalancerDescription> for LoadBalancerDescription
[src]
fn eq(&self, other: &LoadBalancerDescription) -> bool
[src]
fn ne(&self, other: &LoadBalancerDescription) -> bool
[src]
impl Default for LoadBalancerDescription
[src]
fn default() -> LoadBalancerDescription
[src]
impl Clone for LoadBalancerDescription
[src]
fn clone(&self) -> LoadBalancerDescription
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for LoadBalancerDescription
[src]
Auto Trait Implementations
impl Send for LoadBalancerDescription
impl Sync for LoadBalancerDescription
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self