AwsRedshiftClusterClusterNode.fromJson constructor
Implementation
factory AwsRedshiftClusterClusterNode.fromJson(Map<String, dynamic> json) {
return AwsRedshiftClusterClusterNode(
nodeRole: json['NodeRole'] as String?,
privateIpAddress: json['PrivateIpAddress'] as String?,
publicIpAddress: json['PublicIpAddress'] as String?,
);
}