pub struct DescribeReplicationInstanceTaskLogsResponse {
pub marker: Option<String>,
pub replication_instance_arn: Option<String>,
pub replication_instance_task_logs: Option<Vec<ReplicationInstanceTaskLog>>,
}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.
replication_instance_arn: Option<String>The Amazon Resource Name (ARN) of the replication instance.
replication_instance_task_logs: Option<Vec<ReplicationInstanceTaskLog>>An array of replication task log metadata. Each member of the array contains the replication task name, ARN, and task log size (in bytes).
Trait Implementations§
Source§impl Clone for DescribeReplicationInstanceTaskLogsResponse
impl Clone for DescribeReplicationInstanceTaskLogsResponse
Source§fn clone(&self) -> DescribeReplicationInstanceTaskLogsResponse
fn clone(&self) -> DescribeReplicationInstanceTaskLogsResponse
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 DescribeReplicationInstanceTaskLogsResponse
impl Default for DescribeReplicationInstanceTaskLogsResponse
Source§fn default() -> DescribeReplicationInstanceTaskLogsResponse
fn default() -> DescribeReplicationInstanceTaskLogsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeReplicationInstanceTaskLogsResponse
impl<'de> Deserialize<'de> for DescribeReplicationInstanceTaskLogsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeReplicationInstanceTaskLogsResponse
impl PartialEq for DescribeReplicationInstanceTaskLogsResponse
Source§fn eq(&self, other: &DescribeReplicationInstanceTaskLogsResponse) -> bool
fn eq(&self, other: &DescribeReplicationInstanceTaskLogsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeReplicationInstanceTaskLogsResponse
Auto Trait Implementations§
impl Freeze for DescribeReplicationInstanceTaskLogsResponse
impl RefUnwindSafe for DescribeReplicationInstanceTaskLogsResponse
impl Send for DescribeReplicationInstanceTaskLogsResponse
impl Sync for DescribeReplicationInstanceTaskLogsResponse
impl Unpin for DescribeReplicationInstanceTaskLogsResponse
impl UnwindSafe for DescribeReplicationInstanceTaskLogsResponse
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