:doc:`Redshift <../../redshift>` / Client / describe_account_attributes

***************************
describe_account_attributes
***************************



.. py:method:: Redshift.Client.describe_account_attributes(**kwargs)

  

  Returns a list of attributes attached to an account

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeAccountAttributes>`_  


  **Request Syntax**
  ::

    response = client.describe_account_attributes(
        AttributeNames=[
            'string',
        ]
    )
    
  :type AttributeNames: list
  :param AttributeNames: 

    A list of attribute names.

    

  
    - *(string) --* 

    

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

    
    ::

      {
          'AccountAttributes': [
              {
                  'AttributeName': 'string',
                  'AttributeValues': [
                      {
                          'AttributeValue': 'string'
                      },
                  ]
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **AccountAttributes** *(list) --* 

        A list of attributes assigned to an account.

        
        

        - *(dict) --* 

          A name value pair that describes an aspect of an account.

          
          

          - **AttributeName** *(string) --* 

            The name of the attribute.

            
          

          - **AttributeValues** *(list) --* 

            A list of attribute values.

            
            

            - *(dict) --* 

              Describes an attribute value.

              
              

              - **AttributeValue** *(string) --* 

                The value of the attribute.

                
          
        
      
    
  