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.

Specifies the key value store to delete.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DeleteKeyValueStoreAsync.

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

Syntax

C#
public virtual DeleteKeyValueStoreResponse DeleteKeyValueStore(
         DeleteKeyValueStoreRequest request
)

Parameters

request
Type: Amazon.CloudFront.Model.DeleteKeyValueStoreRequest

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

Return Value


The response from the DeleteKeyValueStore service method, as returned by CloudFront.

Exceptions

ExceptionCondition
AccessDeniedException Access denied.
CannotDeleteEntityWhileInUseException The key value store entity cannot be deleted while it is in use.
EntityNotFoundException The key value store entity was not found.
InvalidIfMatchVersionException The If-Match version is missing or not valid.
PreconditionFailedException The precondition in one or more of the request fields evaluated to false.
UnsupportedOperationException This operation is not supported in this region.

Examples

Use the following command to delete a KeyValueStore.

To delete a KeyValueStore


var client = new AmazonCloudFrontClient();
var response = client.DeleteKeyValueStore(new DeleteKeyValueStoreRequest 
{
    IfMatch = "ETVPDKIKX0DER",
    Name = "my-keyvaluestore-name"
});


            

Version Information

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

See Also