You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::RDS::Types::ModifyDBProxyTargetGroupRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ModifyDBProxyTargetGroupRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  target_group_name: "String", # required
  db_proxy_name: "String", # required
  connection_pool_config: {
    max_connections_percent: 1,
    max_idle_connections_percent: 1,
    connection_borrow_timeout: 1,
    session_pinning_filters: ["String"],
    init_query: "String",
  },
  new_name: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#connection_pool_configTypes::ConnectionPoolConfiguration

The settings that determine the size and behavior of the connection pool for the target group.

Returns:

#db_proxy_nameString

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

Returns:

  • (String)

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

#new_nameString

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.

Returns:

  • (String)

    The new name for the modified DBProxyTarget.

#target_group_nameString

The name of the new target group to assign to the proxy.

Returns:

  • (String)

    The name of the new target group to assign to the proxy.