AWSDynamoDBImportTableInput
Objective-C
@interface AWSDynamoDBImportTableInput
Swift
class AWSDynamoDBImportTableInput
-
Providing a
ClientToken
makes the call toImportTableInput
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.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable clientToken;
Swift
var clientToken: String? { get set }
-
Type of compression to be used on the input coming from the imported table.
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBInputCompressionType inputCompressionType;
Swift
var inputCompressionType: AWSDynamoDBInputCompressionType { get set }
-
The format of the source data. Valid values for
ImportFormat
areCSV
,DYNAMODB_JSON
orION
.Declaration
Objective-C
@property (nonatomic) AWSDynamoDBInputFormat inputFormat;
Swift
var inputFormat: AWSDynamoDBInputFormat { get set }
-
Additional properties that specify how the input is formatted,
Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBInputFormatOptions *_Nullable inputFormatOptions;
Swift
var inputFormatOptions: AWSDynamoDBInputFormatOptions? { get set }
-
The S3 bucket that provides the source for the import.
Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBS3BucketSource *_Nullable s3BucketSource;
Swift
var s3BucketSource: AWSDynamoDBS3BucketSource? { get set }
-
Parameters for the table to import the data into.
Declaration
Objective-C
@property (nonatomic, strong) AWSDynamoDBTableCreationParameters *_Nullable tableCreationParameters;
Swift
var tableCreationParameters: AWSDynamoDBTableCreationParameters? { get set }