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 update.

Note:

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

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

Syntax

C#
public abstract UpdateKeyValueStoreResponse UpdateKeyValueStore(
         UpdateKeyValueStoreRequest request
)

Parameters

request
Type: Amazon.CloudFront.Model.UpdateKeyValueStoreRequest

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

Return Value


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

Exceptions

ExceptionCondition
AccessDeniedException Access denied.
EntityNotFoundException The key value store entity was not found.
InvalidArgumentException An argument is invalid.
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 update a KeyValueStore.

To update a KeyValueStore


var client = new AmazonCloudFrontClient();
var response = client.UpdateKeyValueStore(new UpdateKeyValueStoreRequest 
{
    Comment = "my-changed-comment",
    IfMatch = "ETVPDKIKX0DER",
    Name = "my-keyvaluestore-name"
});

string eTag = response.ETag;
KeyValueStore keyValueStore = response.KeyValueStore;

            

Version Information

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

See Also