Class: Aws::SecurityAgent::Types::StartCodeRemediationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::StartCodeRemediationInput
- Defined in:
- gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb
Overview
Input for the StartCodeRemediation operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_space_id ⇒ String
The unique identifier of the agent space.
-
#code_review_job_id ⇒ String
The unique identifier of the code review job that produced the findings.
-
#finding_ids ⇒ Array<String>
The list of finding identifiers to initiate code remediation for.
-
#pentest_job_id ⇒ String
The unique identifier of the pentest job that produced the findings.
Instance Attribute Details
#agent_space_id ⇒ String
The unique identifier of the agent space.
4292 4293 4294 4295 4296 4297 4298 4299 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4292 class StartCodeRemediationInput < Struct.new( :agent_space_id, :pentest_job_id, :code_review_job_id, :finding_ids) SENSITIVE = [] include Aws::Structure end |
#code_review_job_id ⇒ String
The unique identifier of the code review job that produced the
findings. Mutually exclusive with pentestJobId.
4292 4293 4294 4295 4296 4297 4298 4299 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4292 class StartCodeRemediationInput < Struct.new( :agent_space_id, :pentest_job_id, :code_review_job_id, :finding_ids) SENSITIVE = [] include Aws::Structure end |
#finding_ids ⇒ Array<String>
The list of finding identifiers to initiate code remediation for.
4292 4293 4294 4295 4296 4297 4298 4299 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4292 class StartCodeRemediationInput < Struct.new( :agent_space_id, :pentest_job_id, :code_review_job_id, :finding_ids) SENSITIVE = [] include Aws::Structure end |
#pentest_job_id ⇒ String
The unique identifier of the pentest job that produced the findings.
Mutually exclusive with codeReviewJobId.
4292 4293 4294 4295 4296 4297 4298 4299 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4292 class StartCodeRemediationInput < Struct.new( :agent_space_id, :pentest_job_id, :code_review_job_id, :finding_ids) SENSITIVE = [] include Aws::Structure end |