[][src]Struct rusoto_codeguruprofiler::AnomalyInstance

pub struct AnomalyInstance {
    pub end_time: Option<f64>,
    pub id: String,
    pub start_time: f64,
    pub user_feedback: Option<UserFeedback>,
}

The specific duration in which the metric is flagged as anomalous.

Fields

end_time: Option<f64>

The end time of the period during which the metric is flagged as anomalous. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

id: String

The universally unique identifier (UUID) of an instance of an anomaly in a metric.

start_time: f64

The start time of the period during which the metric is flagged as anomalous. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

user_feedback: Option<UserFeedback>

Feedback type on a specific instance of anomaly submitted by the user.

Trait Implementations

impl Clone for AnomalyInstance[src]

impl Debug for AnomalyInstance[src]

impl Default for AnomalyInstance[src]

impl<'de> Deserialize<'de> for AnomalyInstance[src]

impl PartialEq<AnomalyInstance> for AnomalyInstance[src]

impl StructuralPartialEq for AnomalyInstance[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.