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
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 |
DbClusterIdentifiers | One or more DB cluster identifiers. |
DbInstanceIdentifiers | One or more DB instance identifiers. |
DbProxyName | The identifier of the |
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
DbClusterIdentifiers
One or more DB cluster identifiers.
virtual string[] DbClusterIdentifiers { get; }
Property Value
System.String[]
Remarks
DbInstanceIdentifiers
One or more DB instance identifiers.
virtual string[] DbInstanceIdentifiers { get; }
Property Value
System.String[]
Remarks
DbProxyName
The identifier of the DBProxy
that is associated with the DBProxyTargetGroup
.
string DbProxyName { get; }
Property Value
System.String
Remarks
TargetGroupName
The identifier for the target group.
string TargetGroupName { get; }
Property Value
System.String
Remarks
Currently, this property must be set to default
.