Show / Hide Table of Contents

Interface ICfnDBProxyTargetGroupProps

Properties for defining a CfnDBProxyTargetGroup.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.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.RDS;

var cfnDBProxyTargetGroupProps = new CfnDBProxyTargetGroupProps {
    DbProxyName = "dbProxyName",
    TargetGroupName = "targetGroupName",

    // the properties below are optional
    ConnectionPoolConfigurationInfo = new ConnectionPoolConfigurationInfoFormatProperty {
        ConnectionBorrowTimeout = 123,
        InitQuery = "initQuery",
        MaxConnectionsPercent = 123,
        MaxIdleConnectionsPercent = 123,
        SessionPinningFilters = new [] { "sessionPinningFilters" }
    },
    DbClusterIdentifiers = new [] { "dbClusterIdentifiers" },
    DbInstanceIdentifiers = new [] { "dbInstanceIdentifiers" }
};

Synopsis

Properties

ConnectionPoolConfigurationInfo

Settings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup .

DbClusterIdentifiers

One or more DB cluster identifiers.

DbInstanceIdentifiers

One or more DB instance identifiers.

DbProxyName

The identifier of the DBProxy that is associated with the DBProxyTargetGroup .

TargetGroupName

The identifier for the target group.

Properties

ConnectionPoolConfigurationInfo

Settings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup .

virtual object ConnectionPoolConfigurationInfo { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-connectionpoolconfigurationinfo

DbClusterIdentifiers

One or more DB cluster identifiers.

virtual string[] DbClusterIdentifiers { get; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbclusteridentifiers

DbInstanceIdentifiers

One or more DB instance identifiers.

virtual string[] DbInstanceIdentifiers { get; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbinstanceidentifiers

DbProxyName

The identifier of the DBProxy that is associated with the DBProxyTargetGroup .

string DbProxyName { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-dbproxyname

TargetGroupName

The identifier for the target group.

string TargetGroupName { get; }
Property Value

System.String

Remarks

Currently, this property must be set to default .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxytargetgroup.html#cfn-rds-dbproxytargetgroup-targetgroupname

Back to top Generated by DocFX