Struct aws_sdk_devopsguru::input::SearchInsightsInput
source · #[non_exhaustive]pub struct SearchInsightsInput { /* private fields */ }
Implementations§
source§impl 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
.
source§impl 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§
source§impl Clone for SearchInsightsInput
impl Clone for SearchInsightsInput
source§fn clone(&self) -> SearchInsightsInput
fn clone(&self) -> SearchInsightsInput
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 SearchInsightsInput
impl Debug for SearchInsightsInput
source§impl PartialEq<SearchInsightsInput> for SearchInsightsInput
impl PartialEq<SearchInsightsInput> for SearchInsightsInput
source§fn eq(&self, other: &SearchInsightsInput) -> bool
fn eq(&self, other: &SearchInsightsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.