pub struct AwsElbv2LoadBalancerDetails {
pub availability_zones: Option<Vec<AvailabilityZone>>,
pub canonical_hosted_zone_id: Option<String>,
pub created_time: Option<String>,
pub dns_name: Option<String>,
pub ip_address_type: Option<String>,
pub scheme: Option<String>,
pub security_groups: Option<Vec<String>>,
pub state: Option<LoadBalancerState>,
pub type_: Option<String>,
pub vpc_id: Option<String>,
}Expand description
Information about a load balancer.
Fields§
§availability_zones: Option<Vec<AvailabilityZone>>The Availability Zones for the load balancer.
canonical_hosted_zone_id: Option<String>The ID of the Amazon Route 53 hosted zone associated with the load balancer.
created_time: Option<String>The date and time the load balancer was created.
dns_name: Option<String>The public DNS name of the load balancer.
ip_address_type: Option<String>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).
scheme: Option<String>The nodes of an Internet-facing load balancer have public IP addresses.
security_groups: Option<Vec<String>>The IDs of the security groups for the load balancer.
state: Option<LoadBalancerState>The state of the load balancer.
type_: Option<String>The type of load balancer.
vpc_id: Option<String>The ID of the VPC for the load balancer.
Trait Implementations§
Source§impl Clone for AwsElbv2LoadBalancerDetails
impl Clone for AwsElbv2LoadBalancerDetails
Source§fn clone(&self) -> AwsElbv2LoadBalancerDetails
fn clone(&self) -> AwsElbv2LoadBalancerDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AwsElbv2LoadBalancerDetails
impl Debug for AwsElbv2LoadBalancerDetails
Source§impl Default for AwsElbv2LoadBalancerDetails
impl Default for AwsElbv2LoadBalancerDetails
Source§fn default() -> AwsElbv2LoadBalancerDetails
fn default() -> AwsElbv2LoadBalancerDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsElbv2LoadBalancerDetails
impl<'de> Deserialize<'de> for AwsElbv2LoadBalancerDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AwsElbv2LoadBalancerDetails
Auto Trait Implementations§
impl Freeze for AwsElbv2LoadBalancerDetails
impl RefUnwindSafe for AwsElbv2LoadBalancerDetails
impl Send for AwsElbv2LoadBalancerDetails
impl Sync for AwsElbv2LoadBalancerDetails
impl Unpin for AwsElbv2LoadBalancerDetails
impl UnwindSafe for AwsElbv2LoadBalancerDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more