pub struct DescribeReplicationInstanceTaskLogsMessage {
pub marker: Option<String>,
pub max_records: Option<i64>,
pub replication_instance_arn: String,
}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_instance_arn: StringThe Amazon Resource Name (ARN) of the replication instance.
Trait Implementations§
Source§impl Clone for DescribeReplicationInstanceTaskLogsMessage
impl Clone for DescribeReplicationInstanceTaskLogsMessage
Source§fn clone(&self) -> DescribeReplicationInstanceTaskLogsMessage
fn clone(&self) -> DescribeReplicationInstanceTaskLogsMessage
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 DescribeReplicationInstanceTaskLogsMessage
impl Default for DescribeReplicationInstanceTaskLogsMessage
Source§fn default() -> DescribeReplicationInstanceTaskLogsMessage
fn default() -> DescribeReplicationInstanceTaskLogsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeReplicationInstanceTaskLogsMessage
impl PartialEq for DescribeReplicationInstanceTaskLogsMessage
Source§fn eq(&self, other: &DescribeReplicationInstanceTaskLogsMessage) -> bool
fn eq(&self, other: &DescribeReplicationInstanceTaskLogsMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeReplicationInstanceTaskLogsMessage
Auto Trait Implementations§
impl Freeze for DescribeReplicationInstanceTaskLogsMessage
impl RefUnwindSafe for DescribeReplicationInstanceTaskLogsMessage
impl Send for DescribeReplicationInstanceTaskLogsMessage
impl Sync for DescribeReplicationInstanceTaskLogsMessage
impl Unpin for DescribeReplicationInstanceTaskLogsMessage
impl UnwindSafe for DescribeReplicationInstanceTaskLogsMessage
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