Struct aws_sdk_databasemigration::operation::describe_replication_instance_task_logs::DescribeReplicationInstanceTaskLogsOutput
source · #[non_exhaustive]pub struct DescribeReplicationInstanceTaskLogsOutput {
pub replication_instance_arn: Option<String>,
pub replication_instance_task_logs: Option<Vec<ReplicationInstanceTaskLog>>,
pub marker: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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).
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
.
Implementations§
source§impl DescribeReplicationInstanceTaskLogsOutput
impl DescribeReplicationInstanceTaskLogsOutput
sourcepub fn replication_instance_arn(&self) -> Option<&str>
pub fn replication_instance_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the replication instance.
sourcepub fn replication_instance_task_logs(
&self
) -> Option<&[ReplicationInstanceTaskLog]>
pub fn replication_instance_task_logs( &self ) -> Option<&[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).
source§impl DescribeReplicationInstanceTaskLogsOutput
impl DescribeReplicationInstanceTaskLogsOutput
sourcepub fn builder() -> DescribeReplicationInstanceTaskLogsOutputBuilder
pub fn builder() -> DescribeReplicationInstanceTaskLogsOutputBuilder
Creates a new builder-style object to manufacture DescribeReplicationInstanceTaskLogsOutput
.
Trait Implementations§
source§impl Clone for DescribeReplicationInstanceTaskLogsOutput
impl Clone for DescribeReplicationInstanceTaskLogsOutput
source§fn clone(&self) -> DescribeReplicationInstanceTaskLogsOutput
fn clone(&self) -> DescribeReplicationInstanceTaskLogsOutput
Returns a copy 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 PartialEq<DescribeReplicationInstanceTaskLogsOutput> for DescribeReplicationInstanceTaskLogsOutput
impl PartialEq<DescribeReplicationInstanceTaskLogsOutput> for DescribeReplicationInstanceTaskLogsOutput
source§fn eq(&self, other: &DescribeReplicationInstanceTaskLogsOutput) -> bool
fn eq(&self, other: &DescribeReplicationInstanceTaskLogsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeReplicationInstanceTaskLogsOutput
impl RequestId for DescribeReplicationInstanceTaskLogsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeReplicationInstanceTaskLogsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeReplicationInstanceTaskLogsOutput
impl Send for DescribeReplicationInstanceTaskLogsOutput
impl Sync for DescribeReplicationInstanceTaskLogsOutput
impl Unpin for DescribeReplicationInstanceTaskLogsOutput
impl UnwindSafe for DescribeReplicationInstanceTaskLogsOutput
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