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
""" | |
Copies a parameter group in RDS, particularly useful for doing cross-region copies (which AWS documents, | |
but doesn't actually support at the time of this writing. | |
Usage: python cp-parameter-group.py us-west-1:lookerdb-56 us-west-2:lookerdb-56 | |
""" | |
import boto3 | |
import sys |