QueueConfiguration.fromXml constructor
QueueConfiguration.fromXml(
- XmlElement? xml
Implementation
QueueConfiguration.fromXml(XmlElement? xml) {
events = getProp(xml, 'Events')?.innerText;
filter = NotificationConfigurationFilter.fromXml(getProp(xml, 'Filter'));
id = getProp(xml, 'Id')?.innerText;
queueArn = getProp(xml, 'QueueArn')?.innerText;
}