pub struct DeleteAssessmentReport { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteAssessmentReport
.
Deletes an assessment report in Audit Manager.
When you run the DeleteAssessmentReport
operation, Audit Manager attempts to delete the following data:
-
The specified assessment report that’s stored in your S3 bucket
-
The associated metadata that’s stored in Audit Manager
If Audit Manager can’t access the assessment report in your S3 bucket, the report isn’t deleted. In this event, the DeleteAssessmentReport
operation doesn’t fail. Instead, it proceeds to delete the associated metadata only. You must then delete the assessment report from the S3 bucket yourself.
This scenario happens when Audit Manager receives a 403 (Forbidden)
or 404 (Not Found)
error from Amazon S3. To avoid this, make sure that your S3 bucket is available, and that you configured the correct permissions for Audit Manager to delete resources in your S3 bucket. For an example permissions policy that you can use, see Assessment report destination permissions in the Audit Manager User Guide. For information about the issues that could cause a 403 (Forbidden)
or 404 (Not Found
) error from Amazon S3, see List of Error Codes in the Amazon Simple Storage Service API Reference.
Implementations§
source§impl DeleteAssessmentReport
impl DeleteAssessmentReport
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteAssessmentReport, AwsResponseRetryClassifier>, SdkError<DeleteAssessmentReportError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteAssessmentReport, AwsResponseRetryClassifier>, SdkError<DeleteAssessmentReportError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DeleteAssessmentReportOutput, SdkError<DeleteAssessmentReportError>>
pub async fn send(
self
) -> Result<DeleteAssessmentReportOutput, SdkError<DeleteAssessmentReportError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn assessment_id(self, input: impl Into<String>) -> Self
pub fn assessment_id(self, input: impl Into<String>) -> Self
The unique identifier for the assessment.
sourcepub fn set_assessment_id(self, input: Option<String>) -> Self
pub fn set_assessment_id(self, input: Option<String>) -> Self
The unique identifier for the assessment.
sourcepub fn assessment_report_id(self, input: impl Into<String>) -> Self
pub fn assessment_report_id(self, input: impl Into<String>) -> Self
The unique identifier for the assessment report.
sourcepub fn set_assessment_report_id(self, input: Option<String>) -> Self
pub fn set_assessment_report_id(self, input: Option<String>) -> Self
The unique identifier for the assessment report.
Trait Implementations§
source§impl Clone for DeleteAssessmentReport
impl Clone for DeleteAssessmentReport
source§fn clone(&self) -> DeleteAssessmentReport
fn clone(&self) -> DeleteAssessmentReport
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more