Show / Hide Table of Contents

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 CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
Syntax (vb)
Public Interface CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty
Remarks

See: 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

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.

Properties

MaxConnections

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

double MaxConnections { get; }
Property Value

double

Remarks

See: 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.

double? MaxPendingRequests { get; }
Property Value

double?

Remarks

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

Back to top Generated by DocFX