#[non_exhaustive]pub struct AuditMitigationActionsTaskTargetBuilder { /* private fields */ }
Expand description
A builder for AuditMitigationActionsTaskTarget
.
Implementations§
source§impl AuditMitigationActionsTaskTargetBuilder
impl AuditMitigationActionsTaskTargetBuilder
sourcepub fn audit_task_id(self, input: impl Into<String>) -> Self
pub fn audit_task_id(self, input: impl Into<String>) -> Self
If the task will apply a mitigation action to findings from a specific audit, this value uniquely identifies the audit.
sourcepub fn set_audit_task_id(self, input: Option<String>) -> Self
pub fn set_audit_task_id(self, input: Option<String>) -> Self
If the task will apply a mitigation action to findings from a specific audit, this value uniquely identifies the audit.
sourcepub fn get_audit_task_id(&self) -> &Option<String>
pub fn get_audit_task_id(&self) -> &Option<String>
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, input: impl Into<String>) -> Self
pub fn finding_ids(self, input: impl Into<String>) -> Self
Appends an item to finding_ids
.
To override the contents of this collection use set_finding_ids
.
If the task will apply a mitigation action to one or more listed findings, this value uniquely identifies those findings.
sourcepub fn set_finding_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_finding_ids(self, input: Option<Vec<String>>) -> Self
If the task will apply a mitigation action to one or more listed findings, this value uniquely identifies those findings.
sourcepub fn get_finding_ids(&self) -> &Option<Vec<String>>
pub fn get_finding_ids(&self) -> &Option<Vec<String>>
If the task will apply a mitigation action to one or more listed findings, this value uniquely identifies those findings.
sourcepub fn audit_check_to_reason_code_filter(
self,
k: impl Into<String>,
v: Vec<String>
) -> Self
pub fn audit_check_to_reason_code_filter( self, k: impl Into<String>, v: Vec<String> ) -> Self
Adds a key-value pair to audit_check_to_reason_code_filter
.
To override the contents of this collection use set_audit_check_to_reason_code_filter
.
Specifies a filter in the form of an audit check and set of reason codes that identify the findings from the audit to which the audit mitigation actions task apply.
sourcepub fn set_audit_check_to_reason_code_filter(
self,
input: Option<HashMap<String, Vec<String>>>
) -> Self
pub fn set_audit_check_to_reason_code_filter( self, input: Option<HashMap<String, Vec<String>>> ) -> Self
Specifies a filter in the form of an audit check and set of reason codes that identify the findings from the audit to which the audit mitigation actions task apply.
sourcepub fn get_audit_check_to_reason_code_filter(
&self
) -> &Option<HashMap<String, Vec<String>>>
pub fn get_audit_check_to_reason_code_filter( &self ) -> &Option<HashMap<String, Vec<String>>>
Specifies a filter in the form of an audit check and set of reason codes that identify the findings from the audit to which the audit mitigation actions task apply.
sourcepub fn build(self) -> AuditMitigationActionsTaskTarget
pub fn build(self) -> AuditMitigationActionsTaskTarget
Consumes the builder and constructs a AuditMitigationActionsTaskTarget
.
Trait Implementations§
source§impl Clone for AuditMitigationActionsTaskTargetBuilder
impl Clone for AuditMitigationActionsTaskTargetBuilder
source§fn clone(&self) -> AuditMitigationActionsTaskTargetBuilder
fn clone(&self) -> AuditMitigationActionsTaskTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AuditMitigationActionsTaskTargetBuilder
impl Default for AuditMitigationActionsTaskTargetBuilder
source§fn default() -> AuditMitigationActionsTaskTargetBuilder
fn default() -> AuditMitigationActionsTaskTargetBuilder
source§impl PartialEq for AuditMitigationActionsTaskTargetBuilder
impl PartialEq for AuditMitigationActionsTaskTargetBuilder
source§fn eq(&self, other: &AuditMitigationActionsTaskTargetBuilder) -> bool
fn eq(&self, other: &AuditMitigationActionsTaskTargetBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.