Skip to content

Describe Key Value Store

cloudfront_describe_key_value_store R Documentation

Specifies the key value store and its configuration

Description

Specifies the key value store and its configuration.

Usage

cloudfront_describe_key_value_store(Name)

Arguments

Name

[required] The name of the key value store.

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$describe_key_value_store(
  Name = "string"
)

Examples

## Not run: 
# Use the following command to describe a KeyValueStore.
svc$describe_key_value_store(
  Name = "my-keyvaluestore-name"
)

## End(Not run)