interface ImportSourceSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnTablePropsMixin.ImportSourceSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnTablePropsMixin_ImportSourceSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnTablePropsMixin.ImportSourceSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnTablePropsMixin.ImportSourceSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnTablePropsMixin » ImportSourceSpecificationProperty |
Specifies the properties of data being imported from the S3 bucket source to the table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const importSourceSpecificationProperty: dynamodb_mixins.CfnTablePropsMixin.ImportSourceSpecificationProperty = {
inputCompressionType: 'inputCompressionType',
inputFormat: 'inputFormat',
inputFormatOptions: {
csv: {
delimiter: 'delimiter',
headerList: ['headerList'],
},
},
s3BucketSource: {
s3Bucket: 's3Bucket',
s3BucketOwner: 's3BucketOwner',
s3KeyPrefix: 's3KeyPrefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | Type of compression to be used on the input coming from the imported table. |
| input | string | The format of the source data. |
| input | IResolvable | Input | Additional properties that specify how the input is formatted,. |
| s3 | IResolvable | S3 | The S3 bucket that provides the source for the import. |
inputCompressionType?
Type:
string
(optional)
Type of compression to be used on the input coming from the imported table.
inputFormat?
Type:
string
(optional)
The format of the source data.
Valid values for ImportFormat are CSV , DYNAMODB_JSON or ION .
inputFormatOptions?
Type:
IResolvable | Input
(optional)
Additional properties that specify how the input is formatted,.
s3BucketSource?
Type:
IResolvable | S3
(optional)
The S3 bucket that provides the source for the import.

.NET
Go
Java
Python
TypeScript