#[non_exhaustive]pub struct CreateLbCookieStickinessPolicyInput { /* private fields */ }
Expand description
Contains the parameters for CreateLBCookieStickinessPolicy.
Implementations
sourceimpl CreateLbCookieStickinessPolicyInput
impl CreateLbCookieStickinessPolicyInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateLBCookieStickinessPolicy, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateLBCookieStickinessPolicy, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateLBCookieStickinessPolicy
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateLbCookieStickinessPolicyInput
.
sourceimpl CreateLbCookieStickinessPolicyInput
impl CreateLbCookieStickinessPolicyInput
sourcepub fn load_balancer_name(&self) -> Option<&str>
pub fn load_balancer_name(&self) -> Option<&str>
The name of the load balancer.
sourcepub fn policy_name(&self) -> Option<&str>
pub fn policy_name(&self) -> Option<&str>
The name of the policy being created. Policy names must consist of alphanumeric characters and dashes (-). This name must be unique within the set of policies for this load balancer.
The time period, in seconds, after which the cookie should be considered stale. If you do not specify this parameter, the default value is 0, which indicates that the sticky session should last for the duration of the browser session.
Trait Implementations
sourceimpl Clone for CreateLbCookieStickinessPolicyInput
impl Clone for CreateLbCookieStickinessPolicyInput
sourcefn clone(&self) -> CreateLbCookieStickinessPolicyInput
fn clone(&self) -> CreateLbCookieStickinessPolicyInput
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 moresourceimpl PartialEq<CreateLbCookieStickinessPolicyInput> for CreateLbCookieStickinessPolicyInput
impl PartialEq<CreateLbCookieStickinessPolicyInput> for CreateLbCookieStickinessPolicyInput
sourcefn eq(&self, other: &CreateLbCookieStickinessPolicyInput) -> bool
fn eq(&self, other: &CreateLbCookieStickinessPolicyInput) -> bool
impl StructuralPartialEq for CreateLbCookieStickinessPolicyInput
Auto Trait Implementations
impl RefUnwindSafe for CreateLbCookieStickinessPolicyInput
impl Send for CreateLbCookieStickinessPolicyInput
impl Sync for CreateLbCookieStickinessPolicyInput
impl Unpin for CreateLbCookieStickinessPolicyInput
impl UnwindSafe for CreateLbCookieStickinessPolicyInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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