Class: Aws::ElasticLoadBalancingV2::Types::TargetGroupStickinessConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::TargetGroupStickinessConfig
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about the target group stickiness for a rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_seconds ⇒ Integer
The time period, in seconds, during which requests from a client should be routed to the same target group.
-
#enabled ⇒ Boolean
Indicates whether target group stickiness is enabled.
Instance Attribute Details
#duration_seconds ⇒ Integer
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).
4123 4124 4125 4126 4127 4128 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 4123 class TargetGroupStickinessConfig < Struct.new( :enabled, :duration_seconds) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Indicates whether target group stickiness is enabled.
4123 4124 4125 4126 4127 4128 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 4123 class TargetGroupStickinessConfig < Struct.new( :enabled, :duration_seconds) SENSITIVE = [] include Aws::Structure end |