Skip to content

List Key Value Stores

cloudfront_list_key_value_stores R Documentation

Specifies the key value stores to list

Description

Specifies the key value stores to list.

Usage

cloudfront_list_key_value_stores(Marker, MaxItems, Status)

Arguments

Marker

The marker associated with the key value stores list.

MaxItems

The maximum number of items in the key value stores list.

Status

The status of the request for the key value stores list.

Value

A list with the following syntax:

list(
  KeyValueStoreList = list(
    NextMarker = "string",
    MaxItems = 123,
    Quantity = 123,
    Items = list(
      list(
        Name = "string",
        Id = "string",
        Comment = "string",
        ARN = "string",
        Status = "string",
        LastModifiedTime = as.POSIXct(
          "2015-01-01"
        )
      )
    )
  )
)

Request syntax

svc$list_key_value_stores(
  Marker = "string",
  MaxItems = "string",
  Status = "string"
)

Examples

## Not run: 
# The following command retrieves a list of KeyValueStores with READY
# status.
svc$list_key_value_stores(
  Marker = "",
  MaxItems = "100",
  Status = "READY"
)

## End(Not run)