Struct aws_sdk_detective::operation::batch_get_membership_datasources::BatchGetMembershipDatasourcesOutput
source · #[non_exhaustive]pub struct BatchGetMembershipDatasourcesOutput {
pub membership_datasources: Option<Vec<MembershipDatasources>>,
pub unprocessed_graphs: Option<Vec<UnprocessedGraph>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.membership_datasources: Option<Vec<MembershipDatasources>>
Details on the data source package history for an member of the behavior graph.
unprocessed_graphs: Option<Vec<UnprocessedGraph>>
Graphs that data source package information could not be retrieved for.
Implementations§
source§impl BatchGetMembershipDatasourcesOutput
impl BatchGetMembershipDatasourcesOutput
sourcepub fn membership_datasources(&self) -> &[MembershipDatasources]
pub fn membership_datasources(&self) -> &[MembershipDatasources]
Details on the data source package history for an member of 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 .membership_datasources.is_none()
.
sourcepub fn unprocessed_graphs(&self) -> &[UnprocessedGraph]
pub fn unprocessed_graphs(&self) -> &[UnprocessedGraph]
Graphs that data source package information could not be retrieved for.
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_graphs.is_none()
.
source§impl BatchGetMembershipDatasourcesOutput
impl BatchGetMembershipDatasourcesOutput
sourcepub fn builder() -> BatchGetMembershipDatasourcesOutputBuilder
pub fn builder() -> BatchGetMembershipDatasourcesOutputBuilder
Creates a new builder-style object to manufacture BatchGetMembershipDatasourcesOutput
.
Trait Implementations§
source§impl Clone for BatchGetMembershipDatasourcesOutput
impl Clone for BatchGetMembershipDatasourcesOutput
source§fn clone(&self) -> BatchGetMembershipDatasourcesOutput
fn clone(&self) -> BatchGetMembershipDatasourcesOutput
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 PartialEq for BatchGetMembershipDatasourcesOutput
impl PartialEq for BatchGetMembershipDatasourcesOutput
source§fn eq(&self, other: &BatchGetMembershipDatasourcesOutput) -> bool
fn eq(&self, other: &BatchGetMembershipDatasourcesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchGetMembershipDatasourcesOutput
impl RequestId for BatchGetMembershipDatasourcesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for BatchGetMembershipDatasourcesOutput
Auto Trait Implementations§
impl Freeze for BatchGetMembershipDatasourcesOutput
impl RefUnwindSafe for BatchGetMembershipDatasourcesOutput
impl Send for BatchGetMembershipDatasourcesOutput
impl Sync for BatchGetMembershipDatasourcesOutput
impl Unpin for BatchGetMembershipDatasourcesOutput
impl UnwindSafe for BatchGetMembershipDatasourcesOutput
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>
Creates a shared type from an unshared type.