Skip to content

Update Key Value Store

cloudfront_update_key_value_store R Documentation

Specifies the key value store to update

Description

Specifies the key value store to update.

Usage

cloudfront_update_key_value_store(Name, Comment, IfMatch)

Arguments

Name

[required] The name of the key value store to update.

Comment

[required] The comment of the key value store to update.

IfMatch

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

Value

A list with the following syntax:

list(
  KeyValueStore = list(
    Name = "string",
    Id = "string",
    Comment = "string",
    ARN = "string",
    Status = "string",
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    )
  ),
  ETag = "string"
)

Request syntax

svc$update_key_value_store(
  Name = "string",
  Comment = "string",
  IfMatch = "string"
)

Examples

## Not run: 
# Use the following command to update a KeyValueStore.
svc$update_key_value_store(
  Comment = "my-changed-comment",
  IfMatch = "ETVPDKIKX0DER",
  Name = "my-keyvaluestore-name"
)

## End(Not run)