Put Key
cloudfrontkeyvaluestore_put_key | R Documentation |
Creates a new key value pair or replaces the value of an existing key¶
Description¶
Creates a new key value pair or replaces the value of an existing key.
Usage¶
cloudfrontkeyvaluestore_put_key(Key, Value, KvsARN, IfMatch)
Arguments¶
Key |
[required] The key to put. |
Value |
[required] The value to put. |
KvsARN |
[required] The Amazon Resource Name (ARN) of the Key Value Store. |
IfMatch |
[required] The current version (ETag) of the Key Value Store that you are putting keys into, which you can get using DescribeKeyValueStore. |
Value¶
A list with the following syntax:
list(
ItemCount = 123,
TotalSizeInBytes = 123,
ETag = "string"
)
Request syntax¶
svc$put_key(
Key = "string",
Value = "string",
KvsARN = "string",
IfMatch = "string"
)