Class: Aws::CodeDeploy::Types::TargetGroupPairInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TargetGroupPairInfo
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Information about two target groups and how traffic is routed during an Amazon ECS deployment. An optional test traffic route can be specified.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#prod_traffic_route ⇒ Types::TrafficRoute
The path used by a load balancer to route production traffic when an Amazon ECS deployment is complete.
-
#target_groups ⇒ Array<Types::TargetGroupInfo>
One pair of target groups.
-
#test_traffic_route ⇒ Types::TrafficRoute
An optional path used by a load balancer to route test traffic after an Amazon ECS deployment.
Instance Attribute Details
#prod_traffic_route ⇒ Types::TrafficRoute
The path used by a load balancer to route production traffic when an Amazon ECS deployment is complete.
4600 4601 4602 4603 4604 4605 4606 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4600 class TargetGroupPairInfo < Struct.new( :target_groups, :prod_traffic_route, :test_traffic_route) SENSITIVE = [] include Aws::Structure end |
#target_groups ⇒ Array<Types::TargetGroupInfo>
One pair of target groups. One is associated with the original task set. The second is associated with the task set that serves traffic after the deployment is complete.
4600 4601 4602 4603 4604 4605 4606 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4600 class TargetGroupPairInfo < Struct.new( :target_groups, :prod_traffic_route, :test_traffic_route) SENSITIVE = [] include Aws::Structure end |
#test_traffic_route ⇒ Types::TrafficRoute
An optional path used by a load balancer to route test traffic after an Amazon ECS deployment. Validation can occur while test traffic is served during a deployment.
4600 4601 4602 4603 4604 4605 4606 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4600 class TargetGroupPairInfo < Struct.new( :target_groups, :prod_traffic_route, :test_traffic_route) SENSITIVE = [] include Aws::Structure end |