pub struct WorkflowUpdate {
pub status: Option<String>,
}
Expand description
Used to update information about the investigation into the finding.
Fields§
§status: Option<String>
The status of the investigation into the finding. The allowed values are the following.
-
NEW
- The initial state of a finding, before it is reviewed.Security Hub also resets
WorkFlowStatus
fromNOTIFIED
orRESOLVED
toNEW
in the following cases:-
The record state changes from
ARCHIVED
toACTIVE
. -
The compliance status changes from
PASSED
to eitherWARNING
,FAILED
, orNOT_AVAILABLE
.
-
-
NOTIFIED
- Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner. -
RESOLVED
- The finding was reviewed and remediated and is now considered resolved. -
SUPPRESSED
- The finding will not be reviewed again and will not be acted upon.
Trait Implementations§
Source§impl Clone for WorkflowUpdate
impl Clone for WorkflowUpdate
Source§fn clone(&self) -> WorkflowUpdate
fn clone(&self) -> WorkflowUpdate
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more