pub struct DescribeReplicationTaskAssessmentResultsMessage {
pub marker: Option<String>,
pub max_records: Option<i64>,
pub replication_task_arn: Option<String>,
}Expand description
Fields§
§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 100.
replication_task_arn: Option<String>The Amazon Resource Name (ARN) string that uniquely identifies the task. When this input parameter is specified, the API returns only one result and ignore the values of the MaxRecords and Marker parameters.
Trait Implementations§
Source§impl Clone for DescribeReplicationTaskAssessmentResultsMessage
impl Clone for DescribeReplicationTaskAssessmentResultsMessage
Source§fn clone(&self) -> DescribeReplicationTaskAssessmentResultsMessage
fn clone(&self) -> DescribeReplicationTaskAssessmentResultsMessage
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 DescribeReplicationTaskAssessmentResultsMessage
impl Default for DescribeReplicationTaskAssessmentResultsMessage
Source§fn default() -> DescribeReplicationTaskAssessmentResultsMessage
fn default() -> DescribeReplicationTaskAssessmentResultsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeReplicationTaskAssessmentResultsMessage
impl PartialEq for DescribeReplicationTaskAssessmentResultsMessage
Source§fn eq(&self, other: &DescribeReplicationTaskAssessmentResultsMessage) -> bool
fn eq(&self, other: &DescribeReplicationTaskAssessmentResultsMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeReplicationTaskAssessmentResultsMessage
Auto Trait Implementations§
impl Freeze for DescribeReplicationTaskAssessmentResultsMessage
impl RefUnwindSafe for DescribeReplicationTaskAssessmentResultsMessage
impl Send for DescribeReplicationTaskAssessmentResultsMessage
impl Sync for DescribeReplicationTaskAssessmentResultsMessage
impl Unpin for DescribeReplicationTaskAssessmentResultsMessage
impl UnwindSafe for DescribeReplicationTaskAssessmentResultsMessage
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