interface ImportSourceSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB.CfnTablePropsMixin.ImportSourceSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdynamodb#CfnTablePropsMixin_ImportSourceSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dynamodb.CfnTablePropsMixin.ImportSourceSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_dynamodb.CfnTablePropsMixin.ImportSourceSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dynamodb » 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 { aws_dynamodb as dynamodb } from '@aws-cdk/cfn-property-mixins';
const importSourceSpecificationProperty: dynamodb.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