[][src]Struct rusoto_dms::SupportedEndpointType

pub struct SupportedEndpointType {
    pub endpoint_type: Option<String>,
    pub engine_display_name: Option<String>,
    pub engine_name: Option<String>,
    pub replication_instance_engine_minimum_version: Option<String>,
    pub supports_cdc: Option<bool>,
}

Provides information about types of supported endpoints in response to a request by the DescribeEndpointTypes operation. This information includes the type of endpoint, the database engine name, and whether change data capture (CDC) is supported.

Fields

endpoint_type: Option<String>

The type of endpoint. Valid values are source and target.

engine_display_name: Option<String>

The expanded name for the engine name. For example, if the EngineName parameter is "aurora," this value would be "Amazon Aurora MySQL."

engine_name: Option<String>

The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", and "neptune".

replication_instance_engine_minimum_version: Option<String>

The earliest AWS DMS engine version that supports this endpoint engine. Note that endpoint engines released with AWS DMS versions earlier than 3.1.1 do not return a value for this parameter.

supports_cdc: Option<bool>

Indicates if Change Data Capture (CDC) is supported.

Trait Implementations

impl Clone for SupportedEndpointType[src]

impl Debug for SupportedEndpointType[src]

impl Default for SupportedEndpointType[src]

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

impl PartialEq<SupportedEndpointType> for SupportedEndpointType[src]

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