Struct aws_sdk_auditmanager::types::FrameworkMetadata
source · #[non_exhaustive]pub struct FrameworkMetadata {
pub name: Option<String>,
pub description: Option<String>,
pub logo: Option<String>,
pub compliance_type: Option<String>,
}
Expand description
The metadata of a framework, such as the name, ID, or description.
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.name: Option<String>
The name of the framework.
description: Option<String>
The description of the framework.
logo: Option<String>
The logo that's associated with the framework.
compliance_type: Option<String>
The compliance standard that's associated with the framework. For example, this could be PCI DSS or HIPAA.
Implementations§
source§impl FrameworkMetadata
impl FrameworkMetadata
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the framework.
sourcepub fn compliance_type(&self) -> Option<&str>
pub fn compliance_type(&self) -> Option<&str>
The compliance standard that's associated with the framework. For example, this could be PCI DSS or HIPAA.
source§impl FrameworkMetadata
impl FrameworkMetadata
sourcepub fn builder() -> FrameworkMetadataBuilder
pub fn builder() -> FrameworkMetadataBuilder
Creates a new builder-style object to manufacture FrameworkMetadata
.
Trait Implementations§
source§impl Clone for FrameworkMetadata
impl Clone for FrameworkMetadata
source§fn clone(&self) -> FrameworkMetadata
fn clone(&self) -> FrameworkMetadata
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 FrameworkMetadata
impl Debug for FrameworkMetadata
source§impl PartialEq for FrameworkMetadata
impl PartialEq for FrameworkMetadata
source§fn eq(&self, other: &FrameworkMetadata) -> bool
fn eq(&self, other: &FrameworkMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FrameworkMetadata
Auto Trait Implementations§
impl RefUnwindSafe for FrameworkMetadata
impl Send for FrameworkMetadata
impl Sync for FrameworkMetadata
impl Unpin for FrameworkMetadata
impl UnwindSafe for FrameworkMetadata
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.