#[non_exhaustive]pub struct AuditMitigationActionsTaskTarget { /* private fields */ }
Expand description
Used in MitigationActionParams, this information identifies the target findings to which the mitigation actions are applied. Only one entry appears.
Implementations§
source§impl AuditMitigationActionsTaskTarget
impl AuditMitigationActionsTaskTarget
sourcepub fn audit_task_id(&self) -> Option<&str>
pub fn audit_task_id(&self) -> Option<&str>
If the task will apply a mitigation action to findings from a specific audit, this value uniquely identifies the audit.
sourcepub fn finding_ids(&self) -> Option<&[String]>
pub fn finding_ids(&self) -> Option<&[String]>
If the task will apply a mitigation action to one or more listed findings, this value uniquely identifies those findings.
source§impl AuditMitigationActionsTaskTarget
impl AuditMitigationActionsTaskTarget
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AuditMitigationActionsTaskTarget
.
Trait Implementations§
source§impl Clone for AuditMitigationActionsTaskTarget
impl Clone for AuditMitigationActionsTaskTarget
source§fn clone(&self) -> AuditMitigationActionsTaskTarget
fn clone(&self) -> AuditMitigationActionsTaskTarget
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 PartialEq<AuditMitigationActionsTaskTarget> for AuditMitigationActionsTaskTarget
impl PartialEq<AuditMitigationActionsTaskTarget> for AuditMitigationActionsTaskTarget
source§fn eq(&self, other: &AuditMitigationActionsTaskTarget) -> bool
fn eq(&self, other: &AuditMitigationActionsTaskTarget) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.