Struct aws_sdk_databasemigration::operation::describe_replication_task_assessment_runs::builders::DescribeReplicationTaskAssessmentRunsOutputBuilder
source · #[non_exhaustive]pub struct DescribeReplicationTaskAssessmentRunsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeReplicationTaskAssessmentRunsOutput
.
Implementations§
source§impl DescribeReplicationTaskAssessmentRunsOutputBuilder
impl DescribeReplicationTaskAssessmentRunsOutputBuilder
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
A pagination token returned for you to pass to a subsequent request. If you pass this token as the Marker
value in a subsequent request, the response includes only records beyond the marker, up to the value specified in the request by MaxRecords
.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
A pagination token returned for you to pass to a subsequent request. If you pass this token as the Marker
value in a subsequent request, the response includes only records beyond the marker, up to the value specified in the request by MaxRecords
.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
A pagination token returned for you to pass to a subsequent request. If you pass this token as the Marker
value in a subsequent request, the response includes only records beyond the marker, up to the value specified in the request by MaxRecords
.
sourcepub fn replication_task_assessment_runs(
self,
input: ReplicationTaskAssessmentRun
) -> Self
pub fn replication_task_assessment_runs( self, input: ReplicationTaskAssessmentRun ) -> Self
Appends an item to replication_task_assessment_runs
.
To override the contents of this collection use set_replication_task_assessment_runs
.
One or more premigration assessment runs as specified by Filters
.
sourcepub fn set_replication_task_assessment_runs(
self,
input: Option<Vec<ReplicationTaskAssessmentRun>>
) -> Self
pub fn set_replication_task_assessment_runs( self, input: Option<Vec<ReplicationTaskAssessmentRun>> ) -> Self
One or more premigration assessment runs as specified by Filters
.
sourcepub fn get_replication_task_assessment_runs(
&self
) -> &Option<Vec<ReplicationTaskAssessmentRun>>
pub fn get_replication_task_assessment_runs( &self ) -> &Option<Vec<ReplicationTaskAssessmentRun>>
One or more premigration assessment runs as specified by Filters
.
sourcepub fn build(self) -> DescribeReplicationTaskAssessmentRunsOutput
pub fn build(self) -> DescribeReplicationTaskAssessmentRunsOutput
Consumes the builder and constructs a DescribeReplicationTaskAssessmentRunsOutput
.
Trait Implementations§
source§impl Clone for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl Clone for DescribeReplicationTaskAssessmentRunsOutputBuilder
source§fn clone(&self) -> DescribeReplicationTaskAssessmentRunsOutputBuilder
fn clone(&self) -> DescribeReplicationTaskAssessmentRunsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl Default for DescribeReplicationTaskAssessmentRunsOutputBuilder
source§fn default() -> DescribeReplicationTaskAssessmentRunsOutputBuilder
fn default() -> DescribeReplicationTaskAssessmentRunsOutputBuilder
source§impl PartialEq for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl PartialEq for DescribeReplicationTaskAssessmentRunsOutputBuilder
source§fn eq(&self, other: &DescribeReplicationTaskAssessmentRunsOutputBuilder) -> bool
fn eq(&self, other: &DescribeReplicationTaskAssessmentRunsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeReplicationTaskAssessmentRunsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl RefUnwindSafe for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl Send for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl Sync for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl Unpin for DescribeReplicationTaskAssessmentRunsOutputBuilder
impl UnwindSafe for DescribeReplicationTaskAssessmentRunsOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more