[][src]Struct rusoto_inspector::AssessmentTemplateFilter

pub struct AssessmentTemplateFilter {
    pub duration_range: Option<DurationRange>,
    pub name_pattern: Option<String>,
    pub rules_package_arns: Option<Vec<String>>,
}

Used as the request parameter in the ListAssessmentTemplates action.

Fields

duration_range: Option<DurationRange>

For a record to match a filter, the value specified for this data type property must inclusively match any value between the specified minimum and maximum values of the durationInSeconds property of the AssessmentTemplate data type.

name_pattern: Option<String>

For a record to match a filter, an explicit value or a string that contains a wildcard that is specified for this data type property must match the value of the assessmentTemplateName property of the AssessmentTemplate data type.

rules_package_arns: Option<Vec<String>>

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

Trait Implementations

impl Clone for AssessmentTemplateFilter[src]

impl Debug for AssessmentTemplateFilter[src]

impl Default for AssessmentTemplateFilter[src]

impl PartialEq<AssessmentTemplateFilter> for AssessmentTemplateFilter[src]

impl Serialize for AssessmentTemplateFilter[src]

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