interface VirtualGatewayConnectionPoolProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnVirtualGateway.VirtualGatewayConnectionPoolProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualGateway_VirtualGatewayConnectionPoolProperty |
Java | software.amazon.awscdk.services.appmesh.CfnVirtualGateway.VirtualGatewayConnectionPoolProperty |
Python | aws_cdk.aws_appmesh.CfnVirtualGateway.VirtualGatewayConnectionPoolProperty |
TypeScript | aws-cdk-lib » aws_appmesh » CfnVirtualGateway » VirtualGatewayConnectionPoolProperty |
An object that represents the type of virtual gateway connection pool.
Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping.
If not present the default value for maxPendingRequests is 2147483647 .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as appmesh } from 'aws-cdk-lib';
const virtualGatewayConnectionPoolProperty: appmesh.CfnVirtualGateway.VirtualGatewayConnectionPoolProperty = {
grpc: {
maxRequests: 123,
},
http: {
maxConnections: 123,
// the properties below are optional
maxPendingRequests: 123,
},
http2: {
maxRequests: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| grpc? | IResolvable | Virtual | An object that represents a type of connection pool. |
| http? | IResolvable | Virtual | An object that represents a type of connection pool. |
| http2? | IResolvable | Virtual | An object that represents a type of connection pool. |
grpc?
Type:
IResolvable | Virtual
(optional)
An object that represents a type of connection pool.
http?
Type:
IResolvable | Virtual
(optional)
An object that represents a type of connection pool.
http2?
Type:
IResolvable | Virtual
(optional)
An object that represents a type of connection pool.

.NET
Go
Java
Python
TypeScript