AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Initiates deletion of an email archive. This changes the archive state to pending deletion. In this state, no new emails can be added, and existing archived emails become inaccessible (search, export, download). The archive and all of its contents will be permanently deleted 30 days after entering the pending deletion state, regardless of the configured retention period.

Note:

This is an asynchronous operation using the standard naming convention for .NET 4.5 or higher. For .NET 3.5 the operation is implemented as a pair of methods using the standard naming convention of BeginDeleteArchive and EndDeleteArchive.

Namespace: Amazon.MailManager
Assembly: AWSSDK.MailManager.dll
Version: 3.x.y.z

Syntax

C#
public abstract Task<DeleteArchiveResponse> DeleteArchiveAsync(
         DeleteArchiveRequest request,
         CancellationToken cancellationToken
)

Parameters

request
Type: Amazon.MailManager.Model.DeleteArchiveRequest

Container for the necessary parameters to execute the DeleteArchive service method.

cancellationToken
Type: System.Threading.CancellationToken

A cancellation token that can be used by other objects or threads to receive notice of cancellation.

Return Value


The response from the DeleteArchive service method, as returned by MailManager.

Exceptions

ExceptionCondition
AccessDeniedException Occurs when a user is denied access to a specific resource or action.
ConflictException The request configuration has conflicts. For details, see the accompanying error message.
ThrottlingException Occurs when a service's request rate limit is exceeded, resulting in throttling of further requests.
ValidationException The request validation has failed. For details, see the accompanying error message.

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer

See Also