Skip to content

Delete Key Value Store

cloudfront_delete_key_value_store R Documentation

Specifies the key value store to delete

Description

Specifies the key value store to delete.

Usage

cloudfront_delete_key_value_store(Name, IfMatch)

Arguments

Name

[required] The name of the key value store.

IfMatch

[required] The key value store to delete, if a match occurs.

Value

An empty list.

Request syntax

svc$delete_key_value_store(
  Name = "string",
  IfMatch = "string"
)

Examples

## Not run: 
# Use the following command to delete a KeyValueStore.
svc$delete_key_value_store(
  IfMatch = "ETVPDKIKX0DER",
  Name = "my-keyvaluestore-name"
)

## End(Not run)