#[non_exhaustive]pub struct StandardsControlAssociationSummary {
pub standards_arn: Option<String>,
pub security_control_id: Option<String>,
pub security_control_arn: Option<String>,
pub association_status: Option<AssociationStatus>,
pub related_requirements: Option<Vec<String>>,
pub updated_at: Option<DateTime>,
pub updated_reason: Option<String>,
pub standards_control_title: Option<String>,
pub standards_control_description: Option<String>,
}
Expand description
An array that provides the enablement status and other details for each control that applies to each enabled 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.standards_arn: Option<String>
The Amazon Resource Name (ARN) of a standard.
security_control_id: Option<String>
A unique standard-agnostic identifier for a control. Values for this field typically consist of an Amazon Web Service and a number, such as APIGateway.5. This field doesn't reference a specific standard.
security_control_arn: Option<String>
The ARN of a control, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1
. This parameter doesn't mention a specific standard.
association_status: Option<AssociationStatus>
The enablement status of a control in a specific standard.
The requirement that underlies this control in the compliance framework related to the standard.
updated_at: Option<DateTime>
The last time that a control's enablement status in a specified standard was updated.
updated_reason: Option<String>
The reason for updating a control's enablement status in a specified standard.
standards_control_title: Option<String>
The title of a control.
standards_control_description: Option<String>
The description of a control. This typically summarizes how Security Hub evaluates the control and the conditions under which it produces a failed finding. The parameter may reference a specific standard.
Implementations§
source§impl StandardsControlAssociationSummary
impl StandardsControlAssociationSummary
sourcepub fn standards_arn(&self) -> Option<&str>
pub fn standards_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a standard.
sourcepub fn security_control_id(&self) -> Option<&str>
pub fn security_control_id(&self) -> Option<&str>
A unique standard-agnostic identifier for a control. Values for this field typically consist of an Amazon Web Service and a number, such as APIGateway.5. This field doesn't reference a specific standard.
sourcepub fn security_control_arn(&self) -> Option<&str>
pub fn security_control_arn(&self) -> Option<&str>
The ARN of a control, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1
. This parameter doesn't mention a specific standard.
sourcepub fn association_status(&self) -> Option<&AssociationStatus>
pub fn association_status(&self) -> Option<&AssociationStatus>
The enablement status of a control in a specific standard.
The requirement that underlies this control in the compliance framework related to the standard.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .related_requirements.is_none()
.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The last time that a control's enablement status in a specified standard was updated.
sourcepub fn updated_reason(&self) -> Option<&str>
pub fn updated_reason(&self) -> Option<&str>
The reason for updating a control's enablement status in a specified standard.
sourcepub fn standards_control_title(&self) -> Option<&str>
pub fn standards_control_title(&self) -> Option<&str>
The title of a control.
sourcepub fn standards_control_description(&self) -> Option<&str>
pub fn standards_control_description(&self) -> Option<&str>
The description of a control. This typically summarizes how Security Hub evaluates the control and the conditions under which it produces a failed finding. The parameter may reference a specific standard.
source§impl StandardsControlAssociationSummary
impl StandardsControlAssociationSummary
sourcepub fn builder() -> StandardsControlAssociationSummaryBuilder
pub fn builder() -> StandardsControlAssociationSummaryBuilder
Creates a new builder-style object to manufacture StandardsControlAssociationSummary
.
Trait Implementations§
source§impl Clone for StandardsControlAssociationSummary
impl Clone for StandardsControlAssociationSummary
source§fn clone(&self) -> StandardsControlAssociationSummary
fn clone(&self) -> StandardsControlAssociationSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for StandardsControlAssociationSummary
impl PartialEq for StandardsControlAssociationSummary
source§fn eq(&self, other: &StandardsControlAssociationSummary) -> bool
fn eq(&self, other: &StandardsControlAssociationSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StandardsControlAssociationSummary
Auto Trait Implementations§
impl Freeze for StandardsControlAssociationSummary
impl RefUnwindSafe for StandardsControlAssociationSummary
impl Send for StandardsControlAssociationSummary
impl Sync for StandardsControlAssociationSummary
impl Unpin for StandardsControlAssociationSummary
impl UnwindSafe for StandardsControlAssociationSummary
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