Show / Hide Table of Contents

Class CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty

An object that represents a type of connection pool.

Inheritance
System.Object
CfnVirtualNode.VirtualNodeHttpConnectionPoolProperty
Implements
CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.AWS.AppMesh.dll
Syntax (csharp)
public class VirtualNodeHttpConnectionPoolProperty : Object, CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
Syntax (vb)
Public Class VirtualNodeHttpConnectionPoolProperty
    Inherits Object
    Implements CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-virtualnodehttpconnectionpool.html

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 max_connections Envoy will queue to upstream cluster.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-virtualnodehttpconnectionpool.html#cfn-appmesh-virtualnode-virtualnodehttpconnectionpool-maxconnections

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>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-virtualnodehttpconnectionpool.html#cfn-appmesh-virtualnode-virtualnodehttpconnectionpool-maxpendingrequests

Implements

CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
Back to top Generated by DocFX