LambdaFunctionConfiguration.fromXml constructor

LambdaFunctionConfiguration.fromXml(
  1. XmlElement? xml
)

Implementation

LambdaFunctionConfiguration.fromXml(XmlElement? xml) {
  events = getProp(xml, 'Events')?.text;
  filter = NotificationConfigurationFilter.fromXml(getProp(xml, 'Filter'));
  id = getProp(xml, 'Id')?.text;
  lambdaFunctionArn = getProp(xml, 'LambdaFunctionArn')?.text;
}