[][src]Struct rusoto_guardduty::Service

pub struct Service {
    pub action: Option<Action>,
    pub archived: Option<bool>,
    pub count: Option<i64>,
    pub detector_id: Option<String>,
    pub event_first_seen: Option<String>,
    pub event_last_seen: Option<String>,
    pub evidence: Option<Evidence>,
    pub resource_role: Option<String>,
    pub service_name: Option<String>,
    pub user_feedback: Option<String>,
}

Contains additional information about the generated finding.

Fields

action: Option<Action>

Information about the activity that is described in a finding.

archived: Option<bool>

Indicates whether this finding is archived.

count: Option<i64>

The total count of the occurrences of this finding type.

detector_id: Option<String>

The detector ID for the GuardDuty service.

event_first_seen: Option<String>

The first-seen timestamp of the activity that prompted GuardDuty to generate this finding.

event_last_seen: Option<String>

The last-seen timestamp of the activity that prompted GuardDuty to generate this finding.

evidence: Option<Evidence>

An evidence object associated with the service.

resource_role: Option<String>

The resource role information for this finding.

service_name: Option<String>

The name of the AWS service (GuardDuty) that generated a finding.

user_feedback: Option<String>

Feedback that was submitted about the finding.

Trait Implementations

impl Clone for Service[src]

impl Debug for Service[src]

impl Default for Service[src]

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

impl PartialEq<Service> for Service[src]

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