Show / Hide Table of Contents

Class CfnVirtualGateway.VirtualGatewayHttpConnectionPoolProperty

An object that represents a type of connection pool.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayhttpconnectionpool.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 virtualGatewayHttpConnectionPoolProperty = new VirtualGatewayHttpConnectionPoolProperty {
    MaxConnections = 123,

    // the properties below are optional
    MaxPendingRequests = 123
};

Synopsis

Constructors

VirtualGatewayHttpConnectionPoolProperty()

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

VirtualGatewayHttpConnectionPoolProperty()

public VirtualGatewayHttpConnectionPoolProperty()

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-virtualgateway-virtualgatewayhttpconnectionpool.html#cfn-appmesh-virtualgateway-virtualgatewayhttpconnectionpool-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-virtualgateway-virtualgatewayhttpconnectionpool.html#cfn-appmesh-virtualgateway-virtualgatewayhttpconnectionpool-maxpendingrequests

Implements

CfnVirtualGateway.IVirtualGatewayHttpConnectionPoolProperty
Back to top Generated by DocFX