Skip to content

List Keys

cloudfrontkeyvaluestore_list_keys R Documentation

Returns a list of key value pairs

Description

Returns a list of key value pairs.

Usage

cloudfrontkeyvaluestore_list_keys(KvsARN, NextToken, MaxResults)

Arguments

KvsARN

[required] The Amazon Resource Name (ARN) of the Key Value Store.

NextToken

If nextToken is returned in the response, there are more results available. Make the next call using the returned token to retrieve the next page.

MaxResults

Maximum number of results that are returned per call. The default is 10 and maximum allowed page is 50.

Value

A list with the following syntax:

list(
  NextToken = "string",
  Items = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Request syntax

svc$list_keys(
  KvsARN = "string",
  NextToken = "string",
  MaxResults = 123
)