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. -
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
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WorkflowUpdate
impl Debug for WorkflowUpdate
Source§impl Default for WorkflowUpdate
impl Default for WorkflowUpdate
Source§fn default() -> WorkflowUpdate
fn default() -> WorkflowUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for WorkflowUpdate
impl PartialEq for WorkflowUpdate
Source§impl Serialize for WorkflowUpdate
impl Serialize for WorkflowUpdate
impl StructuralPartialEq for WorkflowUpdate
Auto Trait Implementations§
impl Freeze for WorkflowUpdate
impl RefUnwindSafe for WorkflowUpdate
impl Send for WorkflowUpdate
impl Sync for WorkflowUpdate
impl Unpin for WorkflowUpdate
impl UnwindSafe for WorkflowUpdate
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
Mutably borrows from an owned value. Read more