Table Import Source Specification
data class TableImportSourceSpecification(val inputCompressionType: String? = null, val inputFormat: String, val inputFormatOptions: TableInputFormatOptions? = null, val s3BucketSource: TableS3BucketSource)
Specifies the properties of data being imported from the S3 bucket source to the table.
Constructors
Link copied to clipboard
constructor(inputCompressionType: String? = null, inputFormat: String, inputFormatOptions: TableInputFormatOptions? = null, s3BucketSource: TableS3BucketSource)
Properties
Link copied to clipboard
Type of compression to be used on the input coming from the imported table.
Link copied to clipboard
The format of the source data. Valid values for `ImportFormat`
are `CSV`
, `DYNAMODB_JSON`
or `ION`
.
Link copied to clipboard
Additional properties that specify how the input is formatted,
Link copied to clipboard
The S3 bucket that provides the source for the import.