Modify Db Proxy Target Group
rds_modify_db_proxy_target_group | R Documentation |
Modifies the properties of a DBProxyTargetGroup¶
Description¶
Modifies the properties of a DBProxyTargetGroup
.
Usage¶
rds_modify_db_proxy_target_group(TargetGroupName, DBProxyName,
ConnectionPoolConfig, NewName)
Arguments¶
TargetGroupName |
[required] The name of the target group to modify. |
DBProxyName |
[required] The name of the proxy. |
ConnectionPoolConfig |
The settings that determine the size and behavior of the connection pool for the target group. |
NewName |
The new name for the modified You can't rename the |
Value¶
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"
)
)
)
Request syntax¶
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"
)