Module Values.LBCookieStickinessPolicySource

Information about a policy for duration-based session stickiness.

Sourcetype nonrec t = {
  1. policyName : PolicyName.t option;
    (*

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

    *)
  2. cookieExpirationPeriod : CookieExpirationPeriod.t option;
    (*

    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.

    *)
}
Sourceval make : ?policyName:??? -> ?cookieExpirationPeriod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of CookieExpirationPeriod.t | `String of PolicyName.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