[][src]Struct rusoto_dms::Connection

pub struct Connection {
    pub endpoint_arn: Option<String>,
    pub endpoint_identifier: Option<String>,
    pub last_failure_message: Option<String>,
    pub replication_instance_arn: Option<String>,
    pub replication_instance_identifier: Option<String>,
    pub status: Option<String>,
}

Status of the connection between an endpoint and a replication instance, including Amazon Resource Names (ARNs) and the last error message issued.

Fields

endpoint_arn: Option<String>

The ARN string that uniquely identifies the endpoint.

endpoint_identifier: Option<String>

The identifier of the endpoint. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.

last_failure_message: Option<String>

The error message when the connection last failed.

replication_instance_arn: Option<String>

The ARN of the replication instance.

replication_instance_identifier: Option<String>

The replication instance identifier. This parameter is stored as a lowercase string.

status: Option<String>

The connection status. This parameter can return one of the following values:

  • "successful"

  • "testing"

  • "failed"

  • "deleting"

Trait Implementations

impl Clone for Connection[src]

impl Debug for Connection[src]

impl Default for Connection[src]

impl<'de> Deserialize<'de> for Connection[src]

impl PartialEq<Connection> for Connection[src]

impl StructuralPartialEq for Connection[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.