Show / Hide Table of Contents

Interface CfnVirtualNode.IVirtualNodeConnectionPoolProperty

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

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualNode.IVirtualNodeConnectionPoolProperty
Syntax (vb)
Public Interface CfnVirtualNode.IVirtualNodeConnectionPoolProperty
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-virtualnodeconnectionpool.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 virtualNodeConnectionPoolProperty = new VirtualNodeConnectionPoolProperty {
                 Grpc = new VirtualNodeGrpcConnectionPoolProperty {
                     MaxRequests = 123
                 },
                 Http = new VirtualNodeHttpConnectionPoolProperty {
                     MaxConnections = 123,

                     // the properties below are optional
                     MaxPendingRequests = 123
                 },
                 Http2 = new VirtualNodeHttp2ConnectionPoolProperty {
                     MaxRequests = 123
                 },
                 Tcp = new VirtualNodeTcpConnectionPoolProperty {
                     MaxConnections = 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.

Tcp

An object that represents a type of connection pool.

Properties

Grpc

An object that represents a type of connection pool.

object? Grpc { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualNode.IVirtualNodeGrpcConnectionPoolProperty

Http

An object that represents a type of connection pool.

object? Http { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualNode.IVirtualNodeHttpConnectionPoolProperty

Http2

An object that represents a type of connection pool.

object? Http2 { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualNode.IVirtualNodeHttp2ConnectionPoolProperty

Tcp

An object that represents a type of connection pool.

object? Tcp { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualNode.IVirtualNodeTcpConnectionPoolProperty

Back to top Generated by DocFX