Hi@shubham,
If you have a Linux system, then you can configure your AWS credentials using boto3 as given bellow.
session = boto3.Session(
aws_access_key_id=ACCESS_KEY,
aws_secret_access_key=SECRET_KEY,
aws_session_token=SESSION_TOKEN,
)
After that you can create one cron job and schedule your commands accordingly.