DataZone / Client / get_data_export_configuration

get_data_export_configuration

DataZone.Client.get_data_export_configuration(**kwargs)

Gets data export configuration details.

See also: AWS API Documentation

Request Syntax

response = client.get_data_export_configuration(
    domainIdentifier='string'
)
Parameters:

domainIdentifier (string) –

[REQUIRED]

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

Return type:

dict

Returns:

Response Syntax

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

Response Structure

  • (dict) –

    • createdAt (datetime) –

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

    • 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.

    • isExportEnabled (boolean) –

      Specifies whether the export is enabled.

    • s3TableBucketArn (string) –

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

    • status (string) –

      The status of the data export configuration.

    • updatedAt (datetime) –

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

Exceptions