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¶
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
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.
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"
)
)
)