Struct aws_sdk_auditmanager::types::Assessment
source · #[non_exhaustive]pub struct Assessment {
pub arn: Option<String>,
pub aws_account: Option<AwsAccount>,
pub metadata: Option<AssessmentMetadata>,
pub framework: Option<AssessmentFramework>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
An entity that defines the scope of audit evidence collected by Audit Manager. An Audit Manager assessment is an implementation of an Audit Manager framework.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The Amazon Resource Name (ARN) of the assessment.
aws_account: Option<AwsAccount>
The Amazon Web Services account that's associated with the assessment.
metadata: Option<AssessmentMetadata>
The metadata for the assessment.
framework: Option<AssessmentFramework>
The framework that the assessment was created from.
The tags that are associated with the assessment.
Implementations§
source§impl Assessment
impl Assessment
sourcepub fn aws_account(&self) -> Option<&AwsAccount>
pub fn aws_account(&self) -> Option<&AwsAccount>
The Amazon Web Services account that's associated with the assessment.
sourcepub fn metadata(&self) -> Option<&AssessmentMetadata>
pub fn metadata(&self) -> Option<&AssessmentMetadata>
The metadata for the assessment.
sourcepub fn framework(&self) -> Option<&AssessmentFramework>
pub fn framework(&self) -> Option<&AssessmentFramework>
The framework that the assessment was created from.
The tags that are associated with the assessment.
source§impl Assessment
impl Assessment
sourcepub fn builder() -> AssessmentBuilder
pub fn builder() -> AssessmentBuilder
Creates a new builder-style object to manufacture Assessment
.
Trait Implementations§
source§impl Clone for Assessment
impl Clone for Assessment
source§fn clone(&self) -> Assessment
fn clone(&self) -> Assessment
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Assessment
impl Debug for Assessment
source§impl PartialEq for Assessment
impl PartialEq for Assessment
source§fn eq(&self, other: &Assessment) -> bool
fn eq(&self, other: &Assessment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Assessment
Auto Trait Implementations§
impl Freeze for Assessment
impl RefUnwindSafe for Assessment
impl Send for Assessment
impl Sync for Assessment
impl Unpin for Assessment
impl UnwindSafe for Assessment
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.