Interface CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
An object that represents a type of connection pool.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualNodeHttpConnectionPoolProperty
Syntax (vb)
Public Interface IVirtualNodeHttpConnectionPoolProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppMesh;
var virtualNodeHttpConnectionPoolProperty = new VirtualNodeHttpConnectionPoolProperty {
MaxConnections = 123,
// the properties below are optional
MaxPendingRequests = 123
};
Synopsis
Properties
MaxConnections | Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster. |
MaxPendingRequests | Number of overflowing requests after |
Properties
MaxConnections
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
double MaxConnections { get; }
Property Value
System.Double
Remarks
MaxPendingRequests
Number of overflowing requests after max_connections
Envoy will queue to upstream cluster.
virtual Nullable<double> MaxPendingRequests { get; }
Property Value
System.Nullable<System.Double>