AWS CDK Demo in Java | Create a Sample CDK App in Java | CDK Hands-On Tutorial | AWS Tutorials

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

Комментарии • 11

  • @santhoshs6662
    @santhoshs6662 8 месяцев назад

    in less time explained very neatly.

  • @AlbertoNao
    @AlbertoNao 2 года назад

    Simple and complete video! Thanks a lot!

  • @smarttraders3296
    @smarttraders3296 Год назад

    Finally i have found valuable content on CDK from you thanks for your effort. I have one question on realtime use of cdk...how developer fallow will they write cdk or code formation template? asking this question we are just started using AWS in my project need some guidance. If possible please tell me what are the dependencies need to include in pom.xml.
    Thanks in advance.

    • @AjayWadhara
      @AjayWadhara  Год назад

      You can check any of the video or github link (given in the description) for pom.xml dependencies

    • @JakobJenkov
      @JakobJenkov Год назад

      You can write either CloudFormation or CDK - but CDK requires less code, and enables you to use imperative code structures such as loops and branches (if / switch) when defining your infrastructure. I work in an AWS consulting company, and there the preference is to use CDK whenever possible, and CloudFormation if CDK is not possible (e.g. not allowed, or most of an existing project is already made with CloudFormation etc.).

  • @shritejmurmadkar4537
    @shritejmurmadkar4537 2 года назад

    How we will destroy CDKtoolkit template?

    • @AjayWadhara
      @AjayWadhara  2 года назад +1

      Just use “cdk destroy” to destroy the resources created as part of your stack.

    • @shritejmurmadkar4537
      @shritejmurmadkar4537 2 года назад

      I did, but it only destroyed the Cdkstack which is used to create resources. Bt the stack which was created using bootstrap is not destroyed, I've to manually delete the stack from cloudformation

    • @AjayWadhara
      @AjayWadhara  2 года назад +1

      @@shritejmurmadkar4537 you won’t be billed for bootstrap stack. This is created only once to perform some housekeeping operations.

    • @shritejmurmadkar4537
      @shritejmurmadkar4537 2 года назад

      Oh is it?
      Thank you so much for the quick responses, Looking forward to watch your videos ✌️
      Please keep going !
      This is helpful for the fellow like me.

    • @AjayWadhara
      @AjayWadhara  2 года назад +1

      @@shritejmurmadkar4537 Stay tuned. More videos are on the way.