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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#assessment_run_arnString

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

Returns:

  • (String)


2600
2601
2602
2603
2604
2605
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 2600

class StopAssessmentRunRequest < Struct.new(
  :assessment_run_arn,
  :stop_action)
  SENSITIVE = []
  include Aws::Structure
end

#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.

Returns:

  • (String)


2600
2601
2602
2603
2604
2605
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 2600

class StopAssessmentRunRequest < Struct.new(
  :assessment_run_arn,
  :stop_action)
  SENSITIVE = []
  include Aws::Structure
end