[][src]Struct rusoto_guardduty::Finding

pub struct Finding {
    pub account_id: String,
    pub arn: String,
    pub confidence: Option<f64>,
    pub created_at: String,
    pub description: Option<String>,
    pub id: String,
    pub partition: Option<String>,
    pub region: String,
    pub resource: Resource,
    pub schema_version: String,
    pub service: Option<Service>,
    pub severity: f64,
    pub title: Option<String>,
    pub type_: String,
    pub updated_at: String,
}

Contains information about the finding, which is generated when abnormal or suspicious activity is detected.

Fields

account_id: String

The ID of the account in which the finding was generated.

arn: String

The ARN of the finding.

confidence: Option<f64>

The confidence score for the finding.

created_at: String

The time and date when the finding was created.

description: Option<String>

The description of the finding.

id: String

The ID of the finding.

partition: Option<String>

The partition associated with the finding.

region: String

The Region where the finding was generated.

resource: Resourceschema_version: String

The version of the schema used for the finding.

service: Option<Service>severity: f64

The severity of the finding.

title: Option<String>

The title of the finding.

type_: String

The type of finding.

updated_at: String

The time and date when the finding was last updated.

Trait Implementations

impl Clone for Finding[src]

impl Debug for Finding[src]

impl Default for Finding[src]

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

impl PartialEq<Finding> for Finding[src]

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