Class: Aws::Inspector::Types::StartAssessmentRunRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector::Types::StartAssessmentRunRequest
- Defined in:
- gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb
Overview
Note:
When making an API call, you may pass StartAssessmentRunRequest data as a hash:
{
assessment_template_arn: "Arn", # required
assessment_run_name: "AssessmentRunName",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assessment_run_name ⇒ String
You can specify the name for the assessment run.
-
#assessment_template_arn ⇒ String
The ARN of the assessment template of the assessment run that you want to start.
Instance Attribute Details
#assessment_run_name ⇒ String
You can specify the name for the assessment run. The name must be unique for the assessment template whose ARN is used to start the assessment run.
3007 3008 3009 3010 3011 3012 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 3007 class StartAssessmentRunRequest < Struct.new( :assessment_template_arn, :assessment_run_name) SENSITIVE = [] include Aws::Structure end |
#assessment_template_arn ⇒ String
The ARN of the assessment template of the assessment run that you want to start.
3007 3008 3009 3010 3011 3012 |
# File 'gems/aws-sdk-inspector/lib/aws-sdk-inspector/types.rb', line 3007 class StartAssessmentRunRequest < Struct.new( :assessment_template_arn, :assessment_run_name) SENSITIVE = [] include Aws::Structure end |