Learn R Programming

paws.database (version 0.1.12)

rds_modify_db_proxy_target_group: Modifies the properties of a DBProxyTargetGroup

Description

Modifies the properties of a DBProxyTargetGroup.

Usage

rds_modify_db_proxy_target_group(TargetGroupName, DBProxyName,
  ConnectionPoolConfig, NewName)

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

Arguments

TargetGroupName

[required] The name of the new target group to assign to the proxy.

DBProxyName

[required] The name of the new proxy to which to assign the target group.

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.

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