Struct aws_sdk_databasemigration::operation::describe_table_statistics::DescribeTableStatisticsOutput
source · #[non_exhaustive]pub struct DescribeTableStatisticsOutput {
pub replication_task_arn: Option<String>,
pub table_statistics: Option<Vec<TableStatistics>>,
pub marker: Option<String>,
/* private fields */
}
Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
table_statistics: Option<Vec<TableStatistics>>
The table statistics.
marker: 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
.
Implementations§
source§impl DescribeTableStatisticsOutput
impl DescribeTableStatisticsOutput
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 table_statistics(&self) -> Option<&[TableStatistics]>
pub fn table_statistics(&self) -> Option<&[TableStatistics]>
The table statistics.
source§impl DescribeTableStatisticsOutput
impl DescribeTableStatisticsOutput
sourcepub fn builder() -> DescribeTableStatisticsOutputBuilder
pub fn builder() -> DescribeTableStatisticsOutputBuilder
Creates a new builder-style object to manufacture DescribeTableStatisticsOutput
.
Trait Implementations§
source§impl Clone for DescribeTableStatisticsOutput
impl Clone for DescribeTableStatisticsOutput
source§fn clone(&self) -> DescribeTableStatisticsOutput
fn clone(&self) -> DescribeTableStatisticsOutput
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 PartialEq<DescribeTableStatisticsOutput> for DescribeTableStatisticsOutput
impl PartialEq<DescribeTableStatisticsOutput> for DescribeTableStatisticsOutput
source§fn eq(&self, other: &DescribeTableStatisticsOutput) -> bool
fn eq(&self, other: &DescribeTableStatisticsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeTableStatisticsOutput
impl RequestId for DescribeTableStatisticsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeTableStatisticsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeTableStatisticsOutput
impl Send for DescribeTableStatisticsOutput
impl Sync for DescribeTableStatisticsOutput
impl Unpin for DescribeTableStatisticsOutput
impl UnwindSafe for DescribeTableStatisticsOutput
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
Mutably borrows from an owned value. Read more