[][src]Struct rusoto_rds::ModifyDBProxyTargetGroupRequest

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

impl Clone for ModifyDBProxyTargetGroupRequest[src]

impl Debug for ModifyDBProxyTargetGroupRequest[src]

impl Default for ModifyDBProxyTargetGroupRequest[src]

impl PartialEq<ModifyDBProxyTargetGroupRequest> for ModifyDBProxyTargetGroupRequest[src]

impl StructuralPartialEq for ModifyDBProxyTargetGroupRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.