dynamodb_import_table: Imports table data from an S3 bucket

View source: R/dynamodb_operations.R

dynamodb_import_tableR Documentation

Imports table data from an S3 bucket

Description

Imports table data from an S3 bucket.

See https://www.paws-r-sdk.com/docs/dynamodb_import_table/ for full documentation.

Usage

dynamodb_import_table(
  ClientToken = NULL,
  S3BucketSource,
  InputFormat,
  InputFormatOptions = NULL,
  InputCompressionType = NULL,
  TableCreationParameters
)

Arguments

ClientToken

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.

S3BucketSource

[required] The S3 bucket that provides the source for the import.

InputFormat

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

InputFormatOptions

Additional properties that specify how the input is formatted,

InputCompressionType

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

TableCreationParameters

[required] Parameters for the table to import the data into.


paws.database documentation built on Sept. 12, 2023, 1:21 a.m.