Class: Aws::AuditManager::Types::CreateAssessmentReportRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::CreateAssessmentReportRequest
- Defined in:
- gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#assessment_id ⇒ String
The identifier for the assessment.
-
#description ⇒ String
The description of the assessment report.
-
#name ⇒ String
The name of the new assessment report.
-
#query_statement ⇒ String
A SQL statement that represents an evidence finder query.
Instance Attribute Details
#assessment_id ⇒ String
The identifier for the assessment.
1605 1606 1607 1608 1609 1610 1611 1612 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 1605 class CreateAssessmentReportRequest < Struct.new( :name, :description, :assessment_id, :query_statement) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the assessment report.
1605 1606 1607 1608 1609 1610 1611 1612 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 1605 class CreateAssessmentReportRequest < Struct.new( :name, :description, :assessment_id, :query_statement) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the new assessment report.
1605 1606 1607 1608 1609 1610 1611 1612 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 1605 class CreateAssessmentReportRequest < Struct.new( :name, :description, :assessment_id, :query_statement) SENSITIVE = [] include Aws::Structure end |
#query_statement ⇒ String
A SQL statement that represents an evidence finder query.
Provide this parameter when you want to generate an assessment report from the results of an evidence finder search query. When you use this parameter, Audit Manager generates a one-time report using only the evidence from the query output. This report does not include any assessment evidence that was manually added to a report using the console, or associated with a report using the API.
To use this parameter, the enablementStatus of evidence finder
must be ENABLED
.
For examples and help resolving queryStatement
validation
exceptions, see Troubleshooting evidence finder issues in the
Audit Manager User Guide.
1605 1606 1607 1608 1609 1610 1611 1612 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 1605 class CreateAssessmentReportRequest < Struct.new( :name, :description, :assessment_id, :query_statement) SENSITIVE = [] include Aws::Structure end |