toXml method
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final hostedZoneId = this.hostedZoneId;
final vpc = this.vpc;
final $children = <_s.XmlNode>[
vpc.toXml('VPC'),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}