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