pub struct DeleteEvaluation { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteEvaluation
.
Assigns the DELETED
status to an Evaluation
, rendering it unusable.
After invoking the DeleteEvaluation
operation, you can use the GetEvaluation
operation to verify that the status of the Evaluation
changed to DELETED
.
Caution: The results of the DeleteEvaluation
operation are irreversible.
Implementations§
source§impl DeleteEvaluation
impl DeleteEvaluation
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteEvaluation, AwsResponseRetryClassifier>, SdkError<DeleteEvaluationError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteEvaluation, AwsResponseRetryClassifier>, SdkError<DeleteEvaluationError>>
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<DeleteEvaluationOutput, SdkError<DeleteEvaluationError>>
pub async fn send(
self
) -> Result<DeleteEvaluationOutput, SdkError<DeleteEvaluationError>>
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 evaluation_id(self, input: impl Into<String>) -> Self
pub fn evaluation_id(self, input: impl Into<String>) -> Self
A user-supplied ID that uniquely identifies the Evaluation
to delete.
sourcepub fn set_evaluation_id(self, input: Option<String>) -> Self
pub fn set_evaluation_id(self, input: Option<String>) -> Self
A user-supplied ID that uniquely identifies the Evaluation
to delete.
Trait Implementations§
source§impl Clone for DeleteEvaluation
impl Clone for DeleteEvaluation
source§fn clone(&self) -> DeleteEvaluation
fn clone(&self) -> DeleteEvaluation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more