:doc:`IoT <../../iot>` / Client / list_outgoing_certificates

**************************
list_outgoing_certificates
**************************



.. py:method:: IoT.Client.list_outgoing_certificates(**kwargs)

  

  Lists certificates that are being transferred but not yet accepted.

   

  Requires permission to access the `ListOutgoingCertificates <https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions>`__ action.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/ListOutgoingCertificates>`_  


  **Request Syntax**
  ::

    response = client.list_outgoing_certificates(
        pageSize=123,
        marker='string',
        ascendingOrder=True|False
    )
    
  :type pageSize: integer
  :param pageSize: 

    The result page size.

    

  
  :type marker: string
  :param marker: 

    The marker for the next set of results.

    

  
  :type ascendingOrder: boolean
  :param ascendingOrder: 

    Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

    

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

    
    ::

      {
          'outgoingCertificates': [
              {
                  'certificateArn': 'string',
                  'certificateId': 'string',
                  'transferredTo': 'string',
                  'transferDate': datetime(2015, 1, 1),
                  'transferMessage': 'string',
                  'creationDate': datetime(2015, 1, 1)
              },
          ],
          'nextMarker': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      The output from the ListOutgoingCertificates operation.

      
      

      - **outgoingCertificates** *(list) --* 

        The certificates that are being transferred but not yet accepted.

        
        

        - *(dict) --* 

          A certificate that has been transferred but not yet accepted.

          
          

          - **certificateArn** *(string) --* 

            The certificate ARN.

            
          

          - **certificateId** *(string) --* 

            The certificate ID.

            
          

          - **transferredTo** *(string) --* 

            The Amazon Web Services account to which the transfer was made.

            
          

          - **transferDate** *(datetime) --* 

            The date the transfer was initiated.

            
          

          - **transferMessage** *(string) --* 

            The transfer message.

            
          

          - **creationDate** *(datetime) --* 

            The certificate creation date.

            
      
    
      

      - **nextMarker** *(string) --* 

        The marker for the next set of results.

        
  
  **Exceptions**
  
  *   :py:class:`IoT.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`IoT.Client.exceptions.ThrottlingException`

  
  *   :py:class:`IoT.Client.exceptions.UnauthorizedException`

  
  *   :py:class:`IoT.Client.exceptions.ServiceUnavailableException`

  
  *   :py:class:`IoT.Client.exceptions.InternalFailureException`

  