Skip to content

Export table to point in time

async_boto.validation.dynamodb.export_table_to_point_in_time

ExportTableToPointInTimeRequest

Bases: BaseModel

Exports table data to an S3 bucket.

ATTRIBUTE DESCRIPTION
S3Bucket

The name of the Amazon S3 bucket to export the snapshot to.

TYPE: str

TableArn

The Amazon Resource Name (ARN) associated with the table to export.

TYPE: str

ClientToken

Providing a ClientToken makes the call idempotent.

TYPE: Optional[str]

ExportFormat

The format for the exported data.

TYPE: Optional[Literal['DYNAMODB_JSON', 'ION']]

ExportTime

Time in the past from which to export table data, counted in seconds from the start of the Unix epoch.

TYPE: Optional[int]

ExportType

Choice of whether to execute as a full export or incremental export.

TYPE: Optional[Literal['FULL_EXPORT', 'INCREMENTAL_EXPORT']]

IncrementalExportSpecification

Optional object containing the parameters specific to an incremental export.

TYPE: Optional[IncrementalExportSpecification]

S3BucketOwner

The ID of the AWS account that owns the bucket the export will be stored in.

TYPE: Optional[constr(regex='^[0-9]{12}$')]

S3Prefix

The Amazon S3 bucket prefix to use as the file name and path of the exported snapshot.

TYPE: Optional[constr(max_length=1024)]

S3SseAlgorithm

Type of encryption used on the bucket where export data will be stored.

TYPE: Optional[Literal['AES256', 'KMS']]

S3SseKmsKeyId

The ID of the AWS KMS managed key used to encrypt the S3 bucket where export data will be stored (if applicable).

TYPE: Optional[constr(min_length=1, max_length=2048)]

S3Bucket instance-attribute

S3Bucket

TableArn instance-attribute

TableArn

ClientToken class-attribute instance-attribute

ClientToken = None

ExportFormat class-attribute instance-attribute

ExportFormat = None

ExportTime class-attribute instance-attribute

ExportTime = None

ExportType class-attribute instance-attribute

ExportType = None

IncrementalExportSpecification class-attribute instance-attribute

IncrementalExportSpecification = None

S3BucketOwner class-attribute instance-attribute

S3BucketOwner = None

S3Prefix class-attribute instance-attribute

S3Prefix = None

S3SseAlgorithm class-attribute instance-attribute

S3SseAlgorithm = None

S3SseKmsKeyId class-attribute instance-attribute

S3SseKmsKeyId = None

ExportTableToPointInTimeResponse

Bases: BaseModel

Response for the ExportTableToPointInTime operation.

ATTRIBUTE DESCRIPTION
ExportDescription

Contains a description of the table export.

TYPE: Optional[ExportDescription]

ExportDescription class-attribute instance-attribute

ExportDescription = None