@@ -855,6 +855,8 @@ export class AuroraPostgresEngineVersion {
855
855
public static readonly VER_12_15 = AuroraPostgresEngineVersion . of ( '12.15' , '12' , { s3Import : true , s3Export : true } ) ;
856
856
/** Version "12.16". */
857
857
public static readonly VER_12_16 = AuroraPostgresEngineVersion . of ( '12.16' , '12' , { s3Import : true , s3Export : true } ) ;
858
+ /** Version "12.17". */
859
+ public static readonly VER_12_17 = AuroraPostgresEngineVersion . of ( '12.17' , '12' , { s3Import : true , s3Export : true } ) ;
858
860
/**
859
861
* Version "13.3".
860
862
* @deprecated Version 13.3 is no longer supported by Amazon RDS.
@@ -887,6 +889,8 @@ export class AuroraPostgresEngineVersion {
887
889
public static readonly VER_13_11 = AuroraPostgresEngineVersion . of ( '13.11' , '13' , { s3Import : true , s3Export : true } ) ;
888
890
/** Version "13.12". */
889
891
public static readonly VER_13_12 = AuroraPostgresEngineVersion . of ( '13.12' , '13' , { s3Import : true , s3Export : true } ) ;
892
+ /** Version "13.13". */
893
+ public static readonly VER_13_13 = AuroraPostgresEngineVersion . of ( '13.13' , '13' , { s3Import : true , s3Export : true } ) ;
890
894
/** Version "14.3". */
891
895
public static readonly VER_14_3 = AuroraPostgresEngineVersion . of ( '14.3' , '14' , { s3Import : true , s3Export : true } ) ;
892
896
/**
@@ -904,12 +908,20 @@ export class AuroraPostgresEngineVersion {
904
908
public static readonly VER_14_8 = AuroraPostgresEngineVersion . of ( '14.8' , '14' , { s3Import : true , s3Export : true } ) ;
905
909
/** Version "14.9". */
906
910
public static readonly VER_14_9 = AuroraPostgresEngineVersion . of ( '14.9' , '14' , { s3Import : true , s3Export : true } ) ;
911
+ /** Version "14.10". */
912
+ public static readonly VER_14_10 = AuroraPostgresEngineVersion . of ( '14.10' , '14' , { s3Import : true , s3Export : true } ) ;
907
913
/** Version "15.2". */
908
914
public static readonly VER_15_2 = AuroraPostgresEngineVersion . of ( '15.2' , '15' , { s3Import : true , s3Export : true } ) ;
909
915
/** Version "15.3". */
910
916
public static readonly VER_15_3 = AuroraPostgresEngineVersion . of ( '15.3' , '15' , { s3Import : true , s3Export : true } ) ;
911
917
/** Version "15.4". */
912
- public static readonly VER_15_4 = AuroraPostgresEngineVersion . of ( '15.4' , '15' , { s3Import : true , s3Export : true } )
918
+ public static readonly VER_15_4 = AuroraPostgresEngineVersion . of ( '15.4' , '15' , { s3Import : true , s3Export : true } ) ;
919
+ /** Version "15.5". */
920
+ public static readonly VER_15_5 = AuroraPostgresEngineVersion . of ( '15.5' , '15' , { s3Import : true , s3Export : true } ) ;
921
+ /** Version "16.0".
922
+ * Version 16.0 is available in preview environment as of November 15, 2023.
923
+ */
924
+ public static readonly VER_16_0 = AuroraPostgresEngineVersion . of ( '16.0' , '16' , { s3Import : true , s3Export : true } ) ;
913
925
914
926
/**
915
927
* Create a new AuroraPostgresEngineVersion with an arbitrary version.
0 commit comments