pub struct Builder { /* private fields */ }
Expand description
A builder for DetectMitigationActionExecution
.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 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 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 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 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 set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
The message of a mitigation action.
sourcepub fn build(self) -> DetectMitigationActionExecution
pub fn build(self) -> DetectMitigationActionExecution
Consumes the builder and constructs a DetectMitigationActionExecution
.