GetResourceConfigHistoryResponse.fromJson constructor
Implementation
factory GetResourceConfigHistoryResponse.fromJson(Map<String, dynamic> json) {
return GetResourceConfigHistoryResponse(
configurationItems: (json['configurationItems'] as List?)
?.whereNotNull()
.map((e) => ConfigurationItem.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['nextToken'] as String?,
);
}