AmazonS3Client.DeleteObject Method (DeleteObjectRequest)

.NET Framework 3.5
 
 
 
Did this page help you?  Yes  No   Tell us about it...

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: 2.0.0.3

Syntax

C#
public virtual DeleteObjectResponse DeleteObject(
         DeleteObjectRequest deleteObjectRequest
)

Parameters

deleteObjectRequest
Type: Amazon.S3.Model.DeleteObjectRequest

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

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

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