AwsRedshiftClusterEndpoint.fromJson constructor

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

Implementation

factory AwsRedshiftClusterEndpoint.fromJson(Map<String, dynamic> json) {
  return AwsRedshiftClusterEndpoint(
    address: json['Address'] as String?,
    port: json['Port'] as int?,
  );
}