ElastiCacheInstanceDetails.fromJson constructor

ElastiCacheInstanceDetails.fromJson(
  1. 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?,
  );
}