#[non_exhaustive]pub struct AwsElbv2LoadBalancerAttribute {
pub key: Option<String>,
pub value: Option<String>,
}
Expand description
A load balancer attribute.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.key: Option<String>
The name of the load balancer attribute.
value: Option<String>
The value of the load balancer attribute.
Implementations§
source§impl AwsElbv2LoadBalancerAttribute
impl AwsElbv2LoadBalancerAttribute
sourcepub fn builder() -> AwsElbv2LoadBalancerAttributeBuilder
pub fn builder() -> AwsElbv2LoadBalancerAttributeBuilder
Creates a new builder-style object to manufacture AwsElbv2LoadBalancerAttribute
.
Trait Implementations§
source§impl Clone for AwsElbv2LoadBalancerAttribute
impl Clone for AwsElbv2LoadBalancerAttribute
source§fn clone(&self) -> AwsElbv2LoadBalancerAttribute
fn clone(&self) -> AwsElbv2LoadBalancerAttribute
Returns a copy 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 PartialEq for AwsElbv2LoadBalancerAttribute
impl PartialEq for AwsElbv2LoadBalancerAttribute
source§fn eq(&self, other: &AwsElbv2LoadBalancerAttribute) -> bool
fn eq(&self, other: &AwsElbv2LoadBalancerAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsElbv2LoadBalancerAttribute
Auto Trait Implementations§
impl RefUnwindSafe for AwsElbv2LoadBalancerAttribute
impl Send for AwsElbv2LoadBalancerAttribute
impl Sync for AwsElbv2LoadBalancerAttribute
impl Unpin for AwsElbv2LoadBalancerAttribute
impl UnwindSafe for AwsElbv2LoadBalancerAttribute
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.