[][src]Struct rusoto_dms::ReloadTablesMessage

pub struct ReloadTablesMessage {
    pub reload_option: Option<String>,
    pub replication_task_arn: String,
    pub tables_to_reload: Vec<TableToReload>,
}

Fields

reload_option: Option<String>

Options for reload. Specify data-reload to reload the data and re-validate it if validation is enabled. Specify validate-only to re-validate the table. This option applies only when validation is enabled for the task.

Valid values: data-reload, validate-only

Default value is data-reload.

replication_task_arn: String

The Amazon Resource Name (ARN) of the replication task.

tables_to_reload: Vec<TableToReload>

The name and schema of the table to be reloaded.

Trait Implementations

impl Clone for ReloadTablesMessage[src]

impl Debug for ReloadTablesMessage[src]

impl Default for ReloadTablesMessage[src]

impl PartialEq<ReloadTablesMessage> for ReloadTablesMessage[src]

impl Serialize for ReloadTablesMessage[src]

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