Show / Hide Table of Contents

Class CfnVirtualGateway.VirtualGatewayConnectionPoolProperty

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

Inheritance
object
CfnVirtualGateway.VirtualGatewayConnectionPoolProperty
Implements
CfnVirtualGateway.IVirtualGatewayConnectionPoolProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVirtualGateway.VirtualGatewayConnectionPoolProperty : CfnVirtualGateway.IVirtualGatewayConnectionPoolProperty
Syntax (vb)
Public Class CfnVirtualGateway.VirtualGatewayConnectionPoolProperty Implements CfnVirtualGateway.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 .

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

             var 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

Constructors

VirtualGatewayConnectionPoolProperty()

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

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.

Constructors

VirtualGatewayConnectionPoolProperty()

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

public VirtualGatewayConnectionPoolProperty()
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-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;

             var 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
                 }
             };

Properties

Grpc

An object that represents a type of connection pool.

public object? Grpc { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayGrpcConnectionPoolProperty

Http

An object that represents a type of connection pool.

public object? Http { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayHttpConnectionPoolProperty

Http2

An object that represents a type of connection pool.

public object? Http2 { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayHttp2ConnectionPoolProperty

Implements

CfnVirtualGateway.IVirtualGatewayConnectionPoolProperty
Back to top Generated by DocFX