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