:doc:`EC2 <../../ec2>` / Client / export_client_vpn_client_certificate_revocation_list

****************************************************
export_client_vpn_client_certificate_revocation_list
****************************************************



.. py:method:: EC2.Client.export_client_vpn_client_certificate_revocation_list(**kwargs)

  

  Downloads the client certificate revocation list for the specified Client VPN endpoint.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ExportClientVpnClientCertificateRevocationList>`_  


  **Request Syntax**
  ::

    response = client.export_client_vpn_client_certificate_revocation_list(
        ClientVpnEndpointId='string',
        DryRun=True|False
    )
    
  :type ClientVpnEndpointId: string
  :param ClientVpnEndpointId: **[REQUIRED]** 

    The ID of the Client VPN endpoint.

    

  
  :type DryRun: boolean
  :param DryRun: 

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ``DryRunOperation``. Otherwise, it is ``UnauthorizedOperation``.

    

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

    
    ::

      {
          'CertificateRevocationList': 'string',
          'Status': {
              'Code': 'pending'|'active',
              'Message': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **CertificateRevocationList** *(string) --* 

        Information about the client certificate revocation list.

        
      

      - **Status** *(dict) --* 

        The current state of the client certificate revocation list.

        
        

        - **Code** *(string) --* 

          The state of the client certificate revocation list.

          
        

        - **Message** *(string) --* 

          A message about the status of the client certificate revocation list, if applicable.

          
    
  