interface CfnDBProxyTargetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RDS.CfnDBProxyTargetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrds#CfnDBProxyTargetGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rds.CfnDBProxyTargetGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rds.CfnDBProxyTargetGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rds » 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 { aws_rds as rds } from '@aws-cdk/cfn-property-mixins';
const cfnDBProxyTargetGroupMixinProps: rds.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 | IDBCluster)[] | One or more DB cluster identifiers. |
| db | string[] | One or more DB instance identifiers. |
| db | string | IDBProxy | 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 | IDBCluster)[]
(optional)
One or more DB cluster identifiers.
dbInstanceIdentifiers?
Type:
string[]
(optional)
One or more DB instance identifiers.
dbProxyName?
Type:
string | IDBProxy
(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