AWS Fundamentals Logo
AWS Fundamentals
AWS::DynamoDB::Export

DynamoDB Export

Represents a completed or in-progress DynamoDB table export to S3.

Properties

7 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
S3Bucket
string
RequiredCreate-only
TableArn
string
RequiredCreate-only
ExportFormat
string
Create-only
ExportType
string
Create-only
S3BucketOwner
string
Create-only
S3Prefix
string
Create-only
S3SseAlgorithm
string
Create-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
BilledSizeBytesintegerThe billable size of the table export.
EndTimestringThe time at which the export task completed, in ISO 8601 format.
ExportArnstringThe Amazon Resource Name (ARN) of the export.
ExportIdstringThe unique identifier of the export.
ExportManifeststringThe name of the manifest file for the export task.
ExportStatusstringExport can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
ExportTimestringPoint in time from which table data was exported, in ISO 8601 format.
ItemCountintegerThe number of items exported.
StartTimestringThe time at which the export task began, in ISO 8601 format.
TableIdstringUnique ID of the table that was exported.
TableNamestringThe name of the table that was exported.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::DynamoDB::Export

Resources:
  MyResource:
    Type: AWS::DynamoDB::Export
    Properties:
      TableArn: "arn:aws:service:region:account:resource"
      S3Bucket: "value"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

read

dynamodb:DescribeExport

list

dynamodb:ListExports

Get the DynamoDB Cheat Sheet

Everything you need to know about DynamoDB on one page. HD quality, print-friendly.

Download Free Infographic

Quick Facts

ServiceDynamoDB
Properties18
Required2
TaggingNot supported
Primary IDExportArn

Supported Operations

ReadList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ExportFormatExportTypeS3BucketS3BucketOwnerS3PrefixS3SseAlgorithmTableArn

Related Resources

External Links