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