Struct rusoto_inspector::StopAssessmentRunRequest[][src]

pub struct StopAssessmentRunRequest {
    pub assessment_run_arn: String,
    pub stop_action: Option<String>,
}

Fields

The ARN of the assessment run that you want to stop.

An input option that can be set to either START_EVALUATION or SKIP_EVALUATION. START_EVALUATION (the default value), stops the AWS agent from collecting data and begins the results evaluation and the findings generation process. SKIP_EVALUATION cancels the assessment run immediately, after which no findings are generated.

Trait Implementations

impl Default for StopAssessmentRunRequest
[src]

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

impl Debug for StopAssessmentRunRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StopAssessmentRunRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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