toXml method
XmlElement
toXml(
- String elemName, {
- List<XmlAttribute>? attributes,
})
Implementation
_s.XmlElement toXml(String elemName, {List<_s.XmlAttribute>? attributes}) {
final dNSName = this.dNSName;
final evaluateTargetHealth = this.evaluateTargetHealth;
final hostedZoneId = this.hostedZoneId;
final $children = <_s.XmlNode>[
_s.encodeXmlStringValue('HostedZoneId', hostedZoneId),
_s.encodeXmlStringValue('DNSName', dNSName),
_s.encodeXmlBoolValue('EvaluateTargetHealth', evaluateTargetHealth),
];
final $attributes = <_s.XmlAttribute>[
...?attributes,
];
return _s.XmlElement(
_s.XmlName(elemName),
$attributes,
$children,
);
}