[][src]Struct rusoto_rds::DBProxyTarget

pub struct DBProxyTarget {
    pub endpoint: Option<String>,
    pub port: Option<i64>,
    pub rds_resource_id: Option<String>,
    pub target_arn: Option<String>,
    pub target_health: Option<TargetHealth>,
    pub tracked_cluster_id: Option<String>,
    pub type_: Option<String>,
}

Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster that the proxy can connect to. One or more targets are associated with an RDS Proxy target group.

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

Fields

endpoint: Option<String>

The writer endpoint for the RDS DB instance or Aurora DB cluster.

port: Option<i64>

The port that the RDS Proxy uses to connect to the target RDS DB instance or Aurora DB cluster.

rds_resource_id: Option<String>

The identifier representing the target. It can be the instance identifier for an RDS DB instance, or the cluster identifier for an Aurora DB cluster.

target_arn: Option<String>

The Amazon Resource Name (ARN) for the RDS DB instance or Aurora DB cluster.

target_health: Option<TargetHealth>

Information about the connection health of the RDS Proxy target.

tracked_cluster_id: Option<String>

The DB cluster identifier when the target represents an Aurora DB cluster. This field is blank when the target represents an RDS DB instance.

type_: Option<String>

Specifies the kind of database, such as an RDS DB instance or an Aurora DB cluster, that the target represents.

Trait Implementations

impl Clone for DBProxyTarget[src]

impl Debug for DBProxyTarget[src]

impl Default for DBProxyTarget[src]

impl PartialEq<DBProxyTarget> for DBProxyTarget[src]

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