Module Values.CreateLBCookieStickinessPolicyInputSource

Contains the parameters for CreateLBCookieStickinessPolicy.

Sourcetype nonrec t = {
  1. loadBalancerName : AccessPointName.t;
    (*

    The name of the load balancer.

    *)
  2. policyName : PolicyName.t;
    (*

    The name of the policy being created. Policy names must consist of alphanumeric characters and dashes (-). This name must be unique within the set of policies for this load balancer.

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

    The time period, in seconds, after which the cookie should be considered stale. If you do not specify this parameter, the default value is 0, which indicates that the sticky session should last for the duration of the browser session.

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