pub struct DescribeReplicationTaskAssessmentRunsMessage {
pub filters: Option<Vec<Filter>>,
pub marker: Option<String>,
pub max_records: Option<i64>,
}Expand description
Fields§
§filters: Option<Vec<Filter>>Filters applied to the premigration assessment runs described in the form of key-value pairs.
Valid filter names: replication-task-assessment-run-arn, replication-task-arn, replication-instance-arn, status
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.
Trait Implementations§
Source§impl Clone for DescribeReplicationTaskAssessmentRunsMessage
impl Clone for DescribeReplicationTaskAssessmentRunsMessage
Source§fn clone(&self) -> DescribeReplicationTaskAssessmentRunsMessage
fn clone(&self) -> DescribeReplicationTaskAssessmentRunsMessage
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 DescribeReplicationTaskAssessmentRunsMessage
impl Default for DescribeReplicationTaskAssessmentRunsMessage
Source§fn default() -> DescribeReplicationTaskAssessmentRunsMessage
fn default() -> DescribeReplicationTaskAssessmentRunsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeReplicationTaskAssessmentRunsMessage
impl PartialEq for DescribeReplicationTaskAssessmentRunsMessage
Source§fn eq(&self, other: &DescribeReplicationTaskAssessmentRunsMessage) -> bool
fn eq(&self, other: &DescribeReplicationTaskAssessmentRunsMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeReplicationTaskAssessmentRunsMessage
Auto Trait Implementations§
impl Freeze for DescribeReplicationTaskAssessmentRunsMessage
impl RefUnwindSafe for DescribeReplicationTaskAssessmentRunsMessage
impl Send for DescribeReplicationTaskAssessmentRunsMessage
impl Sync for DescribeReplicationTaskAssessmentRunsMessage
impl Unpin for DescribeReplicationTaskAssessmentRunsMessage
impl UnwindSafe for DescribeReplicationTaskAssessmentRunsMessage
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