pub struct DescribeTableStatisticsMessage {
pub filters: Option<Vec<Filter>>,
pub marker: Option<String>,
pub max_records: Option<i64>,
pub replication_task_arn: String,
}Expand description
Fields§
§filters: Option<Vec<Filter>>Filters applied to the describe table statistics action.
Valid filter names: schema-name | table-name | table-state
A combination of filters creates an AND condition where each record matches all specified filters.
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.
max_records: Option<i64> The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.
Default: 100
Constraints: Minimum 20, maximum 500.
replication_task_arn: StringThe Amazon Resource Name (ARN) of the replication task.
Trait Implementations§
Source§impl Clone for DescribeTableStatisticsMessage
impl Clone for DescribeTableStatisticsMessage
Source§fn clone(&self) -> DescribeTableStatisticsMessage
fn clone(&self) -> DescribeTableStatisticsMessage
Returns a duplicate 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 Default for DescribeTableStatisticsMessage
impl Default for DescribeTableStatisticsMessage
Source§fn default() -> DescribeTableStatisticsMessage
fn default() -> DescribeTableStatisticsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeTableStatisticsMessage
impl PartialEq for DescribeTableStatisticsMessage
Source§fn eq(&self, other: &DescribeTableStatisticsMessage) -> bool
fn eq(&self, other: &DescribeTableStatisticsMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeTableStatisticsMessage
Auto Trait Implementations§
impl Freeze for DescribeTableStatisticsMessage
impl RefUnwindSafe for DescribeTableStatisticsMessage
impl Send for DescribeTableStatisticsMessage
impl Sync for DescribeTableStatisticsMessage
impl Unpin for DescribeTableStatisticsMessage
impl UnwindSafe for DescribeTableStatisticsMessage
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