Class CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty
An object that represents a type of connection pool.
Inheritance
System.Object
CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VirtualNodeHttpConnectionPoolProperty : Object, CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
Syntax (vb)
Public Class VirtualNodeHttpConnectionPoolProperty
Inherits Object
Implements CfnVirtualNode.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
Constructors
VirtualNodeHttpConnectionPoolProperty() |
Properties
MaxConnections | Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster. |
MaxPendingRequests | Number of overflowing requests after |
Constructors
VirtualNodeHttpConnectionPoolProperty()
public VirtualNodeHttpConnectionPoolProperty()
Properties
MaxConnections
Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.
public double MaxConnections { get; set; }
Property Value
System.Double
Remarks
MaxPendingRequests
Number of overflowing requests after max_connections
Envoy will queue to upstream cluster.
public Nullable<double> MaxPendingRequests { get; set; }
Property Value
System.Nullable<System.Double>