Struct aws_sdk_auditmanager::types::AssessmentReport
source · #[non_exhaustive]pub struct AssessmentReport {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub aws_account_id: Option<String>,
pub assessment_id: Option<String>,
pub assessment_name: Option<String>,
pub author: Option<String>,
pub status: Option<AssessmentReportStatus>,
pub creation_time: Option<DateTime>,
}Expand description
A finalized document that's generated from an Audit Manager assessment. These reports summarize the relevant evidence that was collected for your audit, and link to the relevant evidence folders. These evidence folders are named and organized according to the controls that are specified in your assessment.
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.id: Option<String>The unique identifier for the assessment report.
name: Option<String>The name that's given to the assessment report.
description: Option<String>The description of the specified assessment report.
aws_account_id: Option<String>The identifier for the specified Amazon Web Services account.
assessment_id: Option<String>The identifier for the specified assessment.
assessment_name: Option<String>The name of the associated assessment.
The name of the user who created the assessment report.
status: Option<AssessmentReportStatus>The current status of the specified assessment report.
creation_time: Option<DateTime>Specifies when the assessment report was created.
Implementations§
source§impl AssessmentReport
impl AssessmentReport
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the specified assessment report.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The identifier for the specified Amazon Web Services account.
sourcepub fn assessment_id(&self) -> Option<&str>
pub fn assessment_id(&self) -> Option<&str>
The identifier for the specified assessment.
sourcepub fn assessment_name(&self) -> Option<&str>
pub fn assessment_name(&self) -> Option<&str>
The name of the associated assessment.
The name of the user who created the assessment report.
sourcepub fn status(&self) -> Option<&AssessmentReportStatus>
pub fn status(&self) -> Option<&AssessmentReportStatus>
The current status of the specified assessment report.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
Specifies when the assessment report was created.
source§impl AssessmentReport
impl AssessmentReport
sourcepub fn builder() -> AssessmentReportBuilder
pub fn builder() -> AssessmentReportBuilder
Creates a new builder-style object to manufacture AssessmentReport.
Trait Implementations§
source§impl Clone for AssessmentReport
impl Clone for AssessmentReport
source§fn clone(&self) -> AssessmentReport
fn clone(&self) -> AssessmentReport
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AssessmentReport
impl Debug for AssessmentReport
source§impl PartialEq for AssessmentReport
impl PartialEq for AssessmentReport
source§fn eq(&self, other: &AssessmentReport) -> bool
fn eq(&self, other: &AssessmentReport) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssessmentReport
Auto Trait Implementations§
impl Freeze for AssessmentReport
impl RefUnwindSafe for AssessmentReport
impl Send for AssessmentReport
impl Sync for AssessmentReport
impl Unpin for AssessmentReport
impl UnwindSafe for AssessmentReport
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more