With cloudformation I can recover a list of resources created by each stack but the data about each resource does not include the ARN.
In order to be able to match resources to cloudformation stacks I would like to be able to be able to use arnparse to generate ARNs from the constituent data recovered from a cloudformation stack. See also the output of aws cloudformation list-stack-resources
I'd propose implementing a __str__ method which returns the ARN and a __repr__ method which returns an ARN instantiation call.
In fact I'm probably going to go ahead and do this, but I'd like to put up an issue to explain it first.