Module Values.TargetGroupStickinessConfigSource

Information about the target group stickiness for a rule.

Sourcetype nonrec t = {
  1. enabled : TargetGroupStickinessEnabled.t option;
    (*

    Indicates whether target group stickiness is enabled.

    *)
  2. durationSeconds : TargetGroupStickinessDurationSeconds.t option;
    (*

    [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.

    *)
}
Sourceval make : ?enabled:??? -> ?durationSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of TargetGroupStickinessEnabled.t | `Integer of TargetGroupStickinessDurationSeconds.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