Struct aws_sdk_auditmanager::types::AssessmentFramework
source · #[non_exhaustive]pub struct AssessmentFramework {
pub id: Option<String>,
pub arn: Option<String>,
pub metadata: Option<FrameworkMetadata>,
pub control_sets: Option<Vec<AssessmentControlSet>>,
}
Expand description
The file used to structure and automate Audit Manager assessments for a given compliance standard.
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.id: Option<String>
The unique identifier for the framework.
arn: Option<String>
The Amazon Resource Name (ARN) of the framework.
metadata: Option<FrameworkMetadata>
The metadata of a framework, such as the name, ID, or description.
control_sets: Option<Vec<AssessmentControlSet>>
The control sets that are associated with the framework.
Implementations§
source§impl AssessmentFramework
impl AssessmentFramework
sourcepub fn metadata(&self) -> Option<&FrameworkMetadata>
pub fn metadata(&self) -> Option<&FrameworkMetadata>
The metadata of a framework, such as the name, ID, or description.
sourcepub fn control_sets(&self) -> &[AssessmentControlSet]
pub fn control_sets(&self) -> &[AssessmentControlSet]
The control sets that are associated with the framework.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .control_sets.is_none()
.
source§impl AssessmentFramework
impl AssessmentFramework
sourcepub fn builder() -> AssessmentFrameworkBuilder
pub fn builder() -> AssessmentFrameworkBuilder
Creates a new builder-style object to manufacture AssessmentFramework
.
Trait Implementations§
source§impl Clone for AssessmentFramework
impl Clone for AssessmentFramework
source§fn clone(&self) -> AssessmentFramework
fn clone(&self) -> AssessmentFramework
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 AssessmentFramework
impl Debug for AssessmentFramework
source§impl PartialEq for AssessmentFramework
impl PartialEq for AssessmentFramework
source§fn eq(&self, other: &AssessmentFramework) -> bool
fn eq(&self, other: &AssessmentFramework) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssessmentFramework
Auto Trait Implementations§
impl RefUnwindSafe for AssessmentFramework
impl Send for AssessmentFramework
impl Sync for AssessmentFramework
impl Unpin for AssessmentFramework
impl UnwindSafe for AssessmentFramework
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.