#[non_exhaustive]pub struct ListAnomaliesForInsightInput { /* private fields */ }
Implementations
sourceimpl ListAnomaliesForInsightInput
impl ListAnomaliesForInsightInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAnomaliesForInsight, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAnomaliesForInsight, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListAnomaliesForInsight
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListAnomaliesForInsightInput
.
sourceimpl ListAnomaliesForInsightInput
impl ListAnomaliesForInsightInput
sourcepub fn insight_id(&self) -> Option<&str>
pub fn insight_id(&self) -> Option<&str>
The ID of the insight. The returned anomalies belong to this insight.
sourcepub fn start_time_range(&self) -> Option<&StartTimeRange>
pub fn start_time_range(&self) -> Option<&StartTimeRange>
A time range used to specify when the requested anomalies started. All returned anomalies started during this time range.
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 account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account.
Trait Implementations
sourceimpl Clone for ListAnomaliesForInsightInput
impl Clone for ListAnomaliesForInsightInput
sourcefn clone(&self) -> ListAnomaliesForInsightInput
fn clone(&self) -> ListAnomaliesForInsightInput
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 ListAnomaliesForInsightInput
impl Debug for ListAnomaliesForInsightInput
sourceimpl PartialEq<ListAnomaliesForInsightInput> for ListAnomaliesForInsightInput
impl PartialEq<ListAnomaliesForInsightInput> for ListAnomaliesForInsightInput
sourcefn eq(&self, other: &ListAnomaliesForInsightInput) -> bool
fn eq(&self, other: &ListAnomaliesForInsightInput) -> bool
impl StructuralPartialEq for ListAnomaliesForInsightInput
Auto Trait Implementations
impl RefUnwindSafe for ListAnomaliesForInsightInput
impl Send for ListAnomaliesForInsightInput
impl Sync for ListAnomaliesForInsightInput
impl Unpin for ListAnomaliesForInsightInput
impl UnwindSafe for ListAnomaliesForInsightInput
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