AwsRdsDbClusterMember.fromJson constructor

AwsRdsDbClusterMember.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}