#[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 the 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.
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 the 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 ==
.