#[non_exhaustive]pub struct CreateMembersOutputBuilder { /* private fields */ }Expand description
A builder for CreateMembersOutput.
Implementations§
source§impl CreateMembersOutputBuilder
impl CreateMembersOutputBuilder
sourcepub fn members(self, input: MemberDetail) -> Self
pub fn members(self, input: MemberDetail) -> Self
Appends an item to members.
To override the contents of this collection use set_members.
The set of member account invitation or enablement requests that Detective was able to process. This includes accounts that are being verified, that failed verification, and that passed verification and are being sent an invitation or are being enabled.
sourcepub fn set_members(self, input: Option<Vec<MemberDetail>>) -> Self
pub fn set_members(self, input: Option<Vec<MemberDetail>>) -> Self
The set of member account invitation or enablement requests that Detective was able to process. This includes accounts that are being verified, that failed verification, and that passed verification and are being sent an invitation or are being enabled.
sourcepub fn get_members(&self) -> &Option<Vec<MemberDetail>>
pub fn get_members(&self) -> &Option<Vec<MemberDetail>>
The set of member account invitation or enablement requests that Detective was able to process. This includes accounts that are being verified, that failed verification, and that passed verification and are being sent an invitation or are being enabled.
sourcepub fn unprocessed_accounts(self, input: UnprocessedAccount) -> Self
pub fn unprocessed_accounts(self, input: UnprocessedAccount) -> Self
Appends an item to unprocessed_accounts.
To override the contents of this collection use set_unprocessed_accounts.
The list of accounts for which Detective was unable to process the invitation or enablement request. For each account, the list provides the reason why the request could not be processed. The list includes accounts that are already member accounts in the behavior graph.
sourcepub fn set_unprocessed_accounts(
self,
input: Option<Vec<UnprocessedAccount>>,
) -> Self
pub fn set_unprocessed_accounts( self, input: Option<Vec<UnprocessedAccount>>, ) -> Self
The list of accounts for which Detective was unable to process the invitation or enablement request. For each account, the list provides the reason why the request could not be processed. The list includes accounts that are already member accounts in the behavior graph.
sourcepub fn get_unprocessed_accounts(&self) -> &Option<Vec<UnprocessedAccount>>
pub fn get_unprocessed_accounts(&self) -> &Option<Vec<UnprocessedAccount>>
The list of accounts for which Detective was unable to process the invitation or enablement request. For each account, the list provides the reason why the request could not be processed. The list includes accounts that are already member accounts in the behavior graph.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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