#[non_exhaustive]pub struct ListRecommendationsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub type: Option<RecommendationType>,
pub status: Option<RecommendationStatus>,
pub pillar: Option<RecommendationPillar>,
pub aws_service: Option<String>,
pub source: Option<RecommendationSource>,
pub check_identifier: Option<String>,
pub after_last_updated_at: Option<DateTime>,
pub before_last_updated_at: Option<DateTime>,
}
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.
type: Option<RecommendationType>
The type of the Recommendation
status: Option<RecommendationStatus>
The status of the Recommendation
pillar: Option<RecommendationPillar>
The pillar of the Recommendation
aws_service: Option<String>
The aws service associated with the Recommendation
source: Option<RecommendationSource>
The source of the Recommendation
check_identifier: Option<String>
The check identifier of the Recommendation
after_last_updated_at: Option<DateTime>
After the last update of the Recommendation
before_last_updated_at: Option<DateTime>
Before the last update of the Recommendation
Implementations§
source§impl ListRecommendationsInput
impl ListRecommendationsInput
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 type(&self) -> Option<&RecommendationType>
pub fn type(&self) -> Option<&RecommendationType>
The type of the Recommendation
sourcepub fn status(&self) -> Option<&RecommendationStatus>
pub fn status(&self) -> Option<&RecommendationStatus>
The status of the Recommendation
sourcepub fn pillar(&self) -> Option<&RecommendationPillar>
pub fn pillar(&self) -> Option<&RecommendationPillar>
The pillar of the Recommendation
sourcepub fn aws_service(&self) -> Option<&str>
pub fn aws_service(&self) -> Option<&str>
The aws service associated with the Recommendation
sourcepub fn source(&self) -> Option<&RecommendationSource>
pub fn source(&self) -> Option<&RecommendationSource>
The source of the Recommendation
sourcepub fn check_identifier(&self) -> Option<&str>
pub fn check_identifier(&self) -> Option<&str>
The check identifier of the Recommendation
sourcepub fn after_last_updated_at(&self) -> Option<&DateTime>
pub fn after_last_updated_at(&self) -> Option<&DateTime>
After the last update of the Recommendation
sourcepub fn before_last_updated_at(&self) -> Option<&DateTime>
pub fn before_last_updated_at(&self) -> Option<&DateTime>
Before the last update of the Recommendation
source§impl ListRecommendationsInput
impl ListRecommendationsInput
sourcepub fn builder() -> ListRecommendationsInputBuilder
pub fn builder() -> ListRecommendationsInputBuilder
Creates a new builder-style object to manufacture ListRecommendationsInput
.
Trait Implementations§
source§impl Clone for ListRecommendationsInput
impl Clone for ListRecommendationsInput
source§fn clone(&self) -> ListRecommendationsInput
fn clone(&self) -> ListRecommendationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListRecommendationsInput
impl Debug for ListRecommendationsInput
source§impl PartialEq for ListRecommendationsInput
impl PartialEq for ListRecommendationsInput
source§fn eq(&self, other: &ListRecommendationsInput) -> bool
fn eq(&self, other: &ListRecommendationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListRecommendationsInput
Auto Trait Implementations§
impl Freeze for ListRecommendationsInput
impl RefUnwindSafe for ListRecommendationsInput
impl Send for ListRecommendationsInput
impl Sync for ListRecommendationsInput
impl Unpin for ListRecommendationsInput
impl UnwindSafe for ListRecommendationsInput
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