pub struct Builder { /* private fields */ }
Expand description
A builder for AuditMitigationActionsTaskTarget
.
Implementations§
source§impl Builder
impl Builder
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 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 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 build(self) -> AuditMitigationActionsTaskTarget
pub fn build(self) -> AuditMitigationActionsTaskTarget
Consumes the builder and constructs a AuditMitigationActionsTaskTarget
.