:doc:`LexModelsV2 <../../lexv2-models>` / Client / update_export

*************
update_export
*************



.. py:method:: LexModelsV2.Client.update_export(**kwargs)

  

  Updates the password used to protect an export zip archive.

   

  The password is not required. If you don't supply a password, Amazon Lex generates a zip file that is not protected by a password. This is the archive that is available at the pre-signed S3 URL provided by the `DescribeExport <https://docs.aws.amazon.com/lexv2/latest/APIReference/API_DescribeExport.html>`__ operation.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/UpdateExport>`_  


  **Request Syntax**
  ::

    response = client.update_export(
        exportId='string',
        filePassword='string'
    )
    
  :type exportId: string
  :param exportId: **[REQUIRED]** 

    The unique identifier Amazon Lex assigned to the export.

    

  
  :type filePassword: string
  :param filePassword: 

    The new password to use to encrypt the export zip archive.

    

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

    
    ::

      {
          'exportId': 'string',
          'resourceSpecification': {
              'botExportSpecification': {
                  'botId': 'string',
                  'botVersion': 'string'
              },
              'botLocaleExportSpecification': {
                  'botId': 'string',
                  'botVersion': 'string',
                  'localeId': 'string'
              },
              'customVocabularyExportSpecification': {
                  'botId': 'string',
                  'botVersion': 'string',
                  'localeId': 'string'
              },
              'testSetExportSpecification': {
                  'testSetId': 'string'
              }
          },
          'fileFormat': 'LexJson'|'TSV'|'CSV',
          'exportStatus': 'InProgress'|'Completed'|'Failed'|'Deleting',
          'creationDateTime': datetime(2015, 1, 1),
          'lastUpdatedDateTime': datetime(2015, 1, 1)
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **exportId** *(string) --* 

        The unique identifier Amazon Lex assigned to the export.

        
      

      - **resourceSpecification** *(dict) --* 

        A description of the type of resource that was exported, either a bot or a bot locale.

        
        

        - **botExportSpecification** *(dict) --* 

          Parameters for exporting a bot.

          
          

          - **botId** *(string) --* 

            The identifier of the bot assigned by Amazon Lex.

            
          

          - **botVersion** *(string) --* 

            The version of the bot that was exported. This will be either ``DRAFT`` or the version number.

            
      
        

        - **botLocaleExportSpecification** *(dict) --* 

          Parameters for exporting a bot locale.

          
          

          - **botId** *(string) --* 

            The identifier of the bot to create the locale for.

            
          

          - **botVersion** *(string) --* 

            The version of the bot to export.

            
          

          - **localeId** *(string) --* 

            The identifier of the language and locale to export. The string must match one of the locales in the bot.

            
      
        

        - **customVocabularyExportSpecification** *(dict) --* 

          The parameters required to export a custom vocabulary.

          
          

          - **botId** *(string) --* 

            The identifier of the bot that contains the custom vocabulary to export.

            
          

          - **botVersion** *(string) --* 

            The version of the bot that contains the custom vocabulary to export.

            
          

          - **localeId** *(string) --* 

            The locale of the bot that contains the custom vocabulary to export.

            
      
        

        - **testSetExportSpecification** *(dict) --* 

          Specifications for the test set that is exported as a resource.

          
          

          - **testSetId** *(string) --* 

            The unique identifier of the test set.

            
      
    
      

      - **fileFormat** *(string) --* 

        The file format used for the files that define the resource. The ``TSV`` format is required to export a custom vocabulary only; otherwise use ``LexJson`` format.

        
      

      - **exportStatus** *(string) --* 

        The status of the export. When the status is ``Completed`` the export archive is available for download.

        
      

      - **creationDateTime** *(datetime) --* 

        The date and time that the export was created.

        
      

      - **lastUpdatedDateTime** *(datetime) --* 

        The date and time that the export was last updated.

        
  
  **Exceptions**
  
  *   :py:class:`LexModelsV2.Client.exceptions.ThrottlingException`

  
  *   :py:class:`LexModelsV2.Client.exceptions.ServiceQuotaExceededException`

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

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

  
  *   :py:class:`LexModelsV2.Client.exceptions.ConflictException`

  
  *   :py:class:`LexModelsV2.Client.exceptions.InternalServerException`

  