Struct aws_sdk_accessanalyzer::input::UpdateFindingsInput
source · #[non_exhaustive]pub struct UpdateFindingsInput { /* private fields */ }
Expand description
Updates findings with the new values provided in the request.
Implementations§
source§impl UpdateFindingsInput
impl UpdateFindingsInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateFindings, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateFindings, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateFindings
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateFindingsInput
.
source§impl UpdateFindingsInput
impl UpdateFindingsInput
sourcepub fn analyzer_arn(&self) -> Option<&str>
pub fn analyzer_arn(&self) -> Option<&str>
The ARN of the analyzer that generated the findings to update.
sourcepub fn status(&self) -> Option<&FindingStatusUpdate>
pub fn status(&self) -> Option<&FindingStatusUpdate>
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.
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The ARN of the resource identified in the finding.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A client token.
Trait Implementations§
source§impl Clone for UpdateFindingsInput
impl Clone for UpdateFindingsInput
source§fn clone(&self) -> UpdateFindingsInput
fn clone(&self) -> UpdateFindingsInput
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 UpdateFindingsInput
impl Debug for UpdateFindingsInput
source§impl PartialEq<UpdateFindingsInput> for UpdateFindingsInput
impl PartialEq<UpdateFindingsInput> for UpdateFindingsInput
source§fn eq(&self, other: &UpdateFindingsInput) -> bool
fn eq(&self, other: &UpdateFindingsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.