Http2ConnectionPool¶
-
class
aws_cdk.aws_appmesh.
Http2ConnectionPool
(*, max_requests)¶ Bases:
object
Connection pool properties for HTTP2 listeners.
- Parameters
max_requests (
Union
[int
,float
]) – The maximum requests 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. import aws_cdk.aws_appmesh as appmesh http2_connection_pool = appmesh.Http2ConnectionPool( max_requests=123 )
Attributes
-
max_requests
¶ The maximum requests in the pool.
- Default
none
- Return type
Union
[int
,float
]