Hello Guys, I am a big fan of Pulumi. Now I have a...
# aws
g
Hello Guys, I am a big fan of Pulumi. Now I have a question about DynamoDB. I was trying to import data from S3 into DynamoDB when I was creating DynamoDB using Pulumi. So I added below code snippet for that.
Copy code
importTable: {
      inputFormat: "DYNAMODB_JSON",
      inputCompressionType: "GZIP",
      s3BucketSource: {
        bucket: "bucketName",
      },
    },
But import action is not created. Could you help me with it?