#[non_exhaustive]pub struct StopAssessmentRunInput {
pub assessment_run_arn: Option<String>,
pub stop_action: Option<StopAction>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.assessment_run_arn: Option<String>The ARN of the assessment run that you want to stop.
stop_action: Option<StopAction>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.
Implementations§
source§impl StopAssessmentRunInput
impl StopAssessmentRunInput
sourcepub fn assessment_run_arn(&self) -> Option<&str>
pub fn assessment_run_arn(&self) -> Option<&str>
The ARN of the assessment run that you want to stop.
sourcepub fn stop_action(&self) -> Option<&StopAction>
pub fn stop_action(&self) -> Option<&StopAction>
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.
source§impl StopAssessmentRunInput
impl StopAssessmentRunInput
sourcepub fn builder() -> StopAssessmentRunInputBuilder
pub fn builder() -> StopAssessmentRunInputBuilder
Creates a new builder-style object to manufacture StopAssessmentRunInput.
Trait Implementations§
source§impl Clone for StopAssessmentRunInput
impl Clone for StopAssessmentRunInput
source§fn clone(&self) -> StopAssessmentRunInput
fn clone(&self) -> StopAssessmentRunInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StopAssessmentRunInput
impl Debug for StopAssessmentRunInput
source§impl PartialEq for StopAssessmentRunInput
impl PartialEq for StopAssessmentRunInput
source§fn eq(&self, other: &StopAssessmentRunInput) -> bool
fn eq(&self, other: &StopAssessmentRunInput) -> bool
self and other values to be equal, and is used
by ==.