TcpConnectionPool
- class aws_cdk.aws_appmesh.TcpConnectionPool(*, max_connections)
- Bases: - object- Connection pool properties for TCP listeners. - Parameters:
- max_connections ( - Union[- int,- float]) – The maximum connections in the pool. Default: - none
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_appmesh as appmesh tcp_connection_pool = appmesh.TcpConnectionPool( max_connections=123 ) - Attributes - max_connections
- The maximum connections in the pool. - Default:
- none