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]

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

impl Debug for LBCookieStickinessPolicy
[src]

Formats the value using the given formatter. Read more

impl Clone for LBCookieStickinessPolicy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LBCookieStickinessPolicy
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations