pub fn parse_template_with_resolution(
template_body: &str,
parameters: &BTreeMap<String, String>,
resource_physical_ids: &BTreeMap<String, String>,
resource_attributes: &BTreeMap<String, BTreeMap<String, String>>,
) -> Result<ParsedTemplate, String>Expand description
Parse a CloudFormation template, resolving Ref via resource_physical_ids
and Fn::GetAtt via resource_attributes (keyed by logical id, then
attribute name).