:doc:`DataZone <../../datazone>` / Client / get_data_export_configuration

*****************************
get_data_export_configuration
*****************************



.. py:method:: DataZone.Client.get_data_export_configuration(**kwargs)

  

  Gets data export configuration details.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDataExportConfiguration>`_  


  **Request Syntax**
  ::

    response = client.get_data_export_configuration(
        domainIdentifier='string'
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The ID of the domain where you want to get the data export configuration details.

    

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

    
    ::

      {
          'isExportEnabled': True|False,
          'status': 'COMPLETED'|'FAILED',
          'encryptionConfiguration': {
              'kmsKeyArn': 'string',
              'sseAlgorithm': 'string'
          },
          's3TableBucketArn': 'string',
          'createdAt': datetime(2015, 1, 1),
          'updatedAt': datetime(2015, 1, 1)
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **isExportEnabled** *(boolean) --* 

        Specifies whether the export is enabled.

        
      

      - **status** *(string) --* 

        The status of the data export configuration.

        
      

      - **encryptionConfiguration** *(dict) --* 

        The encryption configuration as part of the data export configuration details.

        
        

        - **kmsKeyArn** *(string) --* 

          The Amazon Resource Name (ARN) of the KMS key to use for encryption. This field is required only when ``sseAlgorithm`` is set to ``aws:kms``.

          
        

        - **sseAlgorithm** *(string) --* 

          The server-side encryption algorithm to use. Valid values are AES256 for S3-managed encryption keys, or aws:kms for Amazon Web Services KMS-managed encryption keys. If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see `Permissions requirements for S3 Tables SSE-KMS encryption <https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html>`__.

          
    
      

      - **s3TableBucketArn** *(string) --* 

        The Amazon S3 table bucket ARN as part of the data export configuration details.

        
      

      - **createdAt** *(datetime) --* 

        The timestamp at which the data export configuration report was created.

        
      

      - **updatedAt** *(datetime) --* 

        The timestamp at which the data export configuration report was updated.

        
  
  **Exceptions**
  
  *   :py:class:`DataZone.Client.exceptions.InternalServerException`

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

  
  *   :py:class:`DataZone.Client.exceptions.AccessDeniedException`

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

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

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

  