AwsRedshiftClusterClusterNode.fromJson constructor

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

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