#[non_exhaustive]pub struct CreateMembersOutput {
pub members: Option<Vec<MemberDetail>>,
pub unprocessed_accounts: Option<Vec<UnprocessedAccount>>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.members: 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.
unprocessed_accounts: 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.
Implementations§
source§impl CreateMembersOutput
impl CreateMembersOutput
sourcepub fn members(&self) -> &[MemberDetail]
pub fn members(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .members.is_none().
sourcepub fn unprocessed_accounts(&self) -> &[UnprocessedAccount]
pub fn unprocessed_accounts(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .unprocessed_accounts.is_none().
source§impl CreateMembersOutput
impl CreateMembersOutput
sourcepub fn builder() -> CreateMembersOutputBuilder
pub fn builder() -> CreateMembersOutputBuilder
Creates a new builder-style object to manufacture CreateMembersOutput.
Trait Implementations§
source§impl Clone for CreateMembersOutput
impl Clone for CreateMembersOutput
source§fn clone(&self) -> CreateMembersOutput
fn clone(&self) -> CreateMembersOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateMembersOutput
impl Debug for CreateMembersOutput
source§impl PartialEq for CreateMembersOutput
impl PartialEq for CreateMembersOutput
source§fn eq(&self, other: &CreateMembersOutput) -> bool
fn eq(&self, other: &CreateMembersOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateMembersOutput
impl RequestId for CreateMembersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for CreateMembersOutput
Auto Trait Implementations§
impl Freeze for CreateMembersOutput
impl RefUnwindSafe for CreateMembersOutput
impl Send for CreateMembersOutput
impl Sync for CreateMembersOutput
impl Unpin for CreateMembersOutput
impl UnwindSafe for CreateMembersOutput
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