Hello! I noticed the demo for how to communicate with the DynamoDb via the Lambda was not there, could you kindly make a video for that please? Thanks! Overall great video :)
Sorry for the late reply, to import dynamo in your project works something like this: import * as dynamodb from '@aws-cdk/aws-dynamodb'; const table = new dynamodb.Table(this, 'TableName', { partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING }, sortKey: { name: 'sk', type: dynamodb.AttributeType.STRING } }); You can read more about it here: docs.aws.amazon.com/cdk/api/latest/docs/aws-dynamodb-readme.html
Yes, I'm planning to make more videos about CDK and AWS in general looking at all the aspect of it. Currently I'm working on a full course on AWS. Check out this playlist: th-cam.com/video/4Yt5lhbSANk/w-d-xo.html (currently in progress)
I was looking for localstack deployment using CDK. Thanks a lot!
Great video ! thanks
Thank You Very much. Loved your content.
Thanks !! Excellent video
Hello! I noticed the demo for how to communicate with the DynamoDb via the Lambda was not there, could you kindly make a video for that please? Thanks! Overall great video :)
Very useful video!!
thanks you to share this amazing content.
where is the schema of the payload documented, please?
Thank you
on `cdklocal bootstrap` i see this error `The stack named CDKToolkit failed to deploy: CREATE_FAILED (Deployment failed)`
had to add `ssm` in the services list
Does all the services work on localstack on free plan?
Are you using localstack pro?
Just the normal one
Thoughts on terraform and terraform CDK with localstack?
It's a good idea actually. Maybe I'm going to cover it after I complete the AWS one that I am doing currently.
hey Maurizio ... do you have a list of all the commands you ran? that way it would be easier to replicate .... thank you in advance...
Sorry I didn't, how's I will for my next video 🙂
one question the dynamodb part how i do it with cdk?
Sorry for the late reply, to import dynamo in your project works something like this:
import * as dynamodb from '@aws-cdk/aws-dynamodb';
const table = new dynamodb.Table(this, 'TableName', {
partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING },
sortKey: { name: 'sk', type: dynamodb.AttributeType.STRING }
});
You can read more about it here: docs.aws.amazon.com/cdk/api/latest/docs/aws-dynamodb-readme.html
more about cdk !
Yes, I'm planning to make more videos about CDK and AWS in general looking at all the aspect of it.
Currently I'm working on a full course on AWS. Check out this playlist: th-cam.com/video/4Yt5lhbSANk/w-d-xo.html (currently in progress)
It's amazing ... But could u pls provide me the commands for redshift ?
Sorry I never worked with redshift.
I cannot make the data persistent
are you saving the volumes?