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
public virtual DeleteObjectResponse DeleteObject( DeleteObjectRequest request )
Parameters
- request
-
Type: Amazon.S3.Model.DeleteObjectRequest
Return Value
Type: Amazon.S3.Model.DeleteObjectResponse
The response from the DeleteObject service method, as returned by AmazonS3.
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