Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ImportTableInput

import type { ImportTableInput } from "https://aws-api.deno.dev/v0.4/services/dynamodb.ts?docs=full";
interface ImportTableInput {
ClientToken?: string | null;
InputCompressionType?: InputCompressionType | null;
InputFormat: InputFormat;
InputFormatOptions?: InputFormatOptions | null;
S3BucketSource: S3BucketSource;
TableCreationParameters: TableCreationParameters;
}

§Properties

§
ClientToken?: string | null
[src]

Providing a ClientToken makes the call to ImportTableInput idempotent, meaning that multiple identical calls have the same effect as one single call.

A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent.

If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an IdempotentParameterMismatch exception.

§
InputCompressionType?: InputCompressionType | null
[src]

Type of compression to be used on the input coming from the imported table.

§
InputFormat: InputFormat
[src]

The format of the source data. Valid values for ImportFormat are CSV, DYNAMODB_JSON or ION.

§
InputFormatOptions?: InputFormatOptions | null
[src]

Additional properties that specify how the input is formatted,

§
S3BucketSource: S3BucketSource
[src]

The S3 bucket that provides the source for the import.

§
TableCreationParameters: TableCreationParameters
[src]

Parameters for the table to import the data into.