#[non_exhaustive]pub struct ReloadTablesInput { /* private fields */ }
Implementations§
source§impl ReloadTablesInput
impl ReloadTablesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReloadTables, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReloadTables, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ReloadTables
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ReloadTablesInput
.
source§impl ReloadTablesInput
impl ReloadTablesInput
sourcepub fn replication_task_arn(&self) -> Option<&str>
pub fn replication_task_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the replication task.
sourcepub fn tables_to_reload(&self) -> Option<&[TableToReload]>
pub fn tables_to_reload(&self) -> Option<&[TableToReload]>
The name and schema of the table to be reloaded.
sourcepub fn reload_option(&self) -> Option<&ReloadOptionValue>
pub fn reload_option(&self) -> 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.
Trait Implementations§
source§impl Clone for ReloadTablesInput
impl Clone for ReloadTablesInput
source§fn clone(&self) -> ReloadTablesInput
fn clone(&self) -> ReloadTablesInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ReloadTablesInput
impl Debug for ReloadTablesInput
source§impl PartialEq<ReloadTablesInput> for ReloadTablesInput
impl PartialEq<ReloadTablesInput> for ReloadTablesInput
source§fn eq(&self, other: &ReloadTablesInput) -> bool
fn eq(&self, other: &ReloadTablesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.