interface VirtualGatewayConnectionPoolProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayConnectionPoolProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualGatewayPropsMixin_VirtualGatewayConnectionPoolProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayConnectionPoolProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayConnectionPoolProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualGatewayPropsMixin » 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 { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const virtualGatewayConnectionPoolProperty: appmesh_mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayConnectionPoolProperty = {
grpc: {
maxRequests: 123,
},
http: {
maxConnections: 123,
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