#[non_exhaustive]pub struct DetectMitigationActionExecutionBuilder { /* private fields */ }
Expand description
A builder for DetectMitigationActionExecution
.
Implementations§
source§impl DetectMitigationActionExecutionBuilder
impl DetectMitigationActionExecutionBuilder
sourcepub fn set_task_id(self, input: Option<String>) -> Self
pub fn set_task_id(self, input: Option<String>) -> Self
The unique identifier of the task.
sourcepub fn get_task_id(&self) -> &Option<String>
pub fn get_task_id(&self) -> &Option<String>
The unique identifier of the task.
sourcepub fn violation_id(self, input: impl Into<String>) -> Self
pub fn violation_id(self, input: impl Into<String>) -> Self
The unique identifier of the violation.
sourcepub fn set_violation_id(self, input: Option<String>) -> Self
pub fn set_violation_id(self, input: Option<String>) -> Self
The unique identifier of the violation.
sourcepub fn get_violation_id(&self) -> &Option<String>
pub fn get_violation_id(&self) -> &Option<String>
The unique identifier of the violation.
sourcepub fn action_name(self, input: impl Into<String>) -> Self
pub fn action_name(self, input: impl Into<String>) -> Self
The friendly name that uniquely identifies the mitigation action.
sourcepub fn set_action_name(self, input: Option<String>) -> Self
pub fn set_action_name(self, input: Option<String>) -> Self
The friendly name that uniquely identifies the mitigation action.
sourcepub fn get_action_name(&self) -> &Option<String>
pub fn get_action_name(&self) -> &Option<String>
The friendly name that uniquely identifies the mitigation action.
sourcepub fn thing_name(self, input: impl Into<String>) -> Self
pub fn thing_name(self, input: impl Into<String>) -> Self
The name of the thing.
sourcepub fn set_thing_name(self, input: Option<String>) -> Self
pub fn set_thing_name(self, input: Option<String>) -> Self
The name of the thing.
sourcepub fn get_thing_name(&self) -> &Option<String>
pub fn get_thing_name(&self) -> &Option<String>
The name of the thing.
sourcepub fn execution_start_date(self, input: DateTime) -> Self
pub fn execution_start_date(self, input: DateTime) -> Self
The date a mitigation action was started.
sourcepub fn set_execution_start_date(self, input: Option<DateTime>) -> Self
pub fn set_execution_start_date(self, input: Option<DateTime>) -> Self
The date a mitigation action was started.
sourcepub fn get_execution_start_date(&self) -> &Option<DateTime>
pub fn get_execution_start_date(&self) -> &Option<DateTime>
The date a mitigation action was started.
sourcepub fn execution_end_date(self, input: DateTime) -> Self
pub fn execution_end_date(self, input: DateTime) -> Self
The date a mitigation action ended.
sourcepub fn set_execution_end_date(self, input: Option<DateTime>) -> Self
pub fn set_execution_end_date(self, input: Option<DateTime>) -> Self
The date a mitigation action ended.
sourcepub fn get_execution_end_date(&self) -> &Option<DateTime>
pub fn get_execution_end_date(&self) -> &Option<DateTime>
The date a mitigation action ended.
sourcepub fn status(self, input: DetectMitigationActionExecutionStatus) -> Self
pub fn status(self, input: DetectMitigationActionExecutionStatus) -> Self
The status of a mitigation action.
sourcepub fn set_status(
self,
input: Option<DetectMitigationActionExecutionStatus>
) -> Self
pub fn set_status( self, input: Option<DetectMitigationActionExecutionStatus> ) -> Self
The status of a mitigation action.
sourcepub fn get_status(&self) -> &Option<DetectMitigationActionExecutionStatus>
pub fn get_status(&self) -> &Option<DetectMitigationActionExecutionStatus>
The status of a mitigation action.
sourcepub fn error_code(self, input: impl Into<String>) -> Self
pub fn error_code(self, input: impl Into<String>) -> Self
The error code of a mitigation action.
sourcepub fn set_error_code(self, input: Option<String>) -> Self
pub fn set_error_code(self, input: Option<String>) -> Self
The error code of a mitigation action.
sourcepub fn get_error_code(&self) -> &Option<String>
pub fn get_error_code(&self) -> &Option<String>
The error code of a mitigation action.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
The message of a mitigation action.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
The message of a mitigation action.
sourcepub fn build(self) -> DetectMitigationActionExecution
pub fn build(self) -> DetectMitigationActionExecution
Consumes the builder and constructs a DetectMitigationActionExecution
.
Trait Implementations§
source§impl Clone for DetectMitigationActionExecutionBuilder
impl Clone for DetectMitigationActionExecutionBuilder
source§fn clone(&self) -> DetectMitigationActionExecutionBuilder
fn clone(&self) -> DetectMitigationActionExecutionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DetectMitigationActionExecutionBuilder
impl Default for DetectMitigationActionExecutionBuilder
source§fn default() -> DetectMitigationActionExecutionBuilder
fn default() -> DetectMitigationActionExecutionBuilder
source§impl PartialEq for DetectMitigationActionExecutionBuilder
impl PartialEq for DetectMitigationActionExecutionBuilder
source§fn eq(&self, other: &DetectMitigationActionExecutionBuilder) -> bool
fn eq(&self, other: &DetectMitigationActionExecutionBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.