LoadBalancerListenerContextResponse
- class aws_cdk.cx_api.LoadBalancerListenerContextResponse(*, listener_arn, listener_port, security_group_ids)
Bases:
object
Properties of a discovered load balancer listener.
- Parameters:
listener_arn (
str
) – The ARN of the listener.listener_port (
Union
[int
,float
]) – The port the listener is listening on.security_group_ids (
Sequence
[str
]) – The security groups of the load balancer.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.cx_api as cx_api load_balancer_listener_context_response = cx_api.LoadBalancerListenerContextResponse( listener_arn="listenerArn", listener_port=123, security_group_ids=["securityGroupIds"] )
Attributes
- listener_arn
The ARN of the listener.
- listener_port
The port the listener is listening on.
- security_group_ids
The security groups of the load balancer.