interface CfnDBProxyTargetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBProxyTargetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBProxyTargetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBProxyTargetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBProxyTargetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBProxyTargetGroupMixinProps |
Properties for CfnDBProxyTargetGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const cfnDBProxyTargetGroupMixinProps: rds_mixins.CfnDBProxyTargetGroupMixinProps = {
connectionPoolConfigurationInfo: {
connectionBorrowTimeout: 123,
initQuery: 'initQuery',
maxConnectionsPercent: 123,
maxIdleConnectionsPercent: 123,
sessionPinningFilters: ['sessionPinningFilters'],
},
dbClusterIdentifiers: ['dbClusterIdentifiers'],
dbInstanceIdentifiers: ['dbInstanceIdentifiers'],
dbProxyName: 'dbProxyName',
targetGroupName: 'targetGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | IResolvable | Connection | Displays the settings that control the size and behavior of the connection pool associated with a DBProxyTarget . |
| db | string[] | One or more DB cluster identifiers. |
| db | string[] | One or more DB instance identifiers. |
| db | string | The identifier of the DBProxy that is associated with the DBProxyTargetGroup . |
| target | string | The identifier for the target group. |
connectionPoolConfigurationInfo?
Type:
IResolvable | Connection
(optional)
Displays the settings that control the size and behavior of the connection pool associated with a DBProxyTarget .
dbClusterIdentifiers?
Type:
string[]
(optional)
One or more DB cluster identifiers.
dbInstanceIdentifiers?
Type:
string[]
(optional)
One or more DB instance identifiers.
dbProxyName?
Type:
string
(optional)
The identifier of the DBProxy that is associated with the DBProxyTargetGroup .
targetGroupName?
Type:
string
(optional)
The identifier for the target group.
Currently, this property must be set to
default.

.NET
Go
Java
Python
TypeScript