StackSetDriftDetectionDetails.fromXml constructor
StackSetDriftDetectionDetails.fromXml(
- XmlElement elem
Implementation
factory StackSetDriftDetectionDetails.fromXml(_s.XmlElement elem) {
return StackSetDriftDetectionDetails(
driftDetectionStatus: _s
.extractXmlStringValue(elem, 'DriftDetectionStatus')
?.toStackSetDriftDetectionStatus(),
driftStatus: _s
.extractXmlStringValue(elem, 'DriftStatus')
?.toStackSetDriftStatus(),
driftedStackInstancesCount:
_s.extractXmlIntValue(elem, 'DriftedStackInstancesCount'),
failedStackInstancesCount:
_s.extractXmlIntValue(elem, 'FailedStackInstancesCount'),
inProgressStackInstancesCount:
_s.extractXmlIntValue(elem, 'InProgressStackInstancesCount'),
inSyncStackInstancesCount:
_s.extractXmlIntValue(elem, 'InSyncStackInstancesCount'),
lastDriftCheckTimestamp:
_s.extractXmlDateTimeValue(elem, 'LastDriftCheckTimestamp'),
totalStackInstancesCount:
_s.extractXmlIntValue(elem, 'TotalStackInstancesCount'),
);
}