This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
How to use boto3 for SSM local port forwarding. | |
In this example we are connecting to a MongoDB instance, but | |
the idea is the same regardless of connection. | |
""" | |
import os | |
import subprocess | |
import json | |
import boto3 |