Struct aws_sdk_devopsguru::input::SearchInsightsInput
source · [−]#[non_exhaustive]pub struct SearchInsightsInput { /* private fields */ }
Implementations
sourceimpl SearchInsightsInput
impl SearchInsightsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchInsights, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchInsights, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SearchInsights
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchInsightsInput
.
sourceimpl SearchInsightsInput
impl SearchInsightsInput
sourcepub fn start_time_range(&self) -> Option<&StartTimeRange>
pub fn start_time_range(&self) -> Option<&StartTimeRange>
The start of the time range passed in. Returned insights occurred after this time.
sourcepub fn filters(&self) -> Option<&SearchInsightsFilters>
pub fn filters(&self) -> Option<&SearchInsightsFilters>
A SearchInsightsFilters
object that is used to set the severity and status filters on your insight search.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
sourcepub fn type(&self) -> Option<&InsightType>
pub fn type(&self) -> Option<&InsightType>
The type of insights you are searching for (REACTIVE
or PROACTIVE
).
Trait Implementations
sourceimpl Clone for SearchInsightsInput
impl Clone for SearchInsightsInput
sourcefn clone(&self) -> SearchInsightsInput
fn clone(&self) -> SearchInsightsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SearchInsightsInput
impl Debug for SearchInsightsInput
sourceimpl PartialEq<SearchInsightsInput> for SearchInsightsInput
impl PartialEq<SearchInsightsInput> for SearchInsightsInput
sourcefn eq(&self, other: &SearchInsightsInput) -> bool
fn eq(&self, other: &SearchInsightsInput) -> bool
impl StructuralPartialEq for SearchInsightsInput
Auto Trait Implementations
impl RefUnwindSafe for SearchInsightsInput
impl Send for SearchInsightsInput
impl Sync for SearchInsightsInput
impl Unpin for SearchInsightsInput
impl UnwindSafe for SearchInsightsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more