boto3

5
Boto3 Patrick Pierson, DevOps Engineer IonChannel

Upload: patrick-pierson

Post on 17-Jan-2017

81 views

Category:

Technology


0 download

TRANSCRIPT

Boto3Patrick Pierson, DevOps Engineer

IonChannel

What is boto?Boto is a Python library that provides you with an easy way to interact with and automate using various Amazon Web Services.

What is boto3?Boto 3 is a ground-up rewrite of Boto. It uses a data-driven approach to generate classes at runtime from JSON description files that are shared between SDKs in various languages. This includes descriptions for a high level, object oriented interface similar to those available in previous versions of Boto.

Because Boto 3 is generated from these shared JSON files, we get fast updates to the latest services and features and a consistent API across services. Community contributions to JSON description files in other SDKs also benefit Boto 3, just as contributions to Boto 3 benefit the other SDKs.

Install and Configurepip install boto3

aws configure

AWS Access Key ID []: ALJDAL##ACCESSKEYID##ALJFLAJFA

AWS Secret Access Key []: EQOFJFLJA###SECRETACCESSKEY###ALDFJAL

Default region name []: us-east-1

Default output format []: None

Demohttps://github.com/python-frederick/2016-07-boto3