AwsRdsDbInstanceEndpoint.fromJson constructor

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

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