AwsRdsDbClusterMember.fromJson constructor
Implementation
factory AwsRdsDbClusterMember.fromJson(Map<String, dynamic> json) {
return AwsRdsDbClusterMember(
dbClusterParameterGroupStatus:
json['DbClusterParameterGroupStatus'] as String?,
dbInstanceIdentifier: json['DbInstanceIdentifier'] as String?,
isClusterWriter: json['IsClusterWriter'] as bool?,
promotionTier: json['PromotionTier'] as int?,
);
}