Struct aws_sdk_elasticloadbalancingv2::types::Limit
source · #[non_exhaustive]pub struct Limit {
pub name: Option<String>,
pub max: Option<String>,
}
Expand description
Information about an Elastic Load Balancing resource limit for your Amazon Web Services account.
For more information, see the following:
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the limit. The possible values are:
-
application-load-balancers
-
condition-values-per-alb-rule
-
condition-wildcards-per-alb-rule
-
gateway-load-balancers
-
gateway-load-balancers-per-vpc
-
geneve-target-groups
-
listeners-per-application-load-balancer
-
listeners-per-network-load-balancer
-
network-load-balancers
-
rules-per-application-load-balancer
-
target-groups
-
target-groups-per-action-on-application-load-balancer
-
target-groups-per-action-on-network-load-balancer
-
target-groups-per-application-load-balancer
-
targets-per-application-load-balancer
-
targets-per-availability-zone-per-gateway-load-balancer
-
targets-per-availability-zone-per-network-load-balancer
-
targets-per-network-load-balancer
max: Option<String>
The maximum value of the limit.
Implementations§
source§impl Limit
impl Limit
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the limit. The possible values are:
-
application-load-balancers
-
condition-values-per-alb-rule
-
condition-wildcards-per-alb-rule
-
gateway-load-balancers
-
gateway-load-balancers-per-vpc
-
geneve-target-groups
-
listeners-per-application-load-balancer
-
listeners-per-network-load-balancer
-
network-load-balancers
-
rules-per-application-load-balancer
-
target-groups
-
target-groups-per-action-on-application-load-balancer
-
target-groups-per-action-on-network-load-balancer
-
target-groups-per-application-load-balancer
-
targets-per-application-load-balancer
-
targets-per-availability-zone-per-gateway-load-balancer
-
targets-per-availability-zone-per-network-load-balancer
-
targets-per-network-load-balancer
Trait Implementations§
source§impl PartialEq for Limit
impl PartialEq for Limit
impl StructuralPartialEq for Limit
Auto Trait Implementations§
impl Freeze for Limit
impl RefUnwindSafe for Limit
impl Send for Limit
impl Sync for Limit
impl Unpin for Limit
impl UnwindSafe for Limit
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more