Class: Aws::Inspector::Types::StopAssessmentRunRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector::Types::StopAssessmentRunRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assessment_run_arn ⇒ String
The ARN of the assessment run that you want to stop.
-
#stop_action ⇒ String
An input option that can be set to either START_EVALUATION or SKIP_EVALUATION.
Instance Attribute Details
#assessment_run_arn ⇒ String
The ARN of the assessment run that you want to stop.
2600 2601 2602 2603 2604 2605 |
# File 'lib/aws-sdk-inspector/types.rb', line 2600 class StopAssessmentRunRequest < Struct.new( :assessment_run_arn, :stop_action) SENSITIVE = [] include Aws::Structure end |
#stop_action ⇒ String
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.
2600 2601 2602 2603 2604 2605 |
# File 'lib/aws-sdk-inspector/types.rb', line 2600 class StopAssessmentRunRequest < Struct.new( :assessment_run_arn, :stop_action) SENSITIVE = [] include Aws::Structure end |