Struct rusoto_inspector::AssessmentRunFilter[][src]

pub struct AssessmentRunFilter {
    pub completion_time_range: Option<TimestampRange>,
    pub duration_range: Option<DurationRange>,
    pub name_pattern: Option<String>,
    pub rules_package_arns: Option<Vec<String>>,
    pub start_time_range: Option<TimestampRange>,
    pub state_change_time_range: Option<TimestampRange>,
    pub states: Option<Vec<String>>,
}

Used as the request parameter in the ListAssessmentRuns action.

Fields

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

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

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

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 rulesPackages property of the AssessmentRun data type.

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

For a record to match a filter, the value that is specified for this data type property must match the stateChangedAt property of the AssessmentRun data type.

For a record to match a filter, one of the values specified for this data type property must be the exact match of the value of the assessmentRunState property of the AssessmentRun data type.

Trait Implementations

impl Default for AssessmentRunFilter
[src]

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

impl Debug for AssessmentRunFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for AssessmentRunFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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