#[non_exhaustive]pub struct RecommendationRelatedAnomaly {
pub resources: Option<Vec<RecommendationRelatedAnomalyResource>>,
pub source_details: Option<Vec<RecommendationRelatedAnomalySourceDetail>>,
pub anomaly_id: Option<String>,
}
Expand description
Information about an anomaly that is related to a recommendation.
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.resources: Option<Vec<RecommendationRelatedAnomalyResource>>
An array of objects that represent resources in which DevOps Guru detected anomalous behavior. Each object contains the name and type of the resource.
source_details: Option<Vec<RecommendationRelatedAnomalySourceDetail>>
Information about where the anomalous behavior related the recommendation was found. For example, details in Amazon CloudWatch metrics.
anomaly_id: Option<String>
The ID of an anomaly that generated the insight with this recommendation.
Implementations
sourceimpl RecommendationRelatedAnomaly
impl RecommendationRelatedAnomaly
sourcepub fn resources(&self) -> Option<&[RecommendationRelatedAnomalyResource]>
pub fn resources(&self) -> Option<&[RecommendationRelatedAnomalyResource]>
An array of objects that represent resources in which DevOps Guru detected anomalous behavior. Each object contains the name and type of the resource.
sourcepub fn source_details(
&self
) -> Option<&[RecommendationRelatedAnomalySourceDetail]>
pub fn source_details(
&self
) -> Option<&[RecommendationRelatedAnomalySourceDetail]>
Information about where the anomalous behavior related the recommendation was found. For example, details in Amazon CloudWatch metrics.
sourcepub fn anomaly_id(&self) -> Option<&str>
pub fn anomaly_id(&self) -> Option<&str>
The ID of an anomaly that generated the insight with this recommendation.
sourceimpl RecommendationRelatedAnomaly
impl RecommendationRelatedAnomaly
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecommendationRelatedAnomaly
Trait Implementations
sourceimpl Clone for RecommendationRelatedAnomaly
impl Clone for RecommendationRelatedAnomaly
sourcefn clone(&self) -> RecommendationRelatedAnomaly
fn clone(&self) -> RecommendationRelatedAnomaly
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 more
sourceimpl Debug for RecommendationRelatedAnomaly
impl Debug for RecommendationRelatedAnomaly
sourceimpl PartialEq<RecommendationRelatedAnomaly> for RecommendationRelatedAnomaly
impl PartialEq<RecommendationRelatedAnomaly> for RecommendationRelatedAnomaly
sourcefn eq(&self, other: &RecommendationRelatedAnomaly) -> bool
fn eq(&self, other: &RecommendationRelatedAnomaly) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RecommendationRelatedAnomaly) -> bool
fn ne(&self, other: &RecommendationRelatedAnomaly) -> bool
This method tests for !=
.
impl StructuralPartialEq for RecommendationRelatedAnomaly
Auto Trait Implementations
impl RefUnwindSafe for RecommendationRelatedAnomaly
impl Send for RecommendationRelatedAnomaly
impl Sync for RecommendationRelatedAnomaly
impl Unpin for RecommendationRelatedAnomaly
impl UnwindSafe for RecommendationRelatedAnomaly
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more