#[non_exhaustive]pub struct GetMembersOutputBuilder { /* private fields */ }
Expand description
A builder for GetMembersOutput
.
Implementations§
source§impl GetMembersOutputBuilder
impl GetMembersOutputBuilder
sourcepub fn members(self, input: Member) -> Self
pub fn members(self, input: Member) -> Self
Appends an item to members
.
To override the contents of this collection use set_members
.
The list of details about the Security Hub member accounts.
sourcepub fn set_members(self, input: Option<Vec<Member>>) -> Self
pub fn set_members(self, input: Option<Vec<Member>>) -> Self
The list of details about the Security Hub member accounts.
sourcepub fn get_members(&self) -> &Option<Vec<Member>>
pub fn get_members(&self) -> &Option<Vec<Member>>
The list of details about the Security Hub member accounts.
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 could not be 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 could not be 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 could not be processed. For each account, the list includes the account ID and the email address.
sourcepub fn build(self) -> GetMembersOutput
pub fn build(self) -> GetMembersOutput
Consumes the builder and constructs a GetMembersOutput
.
Trait Implementations§
source§impl Clone for GetMembersOutputBuilder
impl Clone for GetMembersOutputBuilder
source§fn clone(&self) -> GetMembersOutputBuilder
fn clone(&self) -> GetMembersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetMembersOutputBuilder
impl Debug for GetMembersOutputBuilder
source§impl Default for GetMembersOutputBuilder
impl Default for GetMembersOutputBuilder
source§fn default() -> GetMembersOutputBuilder
fn default() -> GetMembersOutputBuilder
source§impl PartialEq for GetMembersOutputBuilder
impl PartialEq for GetMembersOutputBuilder
source§fn eq(&self, other: &GetMembersOutputBuilder) -> bool
fn eq(&self, other: &GetMembersOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMembersOutputBuilder
Auto Trait Implementations§
impl Freeze for GetMembersOutputBuilder
impl RefUnwindSafe for GetMembersOutputBuilder
impl Send for GetMembersOutputBuilder
impl Sync for GetMembersOutputBuilder
impl Unpin for GetMembersOutputBuilder
impl UnwindSafe for GetMembersOutputBuilder
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