Struct rusoto_dms::DescribeReplicationInstanceTaskLogsResponse[][src]

pub struct DescribeReplicationInstanceTaskLogsResponse {
    pub marker: Option<String>,
    pub replication_instance_arn: Option<String>,
    pub replication_instance_task_logs: Option<Vec<ReplicationInstanceTaskLog>>,
}

Fields

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.

The Amazon Resource Name (ARN) of the replication instance.

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

impl Default for DescribeReplicationInstanceTaskLogsResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeReplicationInstanceTaskLogsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeReplicationInstanceTaskLogsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeReplicationInstanceTaskLogsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations