[][src]Struct rusoto_inspector::FindingFilter

pub struct FindingFilter {
    pub agent_ids: Option<Vec<String>>,
    pub attributes: Option<Vec<Attribute>>,
    pub auto_scaling_groups: Option<Vec<String>>,
    pub creation_time_range: Option<TimestampRange>,
    pub rule_names: Option<Vec<String>>,
    pub rules_package_arns: Option<Vec<String>>,
    pub severities: Option<Vec<String>>,
    pub user_attributes: Option<Vec<Attribute>>,
}

This data type is used as a request parameter in the ListFindings action.

Fields

agent_ids: Option<Vec<String>>

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the agentId property of the Finding data type.

attributes: Option<Vec<Attribute>>

For a record to match a filter, the list of values that are specified for this data type property must be contained in the list of values of the attributes property of the Finding data type.

auto_scaling_groups: Option<Vec<String>>

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the autoScalingGroup property of the Finding data type.

creation_time_range: Option<TimestampRange>

The time range during which the finding is generated.

rule_names: Option<Vec<String>>

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the ruleName property of the Finding data type.

rules_package_arns: Option<Vec<String>>

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the rulesPackageArn property of the Finding data type.

severities: Option<Vec<String>>

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the severity property of the Finding data type.

user_attributes: Option<Vec<Attribute>>

For a record to match a filter, the value that is specified for this data type property must be contained in the list of values of the userAttributes property of the Finding data type.

Trait Implementations

impl Clone for FindingFilter[src]

impl Debug for FindingFilter[src]

impl Default for FindingFilter[src]

impl PartialEq<FindingFilter> for FindingFilter[src]

impl Serialize for FindingFilter[src]

impl StructuralPartialEq for FindingFilter[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> From<T> 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.