Modifies the properties of a DBProxyTargetGroup
.
rds_modify_db_proxy_target_group(TargetGroupName, DBProxyName,
ConnectionPoolConfig, NewName)
A list with the following syntax:
list(
DBProxyTargetGroup = list(
DBProxyName = "string",
TargetGroupName = "string",
TargetGroupArn = "string",
IsDefault = TRUE|FALSE,
Status = "string",
ConnectionPoolConfig = list(
MaxConnectionsPercent = 123,
MaxIdleConnectionsPercent = 123,
ConnectionBorrowTimeout = 123,
SessionPinningFilters = list(
"string"
),
InitQuery = "string"
),
CreatedDate = as.POSIXct(
"2015-01-01"
),
UpdatedDate = as.POSIXct(
"2015-01-01"
)
)
)
[required] The name of the new target group to assign to the proxy.
[required] The name of the new proxy to which to assign the target group.
The settings that determine the size and behavior of the connection pool for the target group.
The new name for the modified DBProxyTarget
. An identifier must begin
with a letter and must contain only ASCII letters, digits, and hyphens;
it can't end with a hyphen or contain two consecutive hyphens.
svc$modify_db_proxy_target_group(
TargetGroupName = "string",
DBProxyName = "string",
ConnectionPoolConfig = list(
MaxConnectionsPercent = 123,
MaxIdleConnectionsPercent = 123,
ConnectionBorrowTimeout = 123,
SessionPinningFilters = list(
"string"
),
InitQuery = "string"
),
NewName = "string"
)