Struct rusoto_elb::LBCookieStickinessPolicy [] [src]

pub struct LBCookieStickinessPolicy {
    pub cookie_expiration_period: Option<i64>,
    pub policy_name: Option<String>,
}

Information about a policy for duration-based session stickiness.

Fields

The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session.

The name of the policy. This name must be unique within the set of policies for this load balancer.

Trait Implementations

impl Default for LBCookieStickinessPolicy
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for LBCookieStickinessPolicy
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LBCookieStickinessPolicy
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations