I am trying to get volume-id list of aws instance using boto 3, I am getting sort of collection manager but I don\'t know how to get the data inside.
import
It's just an iterable of objects so
for v in volumes: print(v.id)
if you want to get a list of id :
l = [v.id for v in volumes]