[][src]Struct rusoto_rds::DBProxyTargetGroup

pub struct DBProxyTargetGroup {
    pub connection_pool_config: Option<ConnectionPoolConfigurationInfo>,
    pub created_date: Option<String>,
    pub db_proxy_name: Option<String>,
    pub is_default: Option<bool>,
    pub status: Option<String>,
    pub target_group_arn: Option<String>,
    pub target_group_name: Option<String>,
    pub updated_date: Option<String>,
}

Represents a set of RDS DB instances, Aurora DB clusters, or both that a proxy can connect to. Currently, each target group is associated with exactly one RDS DB instance or Aurora DB cluster.

This data type is used as a response element in the DescribeDBProxyTargetGroups action.

Fields

connection_pool_config: Option<ConnectionPoolConfigurationInfo>

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

created_date: Option<String>

The date and time when the target group was first created.

db_proxy_name: Option<String>

The identifier for the RDS proxy associated with this target group.

is_default: Option<bool>

Whether this target group is the first one used for connection requests by the associated proxy. Because each proxy is currently associated with a single target group, currently this setting is always true.

status: Option<String>

The current status of this target group. A status of available means the target group is correctly associated with a database. Other values indicate that you must wait for the target group to be ready, or take some action to resolve an issue.

target_group_arn: Option<String>

The Amazon Resource Name (ARN) representing the target group.

target_group_name: Option<String>

The identifier for the target group. This name must be unique for all target groups owned by your AWS account in the specified AWS Region.

updated_date: Option<String>

The date and time when the target group was last updated.

Trait Implementations

impl Clone for DBProxyTargetGroup[src]

impl Debug for DBProxyTargetGroup[src]

impl Default for DBProxyTargetGroup[src]

impl PartialEq<DBProxyTargetGroup> for DBProxyTargetGroup[src]

impl StructuralPartialEq for DBProxyTargetGroup[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, 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.