pub struct UpdateFindingsRequest {
pub analyzer_arn: String,
pub client_token: Option<String>,
pub ids: Option<Vec<String>>,
pub resource_arn: Option<String>,
pub status: String,
}
Expand description
Updates findings with the new values provided in the request.
Fields§
§analyzer_arn: String
The ARN of the analyzer that generated the findings to update.
client_token: Option<String>
A client token.
ids: Option<Vec<String>>
The IDs of the findings to update.
resource_arn: Option<String>
The ARN of the resource identified in the finding.
status: String
The state represents the action to take to update the finding Status. Use ARCHIVE
to change an Active finding to an Archived finding. Use ACTIVE
to change an Archived finding to an Active finding.
Trait Implementations§
Source§impl Clone for UpdateFindingsRequest
impl Clone for UpdateFindingsRequest
Source§fn clone(&self) -> UpdateFindingsRequest
fn clone(&self) -> UpdateFindingsRequest
Returns a duplicate 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 UpdateFindingsRequest
impl Debug for UpdateFindingsRequest
Source§impl Default for UpdateFindingsRequest
impl Default for UpdateFindingsRequest
Source§fn default() -> UpdateFindingsRequest
fn default() -> UpdateFindingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateFindingsRequest
impl PartialEq for UpdateFindingsRequest
Source§impl Serialize for UpdateFindingsRequest
impl Serialize for UpdateFindingsRequest
impl StructuralPartialEq for UpdateFindingsRequest
Auto Trait Implementations§
impl Freeze for UpdateFindingsRequest
impl RefUnwindSafe for UpdateFindingsRequest
impl Send for UpdateFindingsRequest
impl Sync for UpdateFindingsRequest
impl Unpin for UpdateFindingsRequest
impl UnwindSafe for UpdateFindingsRequest
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