Interface ICfnDBProxyTargetGroupProps
Properties for defining a CfnDBProxyTargetGroup.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.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 | Displays the 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
Displays the settings that control the size and behavior of the connection pool associated with a DBProxyTarget .
object? ConnectionPoolConfigurationInfo { get; }
Property Value
Remarks
DbClusterIdentifiers
One or more DB cluster identifiers.
object[]? DbClusterIdentifiers { get; }
Property Value
object[]
Remarks
DbInstanceIdentifiers
One or more DB instance identifiers.
string[]? DbInstanceIdentifiers { get; }
Property Value
string[]
Remarks
DbProxyName
The identifier of the DBProxy that is associated with the DBProxyTargetGroup .
object DbProxyName { get; }
Property Value
Remarks
TargetGroupName
The identifier for the target group.
string TargetGroupName { get; }
Property Value
Remarks
Currently, this property must be set to <code>default</code> .