Class: Aws::CodeDeploy::Types::TrafficRoute
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TrafficRoute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass TrafficRoute data as a hash:
{
listener_arns: ["ListenerArn"],
}
Information about a listener. The listener contains the path used to route traffic that is received from the load balancer to a target group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#listener_arns ⇒ Array<String>
The Amazon Resource Name (ARN) of one listener.
Instance Attribute Details
#listener_arns ⇒ Array<String>
The Amazon Resource Name (ARN) of one listener. The listener identifies the route between a target group and a load balancer. This is an array of strings with a maximum size of one.
5604 5605 5606 5607 5608 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5604 class TrafficRoute < Struct.new( :listener_arns) SENSITIVE = [] include Aws::Structure end |