:doc:`EKS <../../eks>` / Client / describe_addon_configuration

****************************
describe_addon_configuration
****************************



.. py:method:: EKS.Client.describe_addon_configuration(**kwargs)

  

  Returns configuration options.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfiguration>`_  


  **Request Syntax**
  ::

    response = client.describe_addon_configuration(
        addonName='string',
        addonVersion='string'
    )
    
  :type addonName: string
  :param addonName: **[REQUIRED]** 

    The name of the add-on. The name must match one of the names returned by ``DescribeAddonVersions``.

    

  
  :type addonVersion: string
  :param addonVersion: **[REQUIRED]** 

    The version of the add-on. The version must match one of the versions returned by `DescribeAddonVersions <https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html>`__.

    

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

    
    ::

      {
          'addonName': 'string',
          'addonVersion': 'string',
          'configurationSchema': 'string',
          'podIdentityConfiguration': [
              {
                  'serviceAccount': 'string',
                  'recommendedManagedPolicies': [
                      'string',
                  ]
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **addonName** *(string) --* 

        The name of the add-on.

        
      

      - **addonVersion** *(string) --* 

        The version of the add-on. The version must match one of the versions returned by `DescribeAddonVersions <https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html>`__.

        
      

      - **configurationSchema** *(string) --* 

        A JSON schema that's used to validate the configuration values you provide when an add-on is created or updated.

        
      

      - **podIdentityConfiguration** *(list) --* 

        The Kubernetes service account name used by the add-on, and any suggested IAM policies. Use this information to create an IAM Role for the add-on.

        
        

        - *(dict) --* 

          Information about how to configure IAM for an add-on.

          
          

          - **serviceAccount** *(string) --* 

            The Kubernetes Service Account name used by the add-on.

            
          

          - **recommendedManagedPolicies** *(list) --* 

            A suggested IAM Policy for the add-on.

            
            

            - *(string) --* 
        
      
    
  
  **Exceptions**
  
  *   :py:class:`EKS.Client.exceptions.ServerException`

  
  *   :py:class:`EKS.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`EKS.Client.exceptions.InvalidParameterException`

  