Struct aws_sdk_auditmanager::types::Framework
source · #[non_exhaustive]pub struct Framework {Show 14 fields
pub arn: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub type: Option<FrameworkType>,
pub compliance_type: Option<String>,
pub description: Option<String>,
pub logo: Option<String>,
pub control_sources: Option<String>,
pub control_sets: Option<Vec<ControlSet>>,
pub created_at: Option<DateTime>,
pub last_updated_at: Option<DateTime>,
pub created_by: Option<String>,
pub last_updated_by: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Expand description
The file that's used to structure and automate Audit Manager assessments for a given compliance standard.
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.arn: Option<String>The Amazon Resource Name (ARN) of the framework.
id: Option<String>The unique identifier for the framework.
name: Option<String>The name of the framework.
type: Option<FrameworkType>Specifies whether the framework is a standard framework or a custom framework.
compliance_type: Option<String>The compliance type that the framework supports, such as CIS or HIPAA.
description: Option<String>The description of the framework.
logo: Option<String>The logo that's associated with the framework.
control_sources: Option<String>The control data sources where Audit Manager collects evidence from.
control_sets: Option<Vec<ControlSet>>The control sets that are associated with the framework.
created_at: Option<DateTime>The time when the framework was created.
last_updated_at: Option<DateTime>The time when the framework was most recently updated.
created_by: Option<String>The user or role that created the framework.
last_updated_by: Option<String>The user or role that most recently updated the framework.
The tags that are associated with the framework.
Implementations§
source§impl Framework
impl Framework
sourcepub fn type(&self) -> Option<&FrameworkType>
pub fn type(&self) -> Option<&FrameworkType>
Specifies whether the framework is a standard framework or a custom framework.
sourcepub fn compliance_type(&self) -> Option<&str>
pub fn compliance_type(&self) -> Option<&str>
The compliance type that the framework supports, such as CIS or HIPAA.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the framework.
sourcepub fn control_sources(&self) -> Option<&str>
pub fn control_sources(&self) -> Option<&str>
The control data sources where Audit Manager collects evidence from.
sourcepub fn control_sets(&self) -> &[ControlSet]
pub fn control_sets(&self) -> &[ControlSet]
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().
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time when the framework was created.
sourcepub fn last_updated_at(&self) -> Option<&DateTime>
pub fn last_updated_at(&self) -> Option<&DateTime>
The time when the framework was most recently updated.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The user or role that created the framework.
sourcepub fn last_updated_by(&self) -> Option<&str>
pub fn last_updated_by(&self) -> Option<&str>
The user or role that most recently updated the framework.
The tags that are associated with the framework.
Trait Implementations§
source§impl PartialEq for Framework
impl PartialEq for Framework
impl StructuralPartialEq for Framework
Auto Trait Implementations§
impl Freeze for Framework
impl RefUnwindSafe for Framework
impl Send for Framework
impl Sync for Framework
impl Unpin for Framework
impl UnwindSafe for Framework
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