ElastiCacheInstanceDetails.fromJson constructor
ElastiCacheInstanceDetails.fromJson(
- Map<String, dynamic> json
)
Implementation
factory ElastiCacheInstanceDetails.fromJson(Map<String, dynamic> json) {
return ElastiCacheInstanceDetails(
currentGeneration: json['CurrentGeneration'] as bool?,
family: json['Family'] as String?,
nodeType: json['NodeType'] as String?,
productDescription: json['ProductDescription'] as String?,
region: json['Region'] as String?,
sizeFlexEligible: json['SizeFlexEligible'] as bool?,
);
}