ParameterGroupStatus.fromJson constructor
Implementation
factory ParameterGroupStatus.fromJson(Map<String, dynamic> json) {
return ParameterGroupStatus(
nodeIdsToReboot: (json['NodeIdsToReboot'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
parameterApplyStatus: json['ParameterApplyStatus'] as String?,
parameterGroupName: json['ParameterGroupName'] as String?,
);
}