:doc:`LakeFormation <../../lakeformation>` / Client / update_data_cells_filter

************************
update_data_cells_filter
************************



.. py:method:: LakeFormation.Client.update_data_cells_filter(**kwargs)

  

  Updates a data cell filter.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/UpdateDataCellsFilter>`_  


  **Request Syntax**
  ::

    response = client.update_data_cells_filter(
        TableData={
            'TableCatalogId': 'string',
            'DatabaseName': 'string',
            'TableName': 'string',
            'Name': 'string',
            'RowFilter': {
                'FilterExpression': 'string',
                'AllRowsWildcard': {}
                
            },
            'ColumnNames': [
                'string',
            ],
            'ColumnWildcard': {
                'ExcludedColumnNames': [
                    'string',
                ]
            },
            'VersionId': 'string'
        }
    )
    
  :type TableData: dict
  :param TableData: **[REQUIRED]** 

    A ``DataCellsFilter`` structure containing information about the data cells filter.

    

  
    - **TableCatalogId** *(string) --* **[REQUIRED]** 

      The ID of the catalog to which the table belongs.

      

    
    - **DatabaseName** *(string) --* **[REQUIRED]** 

      A database in the Glue Data Catalog.

      

    
    - **TableName** *(string) --* **[REQUIRED]** 

      A table in the database.

      

    
    - **Name** *(string) --* **[REQUIRED]** 

      The name given by the user to the data filter cell.

      

    
    - **RowFilter** *(dict) --* 

      A PartiQL predicate.

      

    
      - **FilterExpression** *(string) --* 

        A filter expression.

        

      
      - **AllRowsWildcard** *(dict) --* 

        A wildcard for all rows.

        

      
      
    
    - **ColumnNames** *(list) --* 

      A list of column names and/or nested column attributes. When specifying nested attributes, use a qualified dot (.) delimited format such as "address"."zip". Nested attributes within this list may not exceed a depth of 5.

      

    
      - *(string) --* 

      
  
    - **ColumnWildcard** *(dict) --* 

      A wildcard with exclusions.

       

      You must specify either a ``ColumnNames`` list or the ``ColumnWildCard``.

      

    
      - **ExcludedColumnNames** *(list) --* 

        Excludes column names. Any column with this name will be excluded.

        

      
        - *(string) --* 

        
    
    
    - **VersionId** *(string) --* 

      The ID of the data cells filter version.

      

    
  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 
  
  **Exceptions**
  
  *   :py:class:`LakeFormation.Client.exceptions.ConcurrentModificationException`

  
  *   :py:class:`LakeFormation.Client.exceptions.InvalidInputException`

  
  *   :py:class:`LakeFormation.Client.exceptions.EntityNotFoundException`

  
  *   :py:class:`LakeFormation.Client.exceptions.InternalServiceException`

  
  *   :py:class:`LakeFormation.Client.exceptions.OperationTimeoutException`

  
  *   :py:class:`LakeFormation.Client.exceptions.AccessDeniedException`

  