#[non_exhaustive]pub struct ListChecksInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub pillar: Option<RecommendationPillar>,
pub aws_service: Option<String>,
pub source: Option<RecommendationSource>,
pub language: Option<RecommendationLanguage>,
}
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.next_token: Option<String>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
max_results: Option<i32>
The maximum number of results to return per page.
pillar: Option<RecommendationPillar>
The pillar of the check
aws_service: Option<String>
The aws service associated with the check
source: Option<RecommendationSource>
The source of the check
language: Option<RecommendationLanguage>
The ISO 639-1 code for the language that you want your checks to appear in.
Implementations§
source§impl ListChecksInput
impl ListChecksInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return per page.
sourcepub fn pillar(&self) -> Option<&RecommendationPillar>
pub fn pillar(&self) -> Option<&RecommendationPillar>
The pillar of the check
sourcepub fn aws_service(&self) -> Option<&str>
pub fn aws_service(&self) -> Option<&str>
The aws service associated with the check
sourcepub fn source(&self) -> Option<&RecommendationSource>
pub fn source(&self) -> Option<&RecommendationSource>
The source of the check
sourcepub fn language(&self) -> Option<&RecommendationLanguage>
pub fn language(&self) -> Option<&RecommendationLanguage>
The ISO 639-1 code for the language that you want your checks to appear in.
source§impl ListChecksInput
impl ListChecksInput
sourcepub fn builder() -> ListChecksInputBuilder
pub fn builder() -> ListChecksInputBuilder
Creates a new builder-style object to manufacture ListChecksInput
.
Trait Implementations§
source§impl Clone for ListChecksInput
impl Clone for ListChecksInput
source§fn clone(&self) -> ListChecksInput
fn clone(&self) -> ListChecksInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListChecksInput
impl Debug for ListChecksInput
source§impl PartialEq for ListChecksInput
impl PartialEq for ListChecksInput
source§fn eq(&self, other: &ListChecksInput) -> bool
fn eq(&self, other: &ListChecksInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListChecksInput
Auto Trait Implementations§
impl Freeze for ListChecksInput
impl RefUnwindSafe for ListChecksInput
impl Send for ListChecksInput
impl Sync for ListChecksInput
impl Unpin for ListChecksInput
impl UnwindSafe for ListChecksInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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