[][src]Struct rusoto_codeguruprofiler::FindingsReportSummary

pub struct FindingsReportSummary {
    pub id: Option<String>,
    pub profile_end_time: Option<f64>,
    pub profile_start_time: Option<f64>,
    pub profiling_group_name: Option<String>,
    pub total_number_of_findings: Option<i64>,
}

Information about potential recommendations that might be created from the analysis of profiling data.

Fields

id: Option<String>

The universally unique identifier (UUID) of the recommendation report.

profile_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.

profile_start_time: Option<f64>

The start time of the profile the analysis data is about. 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.

profiling_group_name: Option<String>

The name of the profiling group that is associated with the analysis data.

total_number_of_findings: Option<i64>

The total number of different recommendations that were found by the analysis.

Trait Implementations

impl Clone for FindingsReportSummary[src]

impl Debug for FindingsReportSummary[src]

impl Default for FindingsReportSummary[src]

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

impl PartialEq<FindingsReportSummary> for FindingsReportSummary[src]

impl StructuralPartialEq for FindingsReportSummary[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.