LambdaFunctionConfiguration.fromXml constructor
LambdaFunctionConfiguration.fromXml(
- 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;
}