AwsRedshiftClusterElasticIpStatus.fromJson constructor
Implementation
factory AwsRedshiftClusterElasticIpStatus.fromJson(
Map<String, dynamic> json) {
return AwsRedshiftClusterElasticIpStatus(
elasticIp: json['ElasticIp'] as String?,
status: json['Status'] as String?,
);
}