QueueConfiguration.fromXml constructor

QueueConfiguration.fromXml(
  1. XmlElement? xml
)

Implementation

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