pub struct ModifyDBProxyTargetGroupRequest {
pub connection_pool_config: Option<ConnectionPoolConfiguration>,
pub db_proxy_name: String,
pub new_name: Option<String>,
pub target_group_name: String,
}
Fields§
§connection_pool_config: Option<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: Option<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.
target_group_name: String
The name of the new target group to assign to the proxy.
Trait Implementations§
Source§impl Clone for ModifyDBProxyTargetGroupRequest
impl Clone for ModifyDBProxyTargetGroupRequest
Source§fn clone(&self) -> ModifyDBProxyTargetGroupRequest
fn clone(&self) -> ModifyDBProxyTargetGroupRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ModifyDBProxyTargetGroupRequest
impl Default for ModifyDBProxyTargetGroupRequest
Source§fn default() -> ModifyDBProxyTargetGroupRequest
fn default() -> ModifyDBProxyTargetGroupRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyDBProxyTargetGroupRequest
impl PartialEq for ModifyDBProxyTargetGroupRequest
Source§fn eq(&self, other: &ModifyDBProxyTargetGroupRequest) -> bool
fn eq(&self, other: &ModifyDBProxyTargetGroupRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyDBProxyTargetGroupRequest
Auto Trait Implementations§
impl Freeze for ModifyDBProxyTargetGroupRequest
impl RefUnwindSafe for ModifyDBProxyTargetGroupRequest
impl Send for ModifyDBProxyTargetGroupRequest
impl Sync for ModifyDBProxyTargetGroupRequest
impl Unpin for ModifyDBProxyTargetGroupRequest
impl UnwindSafe for ModifyDBProxyTargetGroupRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more