taggings

aws_cloudformation.taggings.to_tag_list(tags: Dict[str, str]) List[Dict[str, str]][source]

Example:

>>> to_tag_list({"foo": "bar"})
[{'Key': 'foo', 'Value': 'bar'}]
aws_cloudformation.taggings.to_tag_dict(tags: List[Dict[str, str]]) Dict[str, str][source]

Example:

>>> to_tag_dict([{"Key": "foo", "Value": 'bar'}])
{'foo': 'bar'}