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

****************************************************
import_client_vpn_client_certificate_revocation_list
****************************************************



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

  

  Uploads a client certificate revocation list to the specified Client VPN endpoint. Uploading a client certificate revocation list overwrites the existing client certificate revocation list.

   

  Uploading a client certificate revocation list resets existing client connections.

  

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


  **Request Syntax**
  ::

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

    The ID of the Client VPN endpoint to which the client certificate revocation list applies.

    

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

    The client certificate revocation list file. For more information, see `Generate a Client Certificate Revocation List <https://docs.aws.amazon.com/vpn/latest/clientvpn-admin/cvpn-working-certificates.html#cvpn-working-certificates-generate>`__ in the *Client VPN Administrator Guide*.

    

  
  :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**

    
    ::

      {
          'Return': True|False
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Return** *(boolean) --* 

        Returns ``true`` if the request succeeds; otherwise, it returns an error.

        
  