key_value_stores
Creates, updates, deletes, gets or lists a key_value_stores resource.
Overview
| Name | key_value_stores |
| Type | Resource |
| Id | aws.cloudfront_keyvaluestore.key_value_stores |
Fields
The following fields are returned by SELECT queries:
- describe_key_value_store
| Name | Datatype | Description |
|---|---|---|
created | string (date-time) | Date and time when the Key Value Store was created. |
e_tag | string | The version identifier for the current version of the Key Value Store. |
failure_reason | string | The reason for Key Value Store creation failure. |
item_count | integer | Number of key value pairs in the Key Value Store. |
kvs_arn | string | The Amazon Resource Name (ARN) of the Key Value Store. |
last_modified | string (date-time) | Date and time when the key value pairs in the Key Value Store was last modified. |
status | string | The current status of the Key Value Store. |
total_size_in_bytes | integer (int64) | Total size of the Key Value Store in bytes. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_key_value_store | select | kvs_arn, region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
kvs_arn | string | The Amazon Resource Name (ARN) of the Key Value Store. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_key_value_store
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
;