:doc:`CloudFront <../../cloudfront>` / Client / list_key_value_stores

*********************
list_key_value_stores
*********************



.. py:method:: CloudFront.Client.list_key_value_stores(**kwargs)

  

  Specifies the key value stores to list.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListKeyValueStores>`_  


  **Request Syntax**
  ::

    response = client.list_key_value_stores(
        Marker='string',
        MaxItems='string',
        Status='string'
    )
    
  :type Marker: string
  :param Marker: 

    The marker associated with the key value stores list.

    

  
  :type MaxItems: string
  :param MaxItems: 

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

    

  
  :type Status: string
  :param Status: 

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

    

  
  
  :rtype: 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**
  
  *   :py:class:`CloudFront.Client.exceptions.AccessDenied`

  
  *   :py:class:`CloudFront.Client.exceptions.UnsupportedOperation`

  
  *   :py:class:`CloudFront.Client.exceptions.InvalidArgument`

  