/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource schema for AWS::RDS::DBProxyTargetGroup */ export interface AwsRdsDbproxytargetgroup { /** * The identifier for the proxy. */ DBProxyName: string; /** * The Amazon Resource Name (ARN) representing the target group. */ TargetGroupArn?: string; /** * The identifier for the DBProxyTargetGroup */ TargetGroupName: "default"; ConnectionPoolConfigurationInfo?: ConnectionPoolConfigurationInfoFormat; DBInstanceIdentifiers?: string[]; DBClusterIdentifiers?: string[]; } export interface ConnectionPoolConfigurationInfoFormat { /** * The maximum size of the connection pool for each target in a target group. */ MaxConnectionsPercent?: number; /** * Controls how actively the proxy closes idle database connections in the connection pool. */ MaxIdleConnectionsPercent?: number; /** * The number of seconds for a proxy to wait for a connection to become available in the connection pool. */ ConnectionBorrowTimeout?: number; /** * Each item in the list represents a class of SQL operations that normally cause all later statements in a session using a proxy to be pinned to the same underlying database connection. */ SessionPinningFilters?: string[]; /** * One or more SQL statements for the proxy to run when opening each new database connection. */ InitQuery?: string; }