:doc:`ElasticsearchService <../../es>` / Client / describe_domain_auto_tunes

**************************
describe_domain_auto_tunes
**************************



.. py:method:: ElasticsearchService.Client.describe_domain_auto_tunes(**kwargs)

  

  Provides scheduled Auto-Tune action details for the Elasticsearch domain, such as Auto-Tune action type, description, severity, and scheduled date.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/es-2015-01-01/DescribeDomainAutoTunes>`_  


  **Request Syntax**
  ::

    response = client.describe_domain_auto_tunes(
        DomainName='string',
        MaxResults=123,
        NextToken='string'
    )
    
  :type DomainName: string
  :param DomainName: **[REQUIRED]** 

    Specifies the domain name for which you want Auto-Tune action details.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    Set this value to limit the number of results returned. If not specified, defaults to 100.

    

  
  :type NextToken: string
  :param NextToken: 

    NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.

    

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

    
    ::

      {
          'AutoTunes': [
              {
                  'AutoTuneType': 'SCHEDULED_ACTION',
                  'AutoTuneDetails': {
                      'ScheduledAutoTuneDetails': {
                          'Date': datetime(2015, 1, 1),
                          'ActionType': 'JVM_HEAP_SIZE_TUNING'|'JVM_YOUNG_GEN_TUNING',
                          'Action': 'string',
                          'Severity': 'LOW'|'MEDIUM'|'HIGH'
                      }
                  }
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      The result of ``DescribeDomainAutoTunes`` request. See the `Developer Guide <https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html>`__ for more information.

      
      

      - **AutoTunes** *(list) --* 

        Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the `Developer Guide <https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html>`__ for more information.

        
        

        - *(dict) --* 

          Specifies Auto-Tune type and Auto-Tune action details.

          
          

          - **AutoTuneType** *(string) --* 

            Specifies Auto-Tune type. Valid value is SCHEDULED_ACTION.

            
          

          - **AutoTuneDetails** *(dict) --* 

            Specifies details of the Auto-Tune action. See the `Developer Guide <https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html>`__ for more information.

            
            

            - **ScheduledAutoTuneDetails** *(dict) --* 

              Specifies details of the scheduled Auto-Tune action. See the `Developer Guide <https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html>`__ for more information.

              
              

              - **Date** *(datetime) --* 

                Specifies timestamp for the Auto-Tune action scheduled for the domain.

                
              

              - **ActionType** *(string) --* 

                Specifies Auto-Tune action type. Valid values are JVM_HEAP_SIZE_TUNING and JVM_YOUNG_GEN_TUNING.

                
              

              - **Action** *(string) --* 

                Specifies Auto-Tune action description.

                
              

              - **Severity** *(string) --* 

                Specifies Auto-Tune action severity. Valid values are LOW, MEDIUM and HIGH.

                
          
        
      
    
      

      - **NextToken** *(string) --* 

        Specifies an identifier to allow retrieval of paginated results.

        
  
  **Exceptions**
  
  *   :py:class:`ElasticsearchService.Client.exceptions.BaseException`

  
  *   :py:class:`ElasticsearchService.Client.exceptions.InternalException`

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

  
  *   :py:class:`ElasticsearchService.Client.exceptions.ValidationException`

  