aws-cdk-lib.aws_appmesh.CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty

interface VirtualNodeHttpConnectionPoolProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualNode_VirtualNodeHttpConnectionPoolProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty
Pythonaws_cdk.aws_appmesh.CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty
TypeScript aws-cdk-lib » aws_appmesh » CfnVirtualNode » VirtualNodeHttpConnectionPoolProperty

An object that represents a type of connection pool.

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 virtualNodeHttpConnectionPoolProperty: appmesh.CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty = {
  maxConnections: 123,

  // the properties below are optional
  maxPendingRequests: 123,
};

Properties

NameTypeDescription
maxConnectionsnumberMaximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
maxPendingRequests?numberNumber of overflowing requests after max_connections Envoy will queue to upstream cluster.

maxConnections

Type: number

Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.


maxPendingRequests?

Type: number (optional)

Number of overflowing requests after max_connections Envoy will queue to upstream cluster.