ClusterParameterGroup.fromXml constructor

ClusterParameterGroup.fromXml(
  1. XmlElement elem
)

Implementation

factory ClusterParameterGroup.fromXml(_s.XmlElement elem) {
  return ClusterParameterGroup(
    description: _s.extractXmlStringValue(elem, 'Description'),
    parameterGroupFamily:
        _s.extractXmlStringValue(elem, 'ParameterGroupFamily'),
    parameterGroupName: _s.extractXmlStringValue(elem, 'ParameterGroupName'),
    tags: _s.extractXmlChild(elem, 'Tags')?.let((elem) =>
        elem.findElements('Tag').map((c) => Tag.fromXml(c)).toList()),
  );
}