ListStorageLensConfigurationEntry.fromXml constructor
ListStorageLensConfigurationEntry.fromXml(
- XmlElement elem
Implementation
factory ListStorageLensConfigurationEntry.fromXml(_s.XmlElement elem) {
return ListStorageLensConfigurationEntry(
homeRegion: _s.extractXmlStringValue(elem, 'HomeRegion')!,
id: _s.extractXmlStringValue(elem, 'Id')!,
storageLensArn: _s.extractXmlStringValue(elem, 'StorageLensArn')!,
isEnabled: _s.extractXmlBoolValue(elem, 'IsEnabled'),
);
}