Module Values.AwsElbLbCookieStickinessPolicySource

Contains information about a stickiness policy that was created using CreateLBCookieStickinessPolicy.

Sourcetype nonrec t = {
  1. cookieExpirationPeriod : Long.t option;
    (*

    The amount of time, in seconds, after which the cookie is considered stale. If an expiration period is not specified, the stickiness session lasts for the duration of the browser session.

    *)
  2. policyName : NonEmptyString.t option;
    (*

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

    *)
}
Sourceval make : ?cookieExpirationPeriod:??? -> ?policyName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t