Serverless AWS Localstack Full Example - CDK, Dynamo, CloudFormation, Serverless

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 26

  • @alperari9496
    @alperari9496 9 หลายเดือนก่อน +2

    I was looking for localstack deployment using CDK. Thanks a lot!

  • @morohicham2579
    @morohicham2579 ปีที่แล้ว

    Great video ! thanks

  • @rsrini7
    @rsrini7 3 ปีที่แล้ว +1

    Thank You Very much. Loved your content.

  • @enriquecordero6163
    @enriquecordero6163 3 ปีที่แล้ว +1

    Thanks !! Excellent video

  • @RohanClash
    @RohanClash 9 หลายเดือนก่อน

    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 :)

  • @bjupreti
    @bjupreti ปีที่แล้ว

    Very useful video!!

  • @thiagolopessilva
    @thiagolopessilva 3 ปีที่แล้ว

    thanks you to share this amazing content.

  • @josersleal
    @josersleal 3 ปีที่แล้ว +1

    where is the schema of the payload documented, please?

  • @asterginete3812
    @asterginete3812 3 ปีที่แล้ว

    Thank you

  • @suyashkumarsingh4361
    @suyashkumarsingh4361 2 ปีที่แล้ว

    on `cdklocal bootstrap` i see this error `The stack named CDKToolkit failed to deploy: CREATE_FAILED (Deployment failed)`

  • @ianaustria8868
    @ianaustria8868 2 ปีที่แล้ว

    Does all the services work on localstack on free plan?

  • @at-at-at
    @at-at-at ปีที่แล้ว

    Are you using localstack pro?

    • @mostlycode
      @mostlycode  ปีที่แล้ว

      Just the normal one

  • @StephenRayner
    @StephenRayner 3 ปีที่แล้ว

    Thoughts on terraform and terraform CDK with localstack?

    • @mostlycode
      @mostlycode  3 ปีที่แล้ว

      It's a good idea actually. Maybe I'm going to cover it after I complete the AWS one that I am doing currently.

  • @abhinavsudam5971
    @abhinavsudam5971 3 ปีที่แล้ว

    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...

    • @mostlycode
      @mostlycode  3 ปีที่แล้ว

      Sorry I didn't, how's I will for my next video 🙂

  • @enriquecordero6163
    @enriquecordero6163 3 ปีที่แล้ว

    one question the dynamodb part how i do it with cdk?

    • @mostlycode
      @mostlycode  3 ปีที่แล้ว

      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

  • @enriquecordero6163
    @enriquecordero6163 3 ปีที่แล้ว +1

    more about cdk !

    • @mostlycode
      @mostlycode  3 ปีที่แล้ว +1

      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)

  • @shashankseethu7812
    @shashankseethu7812 3 ปีที่แล้ว

    It's amazing ... But could u pls provide me the commands for redshift ?

    • @mostlycode
      @mostlycode  3 ปีที่แล้ว

      Sorry I never worked with redshift.

  • @masiulun0330
    @masiulun0330 3 ปีที่แล้ว

    I cannot make the data persistent

    • @AsantePE
      @AsantePE ปีที่แล้ว

      are you saving the volumes?