Struct aws_sdk_databasemigration::operation::describe_replication_table_statistics::builders::DescribeReplicationTableStatisticsOutputBuilder
source · #[non_exhaustive]pub struct DescribeReplicationTableStatisticsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeReplicationTableStatisticsOutput
.
Implementations§
source§impl DescribeReplicationTableStatisticsOutputBuilder
impl DescribeReplicationTableStatisticsOutputBuilder
sourcepub fn replication_config_arn(self, input: impl Into<String>) -> Self
pub fn replication_config_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name of the replication config.
sourcepub fn set_replication_config_arn(self, input: Option<String>) -> Self
pub fn set_replication_config_arn(self, input: Option<String>) -> Self
The Amazon Resource Name of the replication config.
sourcepub fn get_replication_config_arn(&self) -> &Option<String>
pub fn get_replication_config_arn(&self) -> &Option<String>
The Amazon Resource Name of the replication config.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
sourcepub fn replication_table_statistics(self, input: TableStatistics) -> Self
pub fn replication_table_statistics(self, input: TableStatistics) -> Self
Appends an item to replication_table_statistics
.
To override the contents of this collection use set_replication_table_statistics
.
Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.
sourcepub fn set_replication_table_statistics(
self,
input: Option<Vec<TableStatistics>>,
) -> Self
pub fn set_replication_table_statistics( self, input: Option<Vec<TableStatistics>>, ) -> Self
Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.
sourcepub fn get_replication_table_statistics(&self) -> &Option<Vec<TableStatistics>>
pub fn get_replication_table_statistics(&self) -> &Option<Vec<TableStatistics>>
Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.
sourcepub fn build(self) -> DescribeReplicationTableStatisticsOutput
pub fn build(self) -> DescribeReplicationTableStatisticsOutput
Consumes the builder and constructs a DescribeReplicationTableStatisticsOutput
.
Trait Implementations§
source§impl Clone for DescribeReplicationTableStatisticsOutputBuilder
impl Clone for DescribeReplicationTableStatisticsOutputBuilder
source§fn clone(&self) -> DescribeReplicationTableStatisticsOutputBuilder
fn clone(&self) -> DescribeReplicationTableStatisticsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeReplicationTableStatisticsOutputBuilder
impl Default for DescribeReplicationTableStatisticsOutputBuilder
source§fn default() -> DescribeReplicationTableStatisticsOutputBuilder
fn default() -> DescribeReplicationTableStatisticsOutputBuilder
source§impl PartialEq for DescribeReplicationTableStatisticsOutputBuilder
impl PartialEq for DescribeReplicationTableStatisticsOutputBuilder
source§fn eq(&self, other: &DescribeReplicationTableStatisticsOutputBuilder) -> bool
fn eq(&self, other: &DescribeReplicationTableStatisticsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeReplicationTableStatisticsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeReplicationTableStatisticsOutputBuilder
impl RefUnwindSafe for DescribeReplicationTableStatisticsOutputBuilder
impl Send for DescribeReplicationTableStatisticsOutputBuilder
impl Sync for DescribeReplicationTableStatisticsOutputBuilder
impl Unpin for DescribeReplicationTableStatisticsOutputBuilder
impl UnwindSafe for DescribeReplicationTableStatisticsOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more