File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
amazonqGumby/chat/controller/messenger Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -267,12 +267,12 @@ export class Messenger {
267267 mandatory : true ,
268268 options : [
269269 {
270- value : 'Oracle' ,
271- label : 'Oracle' ,
270+ value : DB . ORACLE ,
271+ label : DB . ORACLE ,
272272 } ,
273273 {
274- value : 'Other' ,
275- label : 'Other' ,
274+ value : DB . OTHER ,
275+ label : DB . OTHER ,
276276 } ,
277277 ] ,
278278 } )
@@ -284,12 +284,12 @@ export class Messenger {
284284 mandatory : true ,
285285 options : [
286286 {
287- value : 'Amazon RDS for PostgreSQL' ,
288- label : 'Amazon RDS for PostgreSQL' ,
287+ value : DB . AMAZON_RDS ,
288+ label : DB . AMAZON_RDS ,
289289 } ,
290290 {
291- value : 'Amazon Aurora PostgreSQL' ,
292- label : 'Amazon Aurora PostgreSQL' ,
291+ value : DB . AMAZON_AURORA ,
292+ label : DB . AMAZON_AURORA ,
293293 } ,
294294 ] ,
295295 } )
Original file line number Diff line number Diff line change @@ -305,8 +305,8 @@ export enum JDKVersion {
305305
306306export enum DB {
307307 ORACLE = 'Oracle' ,
308- AMAZON_RDS = 'Amazon RDS' ,
309- AMAZON_AURORA = 'Amazon Aurora' ,
308+ AMAZON_RDS = 'Amazon RDS for PostgreSQL ' ,
309+ AMAZON_AURORA = 'Amazon Aurora PostgreSQL ' ,
310310 OTHER = 'Other' ,
311311}
312312
You can’t perform that action at this time.
0 commit comments