The call describe_stacksshould return a list of objects Stack, not a single object StackSummary. Let me just go through a complete example to avoid confusion.
First do something like this:
import boto.cloudformation
conn = boto.cloudformation.connect_to_region('us-west-2')
stacks = conn.describe_stacks('MyStackID')
if len(stacks) == 1:
stack = stacks[0]
else:
Stack Stack. outputs Stack. Output, , , key, value description. , :
for output in stack.outputs:
print('%s=%s (%s)' % (output.key, output.value, output.description))