End to End Serverless AWS Banking Project - AWS API Gateway, Lambda and S3 using CloudFormation

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024
  • In this project, we will implement a fictious Serverless Banking App (AccountBalanceStatus) using AWS API Gateway, AWS Lambda and S3.
    Then we will run the application end to end by checking the AccountBalance Status by invoking the REST API which triggers Lambda function and reads data from JSON object in S3 bucket.
    We will use AWS CloudFormation (Infrastructure as Code) to create following Services :
    1. AWS API Gateway
    2. AWS Lambda
    3. AWS S3
    4. IAM Role
    5. Lambda Invoke Permission
    6. API Gateway Methods
    7. API Gateway Resources
    8. API Gateway Stages
    9. REST API
    This use case is part of my AWS CloudFormation course on Udemy and can be accessed from following link - www.udemy.com/...
    Check out my other Udemy Courses from below:
    AWS Amazon Bedrock and GenAI - www.udemy.com/...
    AWS Lambda, Python(Boto3) & Serverless - www.udemy.com/...
    AWS Cloud Development Kit (CDK) - V2- www.udemy.com/...

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

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

    Check out my other Udemy Courses from below:
    - Udemy Link for Udemy Course Discounted Coupon - www.techcloudbyte.com
    - AWS Cloud Development Kit (CDK) - V2 on Udemy :
    www.udemy.com/course/aws-cloud-development-kit-cdk-v2-beginner-to-advanced/?couponCode=D6852013092DC7E58218
    - AWS Lambda, Python(Boto3) & Serverless on Udemy :
    www.udemy.com/course/aws-lambda-and-python-full-course-beginner-to-advanced/?couponCode=B57EDC70A763B67AED5B
    - AWS CloudFormation course on Udemy :
    www.udemy.com/course/aws-cloudformation-beginner-to-advanced-hands-on-guide/?couponCode=82C321437B27854E66C5

  • @khanriza
    @khanriza 2 หลายเดือนก่อน +1

    I'm learning Cloudformation and managed to follow the whole lesson. Was fun and I learnt a lot

    • @trisalrahul
      @trisalrahul  2 หลายเดือนก่อน

      Amazing. Thank you @Khantiza. You can try out my Udemy Cloudformation course as well incase you need indepth understanding. Let me know if you need a coupon code

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

    Excellent tutorial as always. The best part is that you were coding, explaining and debugging at a speed that we can catch up with you. Couldn't thank you enough. Can I put this as part of my project in my profile?

    • @trisalrahul
      @trisalrahul  หลายเดือนก่อน +1

      Yes please, go ahead and put it as part of your profile. Don’t forget to check my Udemy Course on Cloudformation if you are looking to learn it in more detail

    • @saradakv
      @saradakv หลายเดือนก่อน +1

      @@trisalrahul I am interested in AWS Lambda, Python(Boto3) & Serverless- Beginner to Advanced. Is there a coupon code for that?

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

      @saradakv - Please message me on LinkedIn

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

      @saradakv - Please message me on LinkedIn

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

      @@saradakv - Message me on linkedin please

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

    Hi kindly provide necessary files to create the project.....
    If i buy the udemy course necessary file will be provided there

  • @ravikovelakaru
    @ravikovelakaru 7 หลายเดือนก่อน +2

    provide lambda code link also it would be better

  • @rameshmydam6877
    @rameshmydam6877 ปีที่แล้ว +2

    Nice teaching
    Upload more projects

  • @jitendrapal6610
    @jitendrapal6610 ปีที่แล้ว +2

    please provide the nesesary file and code. it will help your learner

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

    nest time provide the file that you are using, otherwise this is unfollowable after 15 minutes

  • @khanriza
    @khanriza 2 หลายเดือนก่อน +1

    ```
    return {
    'statusCode': 200,
    'body': json.dumps(data_dict),
    'headers': { 'Content-Type': 'application/json' }
    }
    ```
    Use the above otherwise the response is malformed.