aws-cdk-lib.aws_appmesh.CfnVirtualGateway.VirtualGatewayConnectionPoolProperty

interface VirtualGatewayConnectionPoolProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnVirtualGateway.VirtualGatewayConnectionPoolProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualGateway_VirtualGatewayConnectionPoolProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnVirtualGateway.VirtualGatewayConnectionPoolProperty
Pythonaws_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

NameTypeDescription
grpc?IResolvable | VirtualGatewayGrpcConnectionPoolPropertyAn object that represents a type of connection pool.
http?IResolvable | VirtualGatewayHttpConnectionPoolPropertyAn object that represents a type of connection pool.
http2?IResolvable | VirtualGatewayHttp2ConnectionPoolPropertyAn object that represents a type of connection pool.

grpc?

Type: IResolvable | VirtualGatewayGrpcConnectionPoolProperty (optional)

An object that represents a type of connection pool.


http?

Type: IResolvable | VirtualGatewayHttpConnectionPoolProperty (optional)

An object that represents a type of connection pool.


http2?

Type: IResolvable | VirtualGatewayHttp2ConnectionPoolProperty (optional)

An object that represents a type of connection pool.