Class ImportTableRequest
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Container for the parameters to the ImportTable operation. Imports table data from an S3 bucket.
public class ImportTableRequest : AmazonDynamoDBRequest
- Inheritance
-
ImportTableRequest
Constructors
ImportTableRequest()
public ImportTableRequest()
Properties
ClientToken
Gets and sets the property 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.
public string ClientToken { get; set; }
Property Value
InputCompressionType
Gets and sets the property InputCompressionType.
Type of compression to be used on the input coming from the imported table.
public InputCompressionType InputCompressionType { get; set; }
Property Value
InputFormat
Gets and sets the property InputFormat.
The format of the source data. Valid values for
ImportFormat
are CSV
,
DYNAMODB_JSON
or ION
.
public InputFormat InputFormat { get; set; }
Property Value
InputFormatOptions
Gets and sets the property InputFormatOptions.
Additional properties that specify how the input is formatted,
public InputFormatOptions InputFormatOptions { get; set; }
Property Value
S3BucketSource
Gets and sets the property S3BucketSource.
The S3 bucket that provides the source for the import.
public S3BucketSource S3BucketSource { get; set; }
Property Value
TableCreationParameters
Gets and sets the property TableCreationParameters.
Parameters for the table to import the data into.
public TableCreationParameters TableCreationParameters { get; set; }