Show / Hide Table of Contents

Interface CfnVirtualGateway.IVirtualGatewayConnectionPoolProperty

An object that represents the type of virtual gateway connection pool.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.AWS.AppMesh.dll
Syntax (csharp)
public interface IVirtualGatewayConnectionPoolProperty
Syntax (vb)
Public Interface IVirtualGatewayConnectionPoolProperty
Remarks

Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping.

If not present the default value for maxPendingRequests is 2147483647 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayconnectionpool.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;

VirtualGatewayConnectionPoolProperty virtualGatewayConnectionPoolProperty = new VirtualGatewayConnectionPoolProperty {
    Grpc = new VirtualGatewayGrpcConnectionPoolProperty {
        MaxRequests = 123
    },
    Http = new VirtualGatewayHttpConnectionPoolProperty {
        MaxConnections = 123,

        // the properties below are optional
        MaxPendingRequests = 123
    },
    Http2 = new VirtualGatewayHttp2ConnectionPoolProperty {
        MaxRequests = 123
    }
};

Synopsis

Properties

Grpc

An object that represents a type of connection pool.

Http

An object that represents a type of connection pool.

Http2

An object that represents a type of connection pool.

Properties

Grpc

An object that represents a type of connection pool.

virtual object Grpc { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayconnectionpool.html#cfn-appmesh-virtualgateway-virtualgatewayconnectionpool-grpc

Http

An object that represents a type of connection pool.

virtual object Http { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayconnectionpool.html#cfn-appmesh-virtualgateway-virtualgatewayconnectionpool-http

Http2

An object that represents a type of connection pool.

virtual object Http2 { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayconnectionpool.html#cfn-appmesh-virtualgateway-virtualgatewayconnectionpool-http2

Back to top Generated by DocFX