Class: Aws::ElasticLoadBalancingV2::Types::TargetGroupStickinessConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::TargetGroupStickinessConfig
- Includes:
- Structure
- Defined in:
- 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).
4289 4290 4291 4292 4293 4294 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 4289 class TargetGroupStickinessConfig < Struct.new( :enabled, :duration_seconds) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Indicates whether target group stickiness is enabled.
4289 4290 4291 4292 4293 4294 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 4289 class TargetGroupStickinessConfig < Struct.new( :enabled, :duration_seconds) SENSITIVE = [] include Aws::Structure end |