Module Values.AppCookieStickinessPolicySource

Information about a policy for application-controlled session stickiness.

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

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

    *)
  2. cookieName : CookieName.t option;
    (*

    The name of the application cookie used for stickiness.

    *)
}
Sourceval make : ?policyName:??? -> ?cookieName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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