You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Inspector::Types::StopAssessmentRunRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing StopAssessmentRunRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  assessment_run_arn: "Arn", # required
  stop_action: "START_EVALUATION", # accepts START_EVALUATION, SKIP_EVALUATION
}

Instance Attribute Summary collapse

Instance Attribute Details

#assessment_run_arnString

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

Returns:

  • (String)

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

#stop_actionString

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.

Possible values:

  • START_EVALUATION
  • SKIP_EVALUATION

Returns:

  • (String)

    An input option that can be set to either START_EVALUATION or SKIP_EVALUATION.