Struct aws_sdk_auditmanager::types::AssessmentMetadata
source · #[non_exhaustive]pub struct AssessmentMetadata {
pub name: Option<String>,
pub id: Option<String>,
pub description: Option<String>,
pub compliance_type: Option<String>,
pub status: Option<AssessmentStatus>,
pub assessment_reports_destination: Option<AssessmentReportsDestination>,
pub scope: Option<Scope>,
pub roles: Option<Vec<Role>>,
pub delegations: Option<Vec<Delegation>>,
pub creation_time: Option<DateTime>,
pub last_updated: Option<DateTime>,
}
Expand description
The metadata that's associated with the specified 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.name: Option<String>
The name of the assessment.
id: Option<String>
The unique identifier for the assessment.
description: Option<String>
The description of the assessment.
compliance_type: Option<String>
The name of the compliance standard that's related to the assessment, such as PCI-DSS.
status: Option<AssessmentStatus>
The overall status of the assessment.
assessment_reports_destination: Option<AssessmentReportsDestination>
The destination that evidence reports are stored in for the assessment.
scope: Option<Scope>
The wrapper of Amazon Web Services accounts and services that are in scope for the assessment.
roles: Option<Vec<Role>>
The roles that are associated with the assessment.
delegations: Option<Vec<Delegation>>
The delegations that are associated with the assessment.
creation_time: Option<DateTime>
Specifies when the assessment was created.
last_updated: Option<DateTime>
The time of the most recent update.
Implementations§
source§impl AssessmentMetadata
impl AssessmentMetadata
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the assessment.
sourcepub fn compliance_type(&self) -> Option<&str>
pub fn compliance_type(&self) -> Option<&str>
The name of the compliance standard that's related to the assessment, such as PCI-DSS.
sourcepub fn status(&self) -> Option<&AssessmentStatus>
pub fn status(&self) -> Option<&AssessmentStatus>
The overall status of the assessment.
sourcepub fn assessment_reports_destination(
&self
) -> Option<&AssessmentReportsDestination>
pub fn assessment_reports_destination( &self ) -> Option<&AssessmentReportsDestination>
The destination that evidence reports are stored in for the assessment.
sourcepub fn scope(&self) -> Option<&Scope>
pub fn scope(&self) -> Option<&Scope>
The wrapper of Amazon Web Services accounts and services that are in scope for the assessment.
sourcepub fn roles(&self) -> &[Role]
pub fn roles(&self) -> &[Role]
The roles that are associated with the assessment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .roles.is_none()
.
sourcepub fn delegations(&self) -> &[Delegation]
pub fn delegations(&self) -> &[Delegation]
The delegations that are associated with the assessment.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .delegations.is_none()
.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
Specifies when the assessment was created.
sourcepub fn last_updated(&self) -> Option<&DateTime>
pub fn last_updated(&self) -> Option<&DateTime>
The time of the most recent update.
source§impl AssessmentMetadata
impl AssessmentMetadata
sourcepub fn builder() -> AssessmentMetadataBuilder
pub fn builder() -> AssessmentMetadataBuilder
Creates a new builder-style object to manufacture AssessmentMetadata
.
Trait Implementations§
source§impl Clone for AssessmentMetadata
impl Clone for AssessmentMetadata
source§fn clone(&self) -> AssessmentMetadata
fn clone(&self) -> AssessmentMetadata
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssessmentMetadata
impl Debug for AssessmentMetadata
source§impl PartialEq for AssessmentMetadata
impl PartialEq for AssessmentMetadata
source§fn eq(&self, other: &AssessmentMetadata) -> bool
fn eq(&self, other: &AssessmentMetadata) -> bool
self
and other
values to be equal, and is used
by ==
.