Struct aws_sdk_auditmanager::operation::create_assessment_report::CreateAssessmentReportInput
source · #[non_exhaustive]pub struct CreateAssessmentReportInput {
pub name: Option<String>,
pub description: Option<String>,
pub assessment_id: Option<String>,
pub query_statement: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the new assessment report.
description: Option<String>The description of the assessment report.
assessment_id: Option<String>The identifier for the assessment.
query_statement: Option<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.
Implementations§
source§impl CreateAssessmentReportInput
impl CreateAssessmentReportInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the assessment report.
sourcepub fn assessment_id(&self) -> Option<&str>
pub fn assessment_id(&self) -> Option<&str>
The identifier for the assessment.
sourcepub fn query_statement(&self) -> Option<&str>
pub fn query_statement(&self) -> Option<&str>
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.
source§impl CreateAssessmentReportInput
impl CreateAssessmentReportInput
sourcepub fn builder() -> CreateAssessmentReportInputBuilder
pub fn builder() -> CreateAssessmentReportInputBuilder
Creates a new builder-style object to manufacture CreateAssessmentReportInput.
Trait Implementations§
source§impl Clone for CreateAssessmentReportInput
impl Clone for CreateAssessmentReportInput
source§fn clone(&self) -> CreateAssessmentReportInput
fn clone(&self) -> CreateAssessmentReportInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateAssessmentReportInput
impl Debug for CreateAssessmentReportInput
source§impl PartialEq for CreateAssessmentReportInput
impl PartialEq for CreateAssessmentReportInput
source§fn eq(&self, other: &CreateAssessmentReportInput) -> bool
fn eq(&self, other: &CreateAssessmentReportInput) -> bool
self and other values to be equal, and is used
by ==.