#[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 ==
.impl StructuralPartialEq for AuditMitigationActionsTaskTargetBuilder
Auto Trait Implementations§
impl Freeze for AuditMitigationActionsTaskTargetBuilder
impl RefUnwindSafe for AuditMitigationActionsTaskTargetBuilder
impl Send for AuditMitigationActionsTaskTargetBuilder
impl Sync for AuditMitigationActionsTaskTargetBuilder
impl Unpin for AuditMitigationActionsTaskTargetBuilder
impl UnwindSafe for AuditMitigationActionsTaskTargetBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more