def get_outputs()

in run_example.py [0:0]


    def get_outputs(self, stack_name):
        stack = self.cf_client.describe_stacks(StackName=stack_name)["Stacks"][0]
        outputs = {}
        for o in stack["Outputs"]:
            outputs[o["OutputKey"]] = o["OutputValue"]
        return outputs