Skip to main content

key_value_stores

Creates, updates, deletes, gets or lists a key_value_stores resource.

Overview

Namekey_value_stores
TypeResource
Idaws.cloudfront_keyvaluestore.key_value_stores

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
createdstring (date-time)Date and time when the Key Value Store was created.
e_tagstringThe version identifier for the current version of the Key Value Store.
failure_reasonstringThe reason for Key Value Store creation failure.
item_countintegerNumber of key value pairs in the Key Value Store.
kvs_arnstringThe Amazon Resource Name (ARN) of the Key Value Store.
last_modifiedstring (date-time)Date and time when the key value pairs in the Key Value Store was last modified.
statusstringThe current status of the Key Value Store.
total_size_in_bytesinteger (int64)Total size of the Key Value Store in bytes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_key_value_storeselectkvs_arn, regionReturns metadata information about Key Value Store.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
kvs_arnstringThe Amazon Resource Name (ARN) of the Key Value Store.
regionstringAWS region (default: us-east-1)

SELECT examples

Returns metadata information about Key Value Store.

SELECT
created,
e_tag,
failure_reason,
item_count,
kvs_arn,
last_modified,
status,
total_size_in_bytes
FROM aws.cloudfront_keyvaluestore.key_value_stores
WHERE kvs_arn = '{{ kvs_arn }}' -- required
AND region = '{{ region }}' -- required
;