Struct rusoto_inspector::Finding[][src]

pub struct Finding {
    pub arn: String,
    pub asset_attributes: Option<AssetAttributes>,
    pub asset_type: Option<String>,
    pub attributes: Vec<Attribute>,
    pub confidence: Option<i64>,
    pub created_at: f64,
    pub description: Option<String>,
    pub id: Option<String>,
    pub indicator_of_compromise: Option<bool>,
    pub numeric_severity: Option<f64>,
    pub recommendation: Option<String>,
    pub schema_version: Option<i64>,
    pub service: Option<String>,
    pub service_attributes: Option<InspectorServiceAttributes>,
    pub severity: Option<String>,
    pub title: Option<String>,
    pub updated_at: f64,
    pub user_attributes: Vec<Attribute>,
}

Contains information about an Amazon Inspector finding. This data type is used as the response element in the DescribeFindings action.

Fields

The ARN that specifies the finding.

A collection of attributes of the host from which the finding is generated.

The type of the host from which the finding is generated.

The system-defined attributes for the finding.

This data element is currently not used.

The time when the finding was generated.

The description of the finding.

The ID of the finding.

This data element is currently not used.

The numeric value of the finding severity.

The recommendation for the finding.

The schema version of this data type.

The data element is set to "Inspector".

This data type is used in the Finding data type.

The finding severity. Values can be set to High, Medium, Low, and Informational.

The name of the finding.

The time when AddAttributesToFindings is called.

The user-defined attributes that are assigned to the finding.

Trait Implementations

impl Default for Finding
[src]

Returns the "default value" for a type. Read more

impl Debug for Finding
[src]

Formats the value using the given formatter. Read more

impl Clone for Finding
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Finding
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Finding

impl Sync for Finding