[][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 PartialEq<FindingFilter> for FindingFilter[src]

impl Default for FindingFilter[src]

impl Clone for FindingFilter[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FindingFilter[src]

impl Serialize for FindingFilter[src]

Auto Trait Implementations

impl Send for FindingFilter

impl Sync for FindingFilter

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self