Struct aws_sdk_databasemigration::operation::batch_start_recommendations::builders::BatchStartRecommendationsOutputBuilder
source · #[non_exhaustive]pub struct BatchStartRecommendationsOutputBuilder { /* private fields */ }
Expand description
A builder for BatchStartRecommendationsOutput
.
Implementations§
source§impl BatchStartRecommendationsOutputBuilder
impl BatchStartRecommendationsOutputBuilder
sourcepub fn error_entries(self, input: BatchStartRecommendationsErrorEntry) -> Self
pub fn error_entries(self, input: BatchStartRecommendationsErrorEntry) -> Self
Appends an item to error_entries
.
To override the contents of this collection use set_error_entries
.
A list with error details about the analysis of each source database.
sourcepub fn set_error_entries(
self,
input: Option<Vec<BatchStartRecommendationsErrorEntry>>
) -> Self
pub fn set_error_entries( self, input: Option<Vec<BatchStartRecommendationsErrorEntry>> ) -> Self
A list with error details about the analysis of each source database.
sourcepub fn get_error_entries(
&self
) -> &Option<Vec<BatchStartRecommendationsErrorEntry>>
pub fn get_error_entries( &self ) -> &Option<Vec<BatchStartRecommendationsErrorEntry>>
A list with error details about the analysis of each source database.
sourcepub fn build(self) -> BatchStartRecommendationsOutput
pub fn build(self) -> BatchStartRecommendationsOutput
Consumes the builder and constructs a BatchStartRecommendationsOutput
.
Trait Implementations§
source§impl Clone for BatchStartRecommendationsOutputBuilder
impl Clone for BatchStartRecommendationsOutputBuilder
source§fn clone(&self) -> BatchStartRecommendationsOutputBuilder
fn clone(&self) -> BatchStartRecommendationsOutputBuilder
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 Default for BatchStartRecommendationsOutputBuilder
impl Default for BatchStartRecommendationsOutputBuilder
source§fn default() -> BatchStartRecommendationsOutputBuilder
fn default() -> BatchStartRecommendationsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchStartRecommendationsOutputBuilder
impl PartialEq for BatchStartRecommendationsOutputBuilder
source§fn eq(&self, other: &BatchStartRecommendationsOutputBuilder) -> bool
fn eq(&self, other: &BatchStartRecommendationsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchStartRecommendationsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchStartRecommendationsOutputBuilder
impl RefUnwindSafe for BatchStartRecommendationsOutputBuilder
impl Send for BatchStartRecommendationsOutputBuilder
impl Sync for BatchStartRecommendationsOutputBuilder
impl Unpin for BatchStartRecommendationsOutputBuilder
impl UnwindSafe for BatchStartRecommendationsOutputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.