Struct aws_sdk_auditmanager::types::AssessmentControl
source · #[non_exhaustive]pub struct AssessmentControl { /* private fields */ }Expand description
The control entity that represents a standard control or a custom control in an Audit Manager assessment.
Implementations§
source§impl AssessmentControl
impl AssessmentControl
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the control.
sourcepub fn status(&self) -> Option<&ControlStatus>
pub fn status(&self) -> Option<&ControlStatus>
The status of the control.
sourcepub fn response(&self) -> Option<&ControlResponse>
pub fn response(&self) -> Option<&ControlResponse>
The response of the control.
sourcepub fn comments(&self) -> Option<&[ControlComment]>
pub fn comments(&self) -> Option<&[ControlComment]>
The list of comments that's attached to the control.
sourcepub fn evidence_sources(&self) -> Option<&[String]>
pub fn evidence_sources(&self) -> Option<&[String]>
The list of data sources for the evidence.
sourcepub fn evidence_count(&self) -> i32
pub fn evidence_count(&self) -> i32
The amount of evidence that's collected for the control.
sourcepub fn assessment_report_evidence_count(&self) -> i32
pub fn assessment_report_evidence_count(&self) -> i32
The amount of evidence in the assessment report.
source§impl AssessmentControl
impl AssessmentControl
sourcepub fn builder() -> AssessmentControlBuilder
pub fn builder() -> AssessmentControlBuilder
Creates a new builder-style object to manufacture AssessmentControl.
Trait Implementations§
source§impl Clone for AssessmentControl
impl Clone for AssessmentControl
source§fn clone(&self) -> AssessmentControl
fn clone(&self) -> AssessmentControl
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 AssessmentControl
impl Debug for AssessmentControl
source§impl PartialEq<AssessmentControl> for AssessmentControl
impl PartialEq<AssessmentControl> for AssessmentControl
source§fn eq(&self, other: &AssessmentControl) -> bool
fn eq(&self, other: &AssessmentControl) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssessmentControl
Auto Trait Implementations§
impl RefUnwindSafe for AssessmentControl
impl Send for AssessmentControl
impl Sync for AssessmentControl
impl Unpin for AssessmentControl
impl UnwindSafe for AssessmentControl
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