#[non_exhaustive]pub struct GetAssessmentReportInput {
pub assessment_run_arn: Option<String>,
pub report_file_format: Option<ReportFileFormat>,
pub report_type: Option<ReportType>,
}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.assessment_run_arn: Option<String>The ARN that specifies the assessment run for which you want to generate a report.
report_file_format: Option<ReportFileFormat>Specifies the file format (html or pdf) of the assessment report that you want to generate.
report_type: Option<ReportType>Specifies the type of the assessment report that you want to generate. There are two types of assessment reports: a finding report and a full report. For more information, see Assessment Reports.
Implementations§
source§impl GetAssessmentReportInput
impl GetAssessmentReportInput
sourcepub fn assessment_run_arn(&self) -> Option<&str>
pub fn assessment_run_arn(&self) -> Option<&str>
The ARN that specifies the assessment run for which you want to generate a report.
sourcepub fn report_file_format(&self) -> Option<&ReportFileFormat>
pub fn report_file_format(&self) -> Option<&ReportFileFormat>
Specifies the file format (html or pdf) of the assessment report that you want to generate.
sourcepub fn report_type(&self) -> Option<&ReportType>
pub fn report_type(&self) -> Option<&ReportType>
Specifies the type of the assessment report that you want to generate. There are two types of assessment reports: a finding report and a full report. For more information, see Assessment Reports.
source§impl GetAssessmentReportInput
impl GetAssessmentReportInput
sourcepub fn builder() -> GetAssessmentReportInputBuilder
pub fn builder() -> GetAssessmentReportInputBuilder
Creates a new builder-style object to manufacture GetAssessmentReportInput.
Trait Implementations§
source§impl Clone for GetAssessmentReportInput
impl Clone for GetAssessmentReportInput
source§fn clone(&self) -> GetAssessmentReportInput
fn clone(&self) -> GetAssessmentReportInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetAssessmentReportInput
impl Debug for GetAssessmentReportInput
source§impl PartialEq for GetAssessmentReportInput
impl PartialEq for GetAssessmentReportInput
source§fn eq(&self, other: &GetAssessmentReportInput) -> bool
fn eq(&self, other: &GetAssessmentReportInput) -> bool
self and other values to be equal, and is used
by ==.