AwsRedshiftClusterElasticIpStatus.fromJson constructor

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

Implementation

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