Class: Aws::RDS::Types::ModifyDBProxyTargetGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ModifyDBProxyTargetGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
When making an API call, you may pass ModifyDBProxyTargetGroupRequest data as a 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",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_pool_config ⇒ Types::ConnectionPoolConfiguration
The settings that determine the size and behavior of the connection pool for the target group.
-
#db_proxy_name ⇒ String
The name of the new proxy to which to assign the target group.
-
#new_name ⇒ String
The new name for the modified `DBProxyTarget`.
-
#target_group_name ⇒ String
The name of the new target group to assign to the proxy.
Instance Attribute Details
#connection_pool_config ⇒ Types::ConnectionPoolConfiguration
The settings that determine the size and behavior of the connection pool for the target group.
16573 16574 16575 16576 16577 16578 16579 16580 |
# File 'lib/aws-sdk-rds/types.rb', line 16573 class ModifyDBProxyTargetGroupRequest < Struct.new( :target_group_name, :db_proxy_name, :connection_pool_config, :new_name) SENSITIVE = [] include Aws::Structure end |
#db_proxy_name ⇒ String
The name of the new proxy to which to assign the target group.
16573 16574 16575 16576 16577 16578 16579 16580 |
# File 'lib/aws-sdk-rds/types.rb', line 16573 class ModifyDBProxyTargetGroupRequest < Struct.new( :target_group_name, :db_proxy_name, :connection_pool_config, :new_name) SENSITIVE = [] include Aws::Structure end |
#new_name ⇒ String
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.
16573 16574 16575 16576 16577 16578 16579 16580 |
# File 'lib/aws-sdk-rds/types.rb', line 16573 class ModifyDBProxyTargetGroupRequest < Struct.new( :target_group_name, :db_proxy_name, :connection_pool_config, :new_name) SENSITIVE = [] include Aws::Structure end |
#target_group_name ⇒ String
The name of the new target group to assign to the proxy.
16573 16574 16575 16576 16577 16578 16579 16580 |
# File 'lib/aws-sdk-rds/types.rb', line 16573 class ModifyDBProxyTargetGroupRequest < Struct.new( :target_group_name, :db_proxy_name, :connection_pool_config, :new_name) SENSITIVE = [] include Aws::Structure end |