Class: Aws::ElasticLoadBalancingV2::Types::ForwardActionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::ForwardActionConfig
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass ForwardActionConfig data as a hash:
{
target_groups: [
{
target_group_arn: "TargetGroupArn",
weight: 1,
},
],
target_group_stickiness_config: {
enabled: false,
duration_seconds: 1,
},
}
Information about a forward action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_group_stickiness_config ⇒ Types::TargetGroupStickinessConfig
The target group stickiness for the rule.
-
#target_groups ⇒ Array<Types::TargetGroupTuple>
One or more target groups.
Instance Attribute Details
#target_group_stickiness_config ⇒ Types::TargetGroupStickinessConfig
The target group stickiness for the rule.
1939 1940 1941 1942 1943 1944 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1939 class ForwardActionConfig < Struct.new( :target_groups, :target_group_stickiness_config) SENSITIVE = [] include Aws::Structure end |
#target_groups ⇒ Array<Types::TargetGroupTuple>
One or more target groups. For Network Load Balancers, you can specify a single target group.
1939 1940 1941 1942 1943 1944 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 1939 class ForwardActionConfig < Struct.new( :target_groups, :target_group_stickiness_config) SENSITIVE = [] include Aws::Structure end |