aws-cdk-lib.aws_rds.CfnDBProxyTargetGroupProps

interface CfnDBProxyTargetGroupProps

LanguageType name
.NETAmazon.CDK.AWS.RDS.CfnDBProxyTargetGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBProxyTargetGroupProps
Javasoftware.amazon.awscdk.services.rds.CfnDBProxyTargetGroupProps
Pythonaws_cdk.aws_rds.CfnDBProxyTargetGroupProps
TypeScript aws-cdk-lib » aws_rds » CfnDBProxyTargetGroupProps

Properties for defining a CfnDBProxyTargetGroup.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from 'aws-cdk-lib';
const cfnDBProxyTargetGroupProps: rds.CfnDBProxyTargetGroupProps = {
  dbProxyName: 'dbProxyName',
  targetGroupName: 'targetGroupName',

  // the properties below are optional
  connectionPoolConfigurationInfo: {
    connectionBorrowTimeout: 123,
    initQuery: 'initQuery',
    maxConnectionsPercent: 123,
    maxIdleConnectionsPercent: 123,
    sessionPinningFilters: ['sessionPinningFilters'],
  },
  dbClusterIdentifiers: ['dbClusterIdentifiers'],
  dbInstanceIdentifiers: ['dbInstanceIdentifiers'],
};

Properties

NameTypeDescription
dbProxyNamestringThe identifier of the DBProxy that is associated with the DBProxyTargetGroup .
targetGroupNamestringThe identifier for the target group.
connectionPoolConfigurationInfo?IResolvable | ConnectionPoolConfigurationInfoFormatPropertySettings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup .
dbClusterIdentifiers?string[]One or more DB cluster identifiers.
dbInstanceIdentifiers?string[]One or more DB instance identifiers.

dbProxyName

Type: string

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


targetGroupName

Type: string

The identifier for the target group.

Currently, this property must be set to default .


connectionPoolConfigurationInfo?

Type: IResolvable | ConnectionPoolConfigurationInfoFormatProperty (optional)

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


dbClusterIdentifiers?

Type: string[] (optional)

One or more DB cluster identifiers.


dbInstanceIdentifiers?

Type: string[] (optional)

One or more DB instance identifiers.