Struct aws_sdk_databasemigration::operation::describe_replication_task_individual_assessments::builders::DescribeReplicationTaskIndividualAssessmentsOutputBuilder
source · #[non_exhaustive]pub struct DescribeReplicationTaskIndividualAssessmentsOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeReplicationTaskIndividualAssessmentsOutput
.
Implementations§
source§impl DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl DescribeReplicationTaskIndividualAssessmentsOutputBuilder
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_individual_assessments(
self,
input: ReplicationTaskIndividualAssessment
) -> Self
pub fn replication_task_individual_assessments( self, input: ReplicationTaskIndividualAssessment ) -> Self
Appends an item to replication_task_individual_assessments
.
To override the contents of this collection use set_replication_task_individual_assessments
.
One or more individual assessments as specified by Filters
.
sourcepub fn set_replication_task_individual_assessments(
self,
input: Option<Vec<ReplicationTaskIndividualAssessment>>
) -> Self
pub fn set_replication_task_individual_assessments( self, input: Option<Vec<ReplicationTaskIndividualAssessment>> ) -> Self
One or more individual assessments as specified by Filters
.
sourcepub fn get_replication_task_individual_assessments(
&self
) -> &Option<Vec<ReplicationTaskIndividualAssessment>>
pub fn get_replication_task_individual_assessments( &self ) -> &Option<Vec<ReplicationTaskIndividualAssessment>>
One or more individual assessments as specified by Filters
.
sourcepub fn build(self) -> DescribeReplicationTaskIndividualAssessmentsOutput
pub fn build(self) -> DescribeReplicationTaskIndividualAssessmentsOutput
Consumes the builder and constructs a DescribeReplicationTaskIndividualAssessmentsOutput
.
Trait Implementations§
source§impl Clone for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl Clone for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
source§fn clone(&self) -> DescribeReplicationTaskIndividualAssessmentsOutputBuilder
fn clone(&self) -> DescribeReplicationTaskIndividualAssessmentsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl Default for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
source§fn default() -> DescribeReplicationTaskIndividualAssessmentsOutputBuilder
fn default() -> DescribeReplicationTaskIndividualAssessmentsOutputBuilder
source§impl PartialEq for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl PartialEq for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
source§fn eq(
&self,
other: &DescribeReplicationTaskIndividualAssessmentsOutputBuilder
) -> bool
fn eq( &self, other: &DescribeReplicationTaskIndividualAssessmentsOutputBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl RefUnwindSafe for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl Send for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl Sync for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl Unpin for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
impl UnwindSafe for DescribeReplicationTaskIndividualAssessmentsOutputBuilder
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