#[non_exhaustive]pub struct AwsElbLoadBalancerPolicies {
pub app_cookie_stickiness_policies: Option<Vec<AwsElbAppCookieStickinessPolicy>>,
pub lb_cookie_stickiness_policies: Option<Vec<AwsElbLbCookieStickinessPolicy>>,
pub other_policies: Option<Vec<String>>,
}
Expand description
Contains information about the policies for a load balancer.
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.The stickiness policies that are created using CreateAppCookieStickinessPolicy
.
The stickiness policies that are created using CreateLBCookieStickinessPolicy
.
other_policies: Option<Vec<String>>
The policies other than the stickiness policies.
Implementations
sourceimpl AwsElbLoadBalancerPolicies
impl AwsElbLoadBalancerPolicies
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsElbLoadBalancerPolicies
Trait Implementations
sourceimpl Clone for AwsElbLoadBalancerPolicies
impl Clone for AwsElbLoadBalancerPolicies
sourcefn clone(&self) -> AwsElbLoadBalancerPolicies
fn clone(&self) -> AwsElbLoadBalancerPolicies
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AwsElbLoadBalancerPolicies
impl Debug for AwsElbLoadBalancerPolicies
sourceimpl PartialEq<AwsElbLoadBalancerPolicies> for AwsElbLoadBalancerPolicies
impl PartialEq<AwsElbLoadBalancerPolicies> for AwsElbLoadBalancerPolicies
sourcefn eq(&self, other: &AwsElbLoadBalancerPolicies) -> bool
fn eq(&self, other: &AwsElbLoadBalancerPolicies) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AwsElbLoadBalancerPolicies) -> bool
fn ne(&self, other: &AwsElbLoadBalancerPolicies) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsElbLoadBalancerPolicies
Auto Trait Implementations
impl RefUnwindSafe for AwsElbLoadBalancerPolicies
impl Send for AwsElbLoadBalancerPolicies
impl Sync for AwsElbLoadBalancerPolicies
impl Unpin for AwsElbLoadBalancerPolicies
impl UnwindSafe for AwsElbLoadBalancerPolicies
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more