Struct aws_sdk_auditmanager::model::AssessmentControlSet [−][src]
#[non_exhaustive]pub struct AssessmentControlSet {
pub id: Option<String>,
pub description: Option<String>,
pub status: Option<ControlSetStatus>,
pub roles: Option<Vec<Role>>,
pub controls: Option<Vec<AssessmentControl>>,
pub delegations: Option<Vec<Delegation>>,
pub system_evidence_count: i32,
pub manual_evidence_count: i32,
}
Expand description
Represents a set of controls in an Audit Manager assessment.
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.id: Option<String>
The identifier of the control set in the assessment. This is the control set name in a plain string format.
description: Option<String>
The description for the control set.
status: Option<ControlSetStatus>
Specifies the current status of the control set.
roles: Option<Vec<Role>>
The roles that are associated with the control set.
controls: Option<Vec<AssessmentControl>>
The list of controls that's contained with the control set.
delegations: Option<Vec<Delegation>>
The delegations that are associated with the control set.
system_evidence_count: i32
The total number of evidence objects that are retrieved automatically for the control set.
manual_evidence_count: i32
The total number of evidence objects that are uploaded manually to the control set.
Implementations
The identifier of the control set in the assessment. This is the control set name in a plain string format.
The description for the control set.
Specifies the current status of the control set.
The list of controls that's contained with the control set.
The delegations that are associated with the control set.
The total number of evidence objects that are retrieved automatically for the control set.
The total number of evidence objects that are uploaded manually to the control set.
Creates a new builder-style object to manufacture AssessmentControlSet
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AssessmentControlSet
impl Send for AssessmentControlSet
impl Sync for AssessmentControlSet
impl Unpin for AssessmentControlSet
impl UnwindSafe for AssessmentControlSet
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more