skip to Main Content

Hi We are developing a java / spring boot application. we would like to use to mock the AWS services which includes RDS , MSK etc .. in our local system without actually using AWS production accounts and using it in our systems. How to do it?

2

Answers


  1. You could have a look at a library called Moto.

    This was initially a python project to be used with the Python AWS library Boto3. However, they have added a standalone server mode, which should be useable from any AWS SDK.

    The easiest way is probably to use the Moto docker image. Maybe wrap it with Testcontainers and automatically create and tear down the Mock AWS for your tests.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search