AWS SDK Version 2 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.

.NET Framework 3.5
 
Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.

Namespace: Amazon.S3
Assembly: AWSSDK.dll
Version: (assembly version)

Syntax

C#
public virtual DeleteObjectResponse DeleteObject(
         DeleteObjectRequest request
)

Parameters

request
Type: Amazon.S3.Model.DeleteObjectRequest

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

Return Value
Type: Amazon.S3.Model.DeleteObjectResponse
The response from the DeleteObject service method, as returned by S3.

Examples

This example shows how to delete an object.

DeleteObject sample


// Create a client
AmazonS3Client client = new AmazonS3Client();

// Create a DeleteObject request
DeleteObjectRequest request = new DeleteObjectRequest
{
    BucketName = "SampleBucket",
    Key = "Item1"
};

// Issue request
client.DeleteObject(request);

                

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5