#[non_exhaustive]pub struct AuditMitigationActionExecutionMetadataBuilder { /* private fields */ }Expand description
A builder for AuditMitigationActionExecutionMetadata.
Implementations§
source§impl AuditMitigationActionExecutionMetadataBuilder
impl AuditMitigationActionExecutionMetadataBuilder
sourcepub fn task_id(self, input: impl Into<String>) -> Self
pub fn task_id(self, input: impl Into<String>) -> Self
The unique identifier for the task that applies the mitigation action.
sourcepub fn set_task_id(self, input: Option<String>) -> Self
pub fn set_task_id(self, input: Option<String>) -> Self
The unique identifier for the task that applies the mitigation action.
sourcepub fn get_task_id(&self) -> &Option<String>
pub fn get_task_id(&self) -> &Option<String>
The unique identifier for the task that applies the mitigation action.
sourcepub fn finding_id(self, input: impl Into<String>) -> Self
pub fn finding_id(self, input: impl Into<String>) -> Self
The unique identifier for the findings to which the task and associated mitigation action are applied.
sourcepub fn set_finding_id(self, input: Option<String>) -> Self
pub fn set_finding_id(self, input: Option<String>) -> Self
The unique identifier for the findings to which the task and associated mitigation action are applied.
sourcepub fn get_finding_id(&self) -> &Option<String>
pub fn get_finding_id(&self) -> &Option<String>
The unique identifier for the findings to which the task and associated mitigation action are applied.
sourcepub fn action_name(self, input: impl Into<String>) -> Self
pub fn action_name(self, input: impl Into<String>) -> Self
The friendly name of the mitigation action being applied by the task.
sourcepub fn set_action_name(self, input: Option<String>) -> Self
pub fn set_action_name(self, input: Option<String>) -> Self
The friendly name of the mitigation action being applied by the task.
sourcepub fn get_action_name(&self) -> &Option<String>
pub fn get_action_name(&self) -> &Option<String>
The friendly name of the mitigation action being applied by the task.
sourcepub fn action_id(self, input: impl Into<String>) -> Self
pub fn action_id(self, input: impl Into<String>) -> Self
The unique identifier for the mitigation action being applied by the task.
sourcepub fn set_action_id(self, input: Option<String>) -> Self
pub fn set_action_id(self, input: Option<String>) -> Self
The unique identifier for the mitigation action being applied by the task.
sourcepub fn get_action_id(&self) -> &Option<String>
pub fn get_action_id(&self) -> &Option<String>
The unique identifier for the mitigation action being applied by the task.
sourcepub fn status(self, input: AuditMitigationActionsExecutionStatus) -> Self
pub fn status(self, input: AuditMitigationActionsExecutionStatus) -> Self
The current status of the task being executed.
sourcepub fn set_status(
self,
input: Option<AuditMitigationActionsExecutionStatus>
) -> Self
pub fn set_status( self, input: Option<AuditMitigationActionsExecutionStatus> ) -> Self
The current status of the task being executed.
sourcepub fn get_status(&self) -> &Option<AuditMitigationActionsExecutionStatus>
pub fn get_status(&self) -> &Option<AuditMitigationActionsExecutionStatus>
The current status of the task being executed.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The date and time when the task was started.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The date and time when the task was started.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The date and time when the task was started.
sourcepub fn end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The date and time when the task was completed or canceled. Blank if the task is still running.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The date and time when the task was completed or canceled. Blank if the task is still running.
sourcepub fn get_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
The date and time when the task was completed or canceled. Blank if the task is still running.
sourcepub fn error_code(self, input: impl Into<String>) -> Self
pub fn error_code(self, input: impl Into<String>) -> Self
If an error occurred, the code that indicates which type of error occurred.
sourcepub fn set_error_code(self, input: Option<String>) -> Self
pub fn set_error_code(self, input: Option<String>) -> Self
If an error occurred, the code that indicates which type of error occurred.
sourcepub fn get_error_code(&self) -> &Option<String>
pub fn get_error_code(&self) -> &Option<String>
If an error occurred, the code that indicates which type of error occurred.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
If an error occurred, a message that describes the error.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
If an error occurred, a message that describes the error.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
If an error occurred, a message that describes the error.
sourcepub fn build(self) -> AuditMitigationActionExecutionMetadata
pub fn build(self) -> AuditMitigationActionExecutionMetadata
Consumes the builder and constructs a AuditMitigationActionExecutionMetadata.
Trait Implementations§
source§impl Clone for AuditMitigationActionExecutionMetadataBuilder
impl Clone for AuditMitigationActionExecutionMetadataBuilder
source§fn clone(&self) -> AuditMitigationActionExecutionMetadataBuilder
fn clone(&self) -> AuditMitigationActionExecutionMetadataBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AuditMitigationActionExecutionMetadataBuilder
impl Default for AuditMitigationActionExecutionMetadataBuilder
source§fn default() -> AuditMitigationActionExecutionMetadataBuilder
fn default() -> AuditMitigationActionExecutionMetadataBuilder
source§impl PartialEq for AuditMitigationActionExecutionMetadataBuilder
impl PartialEq for AuditMitigationActionExecutionMetadataBuilder
source§fn eq(&self, other: &AuditMitigationActionExecutionMetadataBuilder) -> bool
fn eq(&self, other: &AuditMitigationActionExecutionMetadataBuilder) -> bool
self and other values to be equal, and is used
by ==.