Struct aws_sdk_securityhub::model::StandardsControl
source · [−]#[non_exhaustive]pub struct StandardsControl { /* private fields */ }
Expand description
Details for an individual security standard control.
Implementations
sourceimpl StandardsControl
impl StandardsControl
sourcepub fn standards_control_arn(&self) -> Option<&str>
pub fn standards_control_arn(&self) -> Option<&str>
The ARN of the security standard control.
sourcepub fn control_status(&self) -> Option<&ControlStatus>
pub fn control_status(&self) -> Option<&ControlStatus>
The current status of the security standard control. Indicates whether the control is enabled or disabled. Security Hub does not check against disabled controls.
sourcepub fn disabled_reason(&self) -> Option<&str>
pub fn disabled_reason(&self) -> Option<&str>
The reason provided for the most recent change in status for the control.
sourcepub fn control_status_updated_at(&self) -> Option<&DateTime>
pub fn control_status_updated_at(&self) -> Option<&DateTime>
The date and time that the status of the security standard control was most recently updated.
sourcepub fn control_id(&self) -> Option<&str>
pub fn control_id(&self) -> Option<&str>
The identifier of the security standard control.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The longer description of the security standard control. Provides information about what the control is checking for.
sourcepub fn remediation_url(&self) -> Option<&str>
pub fn remediation_url(&self) -> Option<&str>
A link to remediation information for the control in the Security Hub user documentation.
sourcepub fn severity_rating(&self) -> Option<&SeverityRating>
pub fn severity_rating(&self) -> Option<&SeverityRating>
The severity of findings generated from this security standard control.
The finding severity is based on an assessment of how easy it would be to compromise Amazon Web Services resources if the issue is detected.
The list of requirements that are related to this control.
sourceimpl StandardsControl
impl StandardsControl
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StandardsControl
.
Trait Implementations
sourceimpl Clone for StandardsControl
impl Clone for StandardsControl
sourcefn clone(&self) -> StandardsControl
fn clone(&self) -> StandardsControl
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StandardsControl
impl Debug for StandardsControl
sourceimpl PartialEq<StandardsControl> for StandardsControl
impl PartialEq<StandardsControl> for StandardsControl
sourcefn eq(&self, other: &StandardsControl) -> bool
fn eq(&self, other: &StandardsControl) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &StandardsControl) -> bool
fn ne(&self, other: &StandardsControl) -> bool
This method tests for !=
.
impl StructuralPartialEq for StandardsControl
Auto Trait Implementations
impl RefUnwindSafe for StandardsControl
impl Send for StandardsControl
impl Sync for StandardsControl
impl Unpin for StandardsControl
impl UnwindSafe for StandardsControl
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more