Releases: eamonnfaherty/better-boto
Releases · eamonnfaherty/better-boto
0.13.0
Added codecommit.list_branches_single_page
0.12.0
Adding service_catalog search_provisioned_products_single_page
0.11.0
Fixed typo
0.10.0
Adding list_provisioned_product_plans_single_page
0.9.0
adding service_catalog.list_portfolios_for_product_single_page
0.8.0
Added search_products_as_admin_single_page
0.7.0
Adding list_organizational_units_for_parent_single_page and fixed convert_path_to_ou to use it.
0.6.20
Fix issue with missing modules on fresh install
0.6.19
hot fix
0.6.18
Added
CrossMultipleAccountsClientContextManager allows you to use boto3 client as a python context manager for another account.
This allows you to perform the following::
with CrossMultipleAccountsClientContextManager(
'cloudformation',
[
('arn:aws:iam::0123456789010:role/deployer', 'deployment_account_session'),
('arn:aws:iam::097167856333:role/deployer', 'deployment_account_session_nested'),
],
) as deployment_account_cloudformation:
deployment_account_cloudformation.create_stack(**args)