Struct rusoto_inspector::AssessmentTemplateFilter[][src]

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

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.

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.

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 Default for AssessmentTemplateFilter
[src]

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

impl Debug for AssessmentTemplateFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for AssessmentTemplateFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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