Struct rusoto_elb::AppCookieStickinessPolicy[][src]

pub struct AppCookieStickinessPolicy {
    pub cookie_name: Option<String>,
    pub policy_name: Option<String>,
}

Information about a policy for application-controlled session stickiness.

Fields

The name of the application cookie used for stickiness.

The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer.

Trait Implementations

impl Default for AppCookieStickinessPolicy
[src]

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

impl Debug for AppCookieStickinessPolicy
[src]

Formats the value using the given formatter. Read more

impl Clone for AppCookieStickinessPolicy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AppCookieStickinessPolicy
[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