I'm new to Python/Boto3.
I would like to manage AWS using python.
I'm unable to find details on all available python functions of methods to manage AWS.
Example:
import boto3
ebs=boto3.resource('ec2')
vols=ebs.volumes.all()
for vol in vols:
print vol.id
The above code works well but I'm trying to understand what is id in 'vol.id 'is it attribute of vol ? and where to find all available attributes that are valid to go with 'print vol.*'
How do I know that in 'vols=ebs.volumes.all()' all() is valid to use with volumes and what other options are available ?
I have tried using boto3 documentation but struggling.
Any help on this would be greatly appreciated.
Cheers,