Struct aws_sdk_detective::operation::list_graphs::ListGraphsOutput
source · #[non_exhaustive]pub struct ListGraphsOutput {
pub graph_list: Option<Vec<Graph>>,
pub next_token: Option<String>,
/* 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.graph_list: Option<Vec<Graph>>A list of behavior graphs that the account is an administrator account for.
next_token: Option<String>If there are more behavior graphs remaining in the results, then this is the pagination token to use to request the next page of behavior graphs.
Implementations§
source§impl ListGraphsOutput
impl ListGraphsOutput
sourcepub fn graph_list(&self) -> &[Graph]
pub fn graph_list(&self) -> &[Graph]
A list of behavior graphs that the account is an administrator account 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 .graph_list.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If there are more behavior graphs remaining in the results, then this is the pagination token to use to request the next page of behavior graphs.
source§impl ListGraphsOutput
impl ListGraphsOutput
sourcepub fn builder() -> ListGraphsOutputBuilder
pub fn builder() -> ListGraphsOutputBuilder
Creates a new builder-style object to manufacture ListGraphsOutput.
Trait Implementations§
source§impl Clone for ListGraphsOutput
impl Clone for ListGraphsOutput
source§fn clone(&self) -> ListGraphsOutput
fn clone(&self) -> ListGraphsOutput
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 ListGraphsOutput
impl Debug for ListGraphsOutput
source§impl PartialEq for ListGraphsOutput
impl PartialEq for ListGraphsOutput
source§fn eq(&self, other: &ListGraphsOutput) -> bool
fn eq(&self, other: &ListGraphsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListGraphsOutput
impl RequestId for ListGraphsOutput
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 ListGraphsOutput
Auto Trait Implementations§
impl Freeze for ListGraphsOutput
impl RefUnwindSafe for ListGraphsOutput
impl Send for ListGraphsOutput
impl Sync for ListGraphsOutput
impl Unpin for ListGraphsOutput
impl UnwindSafe for ListGraphsOutput
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.