RdsHttpEndpointConfig.fromJson constructor
Implementation
factory RdsHttpEndpointConfig.fromJson(Map<String, dynamic> json) {
return RdsHttpEndpointConfig(
awsRegion: json['awsRegion'] as String?,
awsSecretStoreArn: json['awsSecretStoreArn'] as String?,
databaseName: json['databaseName'] as String?,
dbClusterIdentifier: json['dbClusterIdentifier'] as String?,
schema: json['schema'] as String?,
);
}