:doc:`RDS <../../rds>` / Paginator / DescribeCertificates

********************
DescribeCertificates
********************



.. py:class:: RDS.Paginator.DescribeCertificates

  ::

    
    paginator = client.get_paginator('describe_certificates')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`RDS.Client.describe_certificates`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCertificates>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          CertificateIdentifier='string',
          Filters=[
              {
                  'Name': 'string',
                  'Values': [
                      'string',
                  ]
              },
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type CertificateIdentifier: string
    :param CertificateIdentifier: 

      The user-supplied certificate identifier. If this parameter is specified, information for only the identified certificate is returned. This parameter isn't case-sensitive.

       

      Constraints:

       

      
      * Must match an existing CertificateIdentifier.
      

      

    
    :type Filters: list
    :param Filters: 

      This parameter isn't currently supported.

      

    
      - *(dict) --* 

        A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as IDs. The filters supported by a describe operation are documented with the describe operation.

         

        .. note::

          

          Currently, wildcards are not supported in filters.

          

         

        The following actions can be filtered:

         

        
        * ``DescribeDBClusterBacktracks``
         
        * ``DescribeDBClusterEndpoints``
         
        * ``DescribeDBClusters``
         
        * ``DescribeDBInstances``
         
        * ``DescribeDBRecommendations``
         
        * ``DescribeDBShardGroups``
         
        * ``DescribePendingMaintenanceActions``
        

        

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

          The name of the filter. Filter names are case-sensitive.

          

        
        - **Values** *(list) --* **[REQUIRED]** 

          One or more filter values. Filter values are case-sensitive.

          

        
          - *(string) --* 

          
      
      
  
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'DefaultCertificateForNewLaunches': 'string',
            'Certificates': [
                {
                    'CertificateIdentifier': 'string',
                    'CertificateType': 'string',
                    'Thumbprint': 'string',
                    'ValidFrom': datetime(2015, 1, 1),
                    'ValidTill': datetime(2015, 1, 1),
                    'CertificateArn': 'string',
                    'CustomerOverride': True|False,
                    'CustomerOverrideValidTill': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 

        Data returned by the **DescribeCertificates** action.

        
        

        - **DefaultCertificateForNewLaunches** *(string) --* 

          The default root CA for new databases created by your Amazon Web Services account. This is either the root CA override set on your Amazon Web Services account or the system default CA for the Region if no override exists. To override the default CA, use the ``ModifyCertificates`` operation.

          
        

        - **Certificates** *(list) --* 

          The list of ``Certificate`` objects for the Amazon Web Services account.

          
          

          - *(dict) --* 

            A CA certificate for an Amazon Web Services account.

             

            For more information, see `Using SSL/TLS to encrypt a connection to a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html>`__ in the *Amazon RDS User Guide* and `Using SSL/TLS to encrypt a connection to a DB cluster <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html>`__ in the *Amazon Aurora User Guide*.

            
            

            - **CertificateIdentifier** *(string) --* 

              The unique key that identifies a certificate.

              
            

            - **CertificateType** *(string) --* 

              The type of the certificate.

              
            

            - **Thumbprint** *(string) --* 

              The thumbprint of the certificate.

              
            

            - **ValidFrom** *(datetime) --* 

              The starting date from which the certificate is valid.

              
            

            - **ValidTill** *(datetime) --* 

              The final date that the certificate continues to be valid.

              
            

            - **CertificateArn** *(string) --* 

              The Amazon Resource Name (ARN) for the certificate.

              
            

            - **CustomerOverride** *(boolean) --* 

              Indicates whether there is an override for the default certificate identifier.

              
            

            - **CustomerOverrideValidTill** *(datetime) --* 

              If there is an override for the default certificate identifier, when the override expires.

              
        
      
        

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

          A token to resume pagination.

          
    