#[non_exhaustive]pub struct CreateMembersOutputBuilder { /* private fields */ }
Expand description
A builder for CreateMembersOutput
.
Implementations§
source§impl CreateMembersOutputBuilder
impl CreateMembersOutputBuilder
sourcepub fn unprocessed_accounts(self, input: Result) -> Self
pub fn unprocessed_accounts(self, input: Result) -> Self
Appends an item to unprocessed_accounts
.
To override the contents of this collection use set_unprocessed_accounts
.
The list of Amazon Web Services accounts that were not processed. For each account, the list includes the account ID and the email address.
sourcepub fn set_unprocessed_accounts(self, input: Option<Vec<Result>>) -> Self
pub fn set_unprocessed_accounts(self, input: Option<Vec<Result>>) -> Self
The list of Amazon Web Services accounts that were not processed. For each account, the list includes the account ID and the email address.
sourcepub fn get_unprocessed_accounts(&self) -> &Option<Vec<Result>>
pub fn get_unprocessed_accounts(&self) -> &Option<Vec<Result>>
The list of Amazon Web Services accounts that were not processed. For each account, the list includes the account ID and the email address.
sourcepub fn build(self) -> CreateMembersOutput
pub fn build(self) -> CreateMembersOutput
Consumes the builder and constructs a CreateMembersOutput
.
Trait Implementations§
source§impl Clone for CreateMembersOutputBuilder
impl Clone for CreateMembersOutputBuilder
source§fn clone(&self) -> CreateMembersOutputBuilder
fn clone(&self) -> CreateMembersOutputBuilder
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 Debug for CreateMembersOutputBuilder
impl Debug for CreateMembersOutputBuilder
source§impl Default for CreateMembersOutputBuilder
impl Default for CreateMembersOutputBuilder
source§fn default() -> CreateMembersOutputBuilder
fn default() -> CreateMembersOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateMembersOutputBuilder
impl PartialEq for CreateMembersOutputBuilder
source§fn eq(&self, other: &CreateMembersOutputBuilder) -> bool
fn eq(&self, other: &CreateMembersOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateMembersOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateMembersOutputBuilder
impl RefUnwindSafe for CreateMembersOutputBuilder
impl Send for CreateMembersOutputBuilder
impl Sync for CreateMembersOutputBuilder
impl Unpin for CreateMembersOutputBuilder
impl UnwindSafe for CreateMembersOutputBuilder
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.