Struct aws_sdk_databasemigration::input::ReloadTablesInput [−][src]
#[non_exhaustive]pub struct ReloadTablesInput {
pub replication_task_arn: Option<String>,
pub tables_to_reload: Option<Vec<TableToReload>>,
pub reload_option: Option<ReloadOptionValue>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.replication_task_arn: Option<String>
The Amazon Resource Name (ARN) of the replication task.
tables_to_reload: Option<Vec<TableToReload>>
The name and schema of the table to be reloaded.
reload_option: Option<ReloadOptionValue>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReloadTables, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReloadTables, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ReloadTables
>
Creates a new builder-style object to manufacture ReloadTablesInput
The Amazon Resource Name (ARN) of the replication task.
The name and schema of the table to be reloaded.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ReloadTablesInput
impl Send for ReloadTablesInput
impl Sync for ReloadTablesInput
impl Unpin for ReloadTablesInput
impl UnwindSafe for ReloadTablesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more