Skip to content

DynamoDB  >  Structures  >  ImportTableDescription

ImportTableDescription

Structure Class

ImportTableDescription dataclass

Represents the properties of the table being imported into.

Attributes

client_token class-attribute instance-attribute
client_token: str | None = None

The client token that was provided for the import task. Reusing the client token on retry makes a call to ImportTable idempotent.

cloud_watch_log_group_arn class-attribute instance-attribute
cloud_watch_log_group_arn: str | None = None

The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with the target table.

end_time class-attribute instance-attribute
end_time: datetime | None = None

The time at which the creation of the table associated with this import task completed.

error_count class-attribute instance-attribute
error_count: int = 0

The number of errors occurred on importing the source file into the target table.

failure_code class-attribute instance-attribute
failure_code: str | None = None

The error code corresponding to the failure that the import job ran into during execution.

failure_message class-attribute instance-attribute
failure_message: str | None = None

The error message corresponding to the failure that the import job ran into during execution.

import_arn class-attribute instance-attribute
import_arn: str | None = None

The Amazon Resource Number (ARN) corresponding to the import request.

import_status class-attribute instance-attribute
import_status: ImportStatus | None = None

The status of the import.

imported_item_count class-attribute instance-attribute
imported_item_count: int = 0

The number of items successfully imported into the new table.

input_compression_type class-attribute instance-attribute
input_compression_type: InputCompressionType | None = None

The compression options for the data that has been imported into the target table. The values are NONE, GZIP, or ZSTD.

input_format class-attribute instance-attribute
input_format: InputFormat | None = None

The format of the source data going into the target table.

input_format_options class-attribute instance-attribute
input_format_options: InputFormatOptions | None = None

The format options for the data that was imported into the target table. There is one value, CsvOption.

processed_item_count class-attribute instance-attribute
processed_item_count: int = 0

The total number of items processed from the source file.

processed_size_bytes class-attribute instance-attribute
processed_size_bytes: int | None = None

The total size of data processed from the source file, in Bytes.

s3_bucket_source class-attribute instance-attribute
s3_bucket_source: S3BucketSource | None = None

Values for the S3 bucket the source file is imported from. Includes bucket name (required), key prefix (optional) and bucket account owner ID (optional).

start_time class-attribute instance-attribute
start_time: datetime | None = None

The time when this import task started.

table_arn class-attribute instance-attribute
table_arn: str | None = None

The Amazon Resource Number (ARN) of the table being imported into.

table_creation_parameters class-attribute instance-attribute
table_creation_parameters: TableCreationParameters | None = None

The parameters for the new table that is being imported into.

table_id class-attribute instance-attribute
table_id: str | None = None

The table id corresponding to the table created by import table process.