pub struct DescribeReplicationTasksMessage {
pub filters: Option<Vec<Filter>>,
pub marker: Option<String>,
pub max_records: Option<i64>,
pub without_settings: Option<bool>,
}Expand description
Fields§
§filters: Option<Vec<Filter>>Filters applied to the describe action.
Valid filter names: replication-task-arn | replication-task-id | migration-type | endpoint-arn | replication-instance-arn
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.
without_settings: Option<bool>An option to set to avoid returning information about settings. Use this to reduce overhead when setting information is too large. To use this option, choose true; otherwise, choose false (the default).
Trait Implementations§
Source§impl Clone for DescribeReplicationTasksMessage
impl Clone for DescribeReplicationTasksMessage
Source§fn clone(&self) -> DescribeReplicationTasksMessage
fn clone(&self) -> DescribeReplicationTasksMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeReplicationTasksMessage
impl Default for DescribeReplicationTasksMessage
Source§fn default() -> DescribeReplicationTasksMessage
fn default() -> DescribeReplicationTasksMessage
Source§impl PartialEq for DescribeReplicationTasksMessage
impl PartialEq for DescribeReplicationTasksMessage
Source§fn eq(&self, other: &DescribeReplicationTasksMessage) -> bool
fn eq(&self, other: &DescribeReplicationTasksMessage) -> bool
self and other values to be equal, and is used by ==.