CloudFront / Client / list_key_value_stores

list_key_value_stores#

CloudFront.Client.list_key_value_stores(**kwargs)#

Specifies the key value stores to list.

See also: AWS API Documentation

Request Syntax

response = client.list_key_value_stores(
    Marker='string',
    MaxItems='string',
    Status='string'
)
Parameters:
  • Marker (string) – The marker associated with the key value stores list.

  • MaxItems (string) – The maximum number of items in the key value stores list.

  • Status (string) – The status of the request for the key value stores list.

Return type:

dict

Returns:

Response Syntax

{
    'KeyValueStoreList': {
        'NextMarker': 'string',
        'MaxItems': 123,
        'Quantity': 123,
        'Items': [
            {
                'Name': 'string',
                'Id': 'string',
                'Comment': 'string',
                'ARN': 'string',
                'Status': 'string',
                'LastModifiedTime': datetime(2015, 1, 1)
            },
        ]
    }
}

Response Structure

  • (dict) –

    • KeyValueStoreList (dict) –

      The resulting key value stores list.

      • NextMarker (string) –

        The next marker associated with the key value store list.

      • MaxItems (integer) –

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

      • Quantity (integer) –

        The quantity of the key value store list.

      • Items (list) –

        The items of the key value store list.

        • (dict) –

          The key value store. Use this to separate data from function code, allowing you to update data without having to publish a new version of a function. The key value store holds keys and their corresponding values.

          • Name (string) –

            The name of the key value store.

          • Id (string) –

            The unique Id for the key value store.

          • Comment (string) –

            A comment for the key value store.

          • ARN (string) –

            The Amazon Resource Name (ARN) of the key value store.

          • Status (string) –

            The status of the key value store.

          • LastModifiedTime (datetime) –

            The last-modified time of the key value store.

Exceptions