Skip to main content

exports

Creates, updates, deletes, gets or lists an exports resource.

Overview

Nameexports
TypeResource
Idaws.simpledbv2.exports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
client_tokenstringThe client token provided for this export.
domain_namestringThe name of the domain that was exported.
export_arnstringA unique ARN identifier for the export.
export_data_cutoff_timestring (date-time)The timestamp indicating the cutoff point for data inclusion in the export. All data inserted or modified before this time will be present in the exported data. Data insertions or modifications after this timestamp may or may not be present in the export.
export_manifeststringThe name of the manifest summary file for the export.
export_statusstringThe current state of the export. Current possible values include : PENDING - export request received, IN_PROGRESS - export is being processed, SUCCEEDED - export completed successfully, and FAILED - export encountered an error. (PENDING, IN_PROGRESS, SUCCEEDED, FAILED)
failure_codestringFailure code for the result of the failed export. (pattern: <code>[a-zA-Z0-9]+</code>)
failure_messagestringExport failure reason description.
items_countinteger (int64)Total number of exported items.
requested_atstring (date-time)Timestamp when the export request was received by the service.
s_3_bucketstringThe name of the S3 bucket for this export. (pattern: <code>[a-z0-9A-Z]+[.-\w]*[a-z0-9A-Z]+</code>)
s_3_bucket_ownerstringThe S3 bucket owner account ID for this export. (pattern: <code>[0-9]{12}</code>)
s_3_key_prefixstringThe S3 key prefix provided in the corresponding StartDomainExport request.
s_3_sse_algorithmstringThe S3 SSE encryption algorithm for this export. (AES256, KMS)
s_3_sse_kms_key_idstringThe KMS key ID for this export.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_exportselectregionReturns information for an existing domain export.
list_exportsselectregionLists all exports that were created. The results are paginated and can be filtered by domain name.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns information for an existing domain export.

SELECT
client_token,
domain_name,
export_arn,
export_data_cutoff_time,
export_manifest,
export_status,
failure_code,
failure_message,
items_count,
requested_at,
s_3_bucket,
s_3_bucket_owner,
s_3_key_prefix,
s_3_sse_algorithm,
s_3_sse_kms_key_id
FROM aws.simpledbv2.exports
WHERE region = '{{ region }}' -- required
;