Closed t-pascal closed 5 years ago
The docs say to use
store = EC2ParameterStore(region='us-west-2') (depending on where you look, currently master is different than the pages on PyPi.
store = EC2ParameterStore(region='us-west-2')
The correct parameter for boto3 (tested) and for your library is region_name as in
store = EC2ParameterStore(region_name='us-west-2')
If you use the incorrect region parameter you will see
region
client() got an unexpected keyword argument 'region'
The docs say to use
store = EC2ParameterStore(region='us-west-2')
(depending on where you look, currently master is different than the pages on PyPi.The correct parameter for boto3 (tested) and for your library is region_name as in
store = EC2ParameterStore(region_name='us-west-2')