#[non_exhaustive]pub struct SearchVulnerabilitiesInput {
pub filter_criteria: Option<SearchVulnerabilitiesFilterCriteria>,
pub next_token: Option<String>,
}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.filter_criteria: Option<SearchVulnerabilitiesFilterCriteria>The criteria used to filter the results of a vulnerability search.
next_token: Option<String>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
Implementations§
source§impl SearchVulnerabilitiesInput
impl SearchVulnerabilitiesInput
sourcepub fn filter_criteria(&self) -> Option<&SearchVulnerabilitiesFilterCriteria>
pub fn filter_criteria(&self) -> Option<&SearchVulnerabilitiesFilterCriteria>
The criteria used to filter the results of a vulnerability search.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
source§impl SearchVulnerabilitiesInput
impl SearchVulnerabilitiesInput
sourcepub fn builder() -> SearchVulnerabilitiesInputBuilder
pub fn builder() -> SearchVulnerabilitiesInputBuilder
Creates a new builder-style object to manufacture SearchVulnerabilitiesInput.
Trait Implementations§
source§impl Clone for SearchVulnerabilitiesInput
impl Clone for SearchVulnerabilitiesInput
source§fn clone(&self) -> SearchVulnerabilitiesInput
fn clone(&self) -> SearchVulnerabilitiesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SearchVulnerabilitiesInput
impl Debug for SearchVulnerabilitiesInput
source§impl PartialEq for SearchVulnerabilitiesInput
impl PartialEq for SearchVulnerabilitiesInput
source§fn eq(&self, other: &SearchVulnerabilitiesInput) -> bool
fn eq(&self, other: &SearchVulnerabilitiesInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SearchVulnerabilitiesInput
Auto Trait Implementations§
impl Freeze for SearchVulnerabilitiesInput
impl RefUnwindSafe for SearchVulnerabilitiesInput
impl Send for SearchVulnerabilitiesInput
impl Sync for SearchVulnerabilitiesInput
impl Unpin for SearchVulnerabilitiesInput
impl UnwindSafe for SearchVulnerabilitiesInput
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