@aws-sdk/client-rds 3.991.0 → 3.993.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist-cjs/index.js +6 -0
  2. package/dist-cjs/schemas/schemas_0.js +17 -16
  3. package/dist-es/models/enums.js +5 -0
  4. package/dist-es/schemas/schemas_0.js +17 -16
  5. package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +1 -0
  6. package/dist-types/commands/CopyDBSnapshotCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateDBClusterCommand.d.ts +1 -0
  8. package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +1 -0
  9. package/dist-types/commands/CreateDBInstanceCommand.d.ts +1 -0
  10. package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +1 -0
  11. package/dist-types/commands/CreateDBSnapshotCommand.d.ts +1 -0
  12. package/dist-types/commands/CreateGlobalClusterCommand.d.ts +1 -0
  13. package/dist-types/commands/DeleteDBClusterAutomatedBackupCommand.d.ts +1 -0
  14. package/dist-types/commands/DeleteDBClusterCommand.d.ts +1 -0
  15. package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +1 -0
  16. package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +1 -0
  17. package/dist-types/commands/DeleteDBInstanceCommand.d.ts +1 -0
  18. package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +1 -0
  19. package/dist-types/commands/DeleteGlobalClusterCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +1 -0
  21. package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -0
  22. package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -0
  24. package/dist-types/commands/DescribeDBInstancesCommand.d.ts +1 -0
  25. package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +1 -0
  26. package/dist-types/commands/DescribeGlobalClustersCommand.d.ts +1 -0
  27. package/dist-types/commands/FailoverDBClusterCommand.d.ts +1 -0
  28. package/dist-types/commands/FailoverGlobalClusterCommand.d.ts +1 -0
  29. package/dist-types/commands/ModifyDBClusterCommand.d.ts +1 -0
  30. package/dist-types/commands/ModifyDBInstanceCommand.d.ts +1 -0
  31. package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +1 -0
  32. package/dist-types/commands/ModifyGlobalClusterCommand.d.ts +1 -0
  33. package/dist-types/commands/PromoteReadReplicaCommand.d.ts +1 -0
  34. package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +1 -0
  35. package/dist-types/commands/RebootDBClusterCommand.d.ts +1 -0
  36. package/dist-types/commands/RebootDBInstanceCommand.d.ts +1 -0
  37. package/dist-types/commands/RemoveFromGlobalClusterCommand.d.ts +1 -0
  38. package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +1 -0
  39. package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +1 -0
  40. package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +1 -0
  41. package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +1 -0
  42. package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +1 -0
  43. package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +1 -0
  44. package/dist-types/commands/StartDBClusterCommand.d.ts +1 -0
  45. package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
  46. package/dist-types/commands/StartDBInstanceCommand.d.ts +1 -0
  47. package/dist-types/commands/StopDBClusterCommand.d.ts +1 -0
  48. package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
  49. package/dist-types/commands/StopDBInstanceCommand.d.ts +1 -0
  50. package/dist-types/commands/SwitchoverGlobalClusterCommand.d.ts +1 -0
  51. package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +1 -0
  52. package/dist-types/models/enums.d.ts +13 -0
  53. package/dist-types/models/models_0.d.ts +36 -1
  54. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +8 -0
  56. package/package.json +13 -13
package/dist-cjs/index.js CHANGED
@@ -3352,6 +3352,11 @@ const ExportSourceType = {
3352
3352
  CLUSTER: "CLUSTER",
3353
3353
  SNAPSHOT: "SNAPSHOT",
3354
3354
  };
3355
+ const StorageEncryptionType = {
3356
+ CMK: "sse-kms",
3357
+ SSE: "sse-rds",
3358
+ UNENCRYPTED: "none",
3359
+ };
3355
3360
  const ClusterScalabilityType = {
3356
3361
  LIMITLESS: "limitless",
3357
3362
  STANDARD: "standard",
@@ -3732,6 +3737,7 @@ exports.StopActivityStreamCommand = StopActivityStreamCommand;
3732
3737
  exports.StopDBClusterCommand = StopDBClusterCommand;
3733
3738
  exports.StopDBInstanceAutomatedBackupsReplicationCommand = StopDBInstanceAutomatedBackupsReplicationCommand;
3734
3739
  exports.StopDBInstanceCommand = StopDBInstanceCommand;
3740
+ exports.StorageEncryptionType = StorageEncryptionType;
3735
3741
  exports.SwitchoverBlueGreenDeploymentCommand = SwitchoverBlueGreenDeploymentCommand;
3736
3742
  exports.SwitchoverGlobalClusterCommand = SwitchoverGlobalClusterCommand;
3737
3743
  exports.SwitchoverReadReplicaCommand = SwitchoverReadReplicaCommand;
@@ -1321,8 +1321,9 @@ const _SELL = "SupportedEngineLifecycleList";
1321
1321
  const _SELu = "SupportedEngineLifecycle";
1322
1322
  const _SEM = "SupportedEngineModes";
1323
1323
  const _SEMu = "SupportsEnhancedMonitoring";
1324
- const _SET = "StartExportTask";
1324
+ const _SET = "StorageEncryptionType";
1325
1325
  const _SETM = "StartExportTaskMessage";
1326
+ const _SETt = "StartExportTask";
1326
1327
  const _SEV = "SourceEngineVersion";
1327
1328
  const _SEo = "SourceEngine";
1328
1329
  const _SFD = "SetForDelete";
@@ -2824,13 +2825,13 @@ exports.CustomDBEngineVersionAMI$ = [3, n0, _CDBEVAMI,
2824
2825
  ];
2825
2826
  exports.DBCluster$ = [3, n0, _DBC,
2826
2827
  0,
2827
- [_AS, _AZv, _BRP, _CSN, _DN, _DBCI, _DBCPG, _DBSGu, _St, _PP, _ERT, _End, _RE, _CE, _MAZ, _E, _EV, _LRT, _P, _MU, _DBCOGM, _PBW, _PMW, _URO, _RSI, _RRI, _SIt, _DBCM, _VSG, _HZI, _SE, _KKI, _DCRI, _DBCA, _AR, _IAMDAE, _CGI, _CCT, _EBT, _BW, _BCCR, _ECLEn, _Ca, _PMV, _EMn, _SCI, _RCCC, _DBCIC, _STt, _I, _ST, _IOONAMT, _PA, _AMVU, _DP, _HEE, _ASM, _ASS, _ASKKI, _ASKSN, _CTTS, _CAC, _DM, _TL, _GCI, _GWFS, _GWFR, _NT, _ART, _SVSC, _SVPV, _MIo, _MRA, _DIM, _PIE, _PIKMSKI, _PIRP, _DBSI, _MUS, _LWFS, _ABRPA, _LD, _CST, _CD, _ELS],
2828
- [1, [() => AvailabilityZones, 0], 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 64 | 0, 2, 0, 0, 4, 1, 0, [() => DBClusterOptionGroupMemberships, 0], 0, 0, 0, 0, [() => ReadReplicaIdentifierList, 0], [() => DBClusterStatusInfoList, 0], [() => DBClusterMemberList, 0], [() => VpcSecurityGroupMembershipList, 0], 0, 2, 0, 0, 0, [() => DBClusterRoles, 0], 2, 0, 4, 4, 1, 1, 64 | 0, 1, [() => exports.ClusterPendingModifiedValues$, 0], 0, () => exports.ScalingConfigurationInfo$, () => exports.RdsCustomClusterConfiguration$, 0, 0, 1, 1, 4, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, [() => DomainMembershipList, 0], [() => TagList, 0], 0, 0, 2, 0, 4, () => exports.ServerlessV2ScalingConfigurationInfo$, 0, 1, 0, 0, 2, 0, 1, 0, () => exports.MasterUserSecret$, 0, 0, () => exports.LimitlessDatabase$, 0, () => exports.CertificateDetails$, 0]
2828
+ [_AS, _AZv, _BRP, _CSN, _DN, _DBCI, _DBCPG, _DBSGu, _St, _PP, _ERT, _End, _RE, _CE, _MAZ, _E, _EV, _LRT, _P, _MU, _DBCOGM, _PBW, _PMW, _URO, _RSI, _RRI, _SIt, _DBCM, _VSG, _HZI, _SE, _SET, _KKI, _DCRI, _DBCA, _AR, _IAMDAE, _CGI, _CCT, _EBT, _BW, _BCCR, _ECLEn, _Ca, _PMV, _EMn, _SCI, _RCCC, _DBCIC, _STt, _I, _ST, _IOONAMT, _PA, _AMVU, _DP, _HEE, _ASM, _ASS, _ASKKI, _ASKSN, _CTTS, _CAC, _DM, _TL, _GCI, _GWFS, _GWFR, _NT, _ART, _SVSC, _SVPV, _MIo, _MRA, _DIM, _PIE, _PIKMSKI, _PIRP, _DBSI, _MUS, _LWFS, _ABRPA, _LD, _CST, _CD, _ELS],
2829
+ [1, [() => AvailabilityZones, 0], 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 64 | 0, 2, 0, 0, 4, 1, 0, [() => DBClusterOptionGroupMemberships, 0], 0, 0, 0, 0, [() => ReadReplicaIdentifierList, 0], [() => DBClusterStatusInfoList, 0], [() => DBClusterMemberList, 0], [() => VpcSecurityGroupMembershipList, 0], 0, 2, 0, 0, 0, 0, [() => DBClusterRoles, 0], 2, 0, 4, 4, 1, 1, 64 | 0, 1, [() => exports.ClusterPendingModifiedValues$, 0], 0, () => exports.ScalingConfigurationInfo$, () => exports.RdsCustomClusterConfiguration$, 0, 0, 1, 1, 4, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, [() => DomainMembershipList, 0], [() => TagList, 0], 0, 0, 2, 0, 4, () => exports.ServerlessV2ScalingConfigurationInfo$, 0, 1, 0, 0, 2, 0, 1, 0, () => exports.MasterUserSecret$, 0, 0, () => exports.LimitlessDatabase$, 0, () => exports.CertificateDetails$, 0]
2829
2830
  ];
2830
2831
  exports.DBClusterAutomatedBackup$ = [3, n0, _DBCAB,
2831
2832
  0,
2832
- [_E, _VI, _DBCABA, _DBCI, _RW, _MU, _DCRI, _R, _LM, _St, _IAMDAE, _CCT, _SE, _AS, _EV, _DBCA, _BRP, _PBW, _EMn, _AZv, _P, _KKI, _STt, _I, _ST, _ABRPA, _TL],
2833
- [0, 0, 0, 0, () => exports.RestoreWindow$, 0, 0, 0, 0, 0, 2, 4, 2, 1, 0, 0, 1, 0, 0, [() => AvailabilityZones, 0], 1, 0, 0, 1, 1, 0, [() => TagList, 0]]
2833
+ [_E, _VI, _DBCABA, _DBCI, _RW, _MU, _DCRI, _R, _LM, _St, _IAMDAE, _CCT, _SE, _SET, _AS, _EV, _DBCA, _BRP, _PBW, _EMn, _AZv, _P, _KKI, _STt, _I, _ST, _ABRPA, _TL],
2834
+ [0, 0, 0, 0, () => exports.RestoreWindow$, 0, 0, 0, 0, 0, 2, 4, 2, 0, 1, 0, 0, 1, 0, 0, [() => AvailabilityZones, 0], 1, 0, 0, 1, 1, 0, [() => TagList, 0]]
2834
2835
  ];
2835
2836
  exports.DBClusterAutomatedBackupMessage$ = [3, n0, _DBCABM,
2836
2837
  0,
@@ -2904,8 +2905,8 @@ exports.DBClusterRole$ = [3, n0, _DBCR,
2904
2905
  ];
2905
2906
  exports.DBClusterSnapshot$ = [3, n0, _DBCS,
2906
2907
  0,
2907
- [_AZv, _DBCSI, _DBCI, _SCT, _E, _EMn, _AS, _St, _P, _VI, _CCT, _MU, _EV, _LM, _STna, _PP, _SE, _BRP, _PBW, _KKI, _DBCSA, _SDBCSA, _IAMDAE, _TL, _STt, _ST, _DCRI, _DBSI],
2908
- [[() => AvailabilityZones, 0], 0, 0, 4, 0, 0, 1, 0, 1, 0, 4, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 2, [() => TagList, 0], 0, 1, 0, 0]
2908
+ [_AZv, _DBCSI, _DBCI, _SCT, _E, _EMn, _AS, _St, _P, _VI, _CCT, _MU, _EV, _LM, _STna, _PP, _SE, _SET, _BRP, _PBW, _KKI, _DBCSA, _SDBCSA, _IAMDAE, _TL, _STt, _ST, _DCRI, _DBSI],
2909
+ [[() => AvailabilityZones, 0], 0, 0, 4, 0, 0, 1, 0, 1, 0, 4, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 2, [() => TagList, 0], 0, 1, 0, 0]
2909
2910
  ];
2910
2911
  exports.DBClusterSnapshotAttribute$ = [3, n0, _DBCSAl,
2911
2912
  0,
@@ -2939,13 +2940,13 @@ exports.DBEngineVersionMessage$ = [3, n0, _DBEVM,
2939
2940
  ];
2940
2941
  exports.DBInstance$ = [3, n0, _DBI,
2941
2942
  0,
2942
- [_DBII, _DBIC, _E, _DBIS, _MU, _DBN, _End, _AS, _ICTn, _PBW, _BRP, _DBSGe, _VSG, _DBPGa, _AZ, _DBSGu, _PMW, _URO, _PMV, _LRT, _MAZ, _EV, _AMVU, _RRSDBII, _RRDBII, _RRDBCI, _RM, _LM, _I, _ST, _OGM, _CSN, _NCSN, _SAZe, _PA, _SIt, _STt, _TCA, _DIP, _DBCI, _SE, _KKI, _DRI, _CACI, _DM, _CTTS, _MIo, _EMRA, _MRA, _PT, _DBIA, _Ti, _IAMDAE, _DIM, _PIE, _PIKMSKI, _PIRP, _ECLEn, _PF, _DP, _AR, _LE, _MAS, _TL, _AM, _RFAMT, _COIE, _NT, _ASS, _ASKKI, _ASKSN, _ASM, _ASENAFI, _ABRPA, _DBIABR, _BTa, _ART, _CIIP, _ASPS, _CD, _DBSI, _MUS, _RRSDBCI, _PP, _MT, _DLV, _ISCUA, _ELS, _ASVd, _SVS],
2943
- [0, 0, 0, 0, 0, 0, () => exports.Endpoint$, 1, 4, 0, 1, [() => DBSecurityGroupMembershipList, 0], [() => VpcSecurityGroupMembershipList, 0], [() => DBParameterGroupStatusList, 0], 0, [() => exports.DBSubnetGroup$, 0], 0, 0, [() => exports.PendingModifiedValues$, 0], 4, 2, 0, 2, 0, [() => ReadReplicaDBInstanceIdentifierList, 0], [() => ReadReplicaDBClusterIdentifierList, 0], 0, 0, 1, 1, [() => OptionGroupMembershipList, 0], 0, 0, 0, 2, [() => DBInstanceStatusInfoList, 0], 0, 0, 1, 0, 2, 0, 0, 0, [() => DomainMembershipList, 0], 2, 1, 0, 0, 1, 0, 0, 2, 0, 2, 0, 1, 64 | 0, [() => ProcessorFeatureList, 0], 2, [() => DBInstanceRoles, 0], () => exports.Endpoint$, 1, [() => TagList, 0], 0, 4, 2, 0, 0, 0, 0, 0, 2, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 4, 0, 0, () => exports.CertificateDetails$, 0, () => exports.MasterUserSecret$, 0, 0, 2, 2, 2, 0, () => AdditionalStorageVolumesOutputList, 0]
2943
+ [_DBII, _DBIC, _E, _DBIS, _MU, _DBN, _End, _AS, _ICTn, _PBW, _BRP, _DBSGe, _VSG, _DBPGa, _AZ, _DBSGu, _PMW, _URO, _PMV, _LRT, _MAZ, _EV, _AMVU, _RRSDBII, _RRDBII, _RRDBCI, _RM, _LM, _I, _ST, _OGM, _CSN, _NCSN, _SAZe, _PA, _SIt, _STt, _SET, _TCA, _DIP, _DBCI, _SE, _KKI, _DRI, _CACI, _DM, _CTTS, _MIo, _EMRA, _MRA, _PT, _DBIA, _Ti, _IAMDAE, _DIM, _PIE, _PIKMSKI, _PIRP, _ECLEn, _PF, _DP, _AR, _LE, _MAS, _TL, _AM, _RFAMT, _COIE, _NT, _ASS, _ASKKI, _ASKSN, _ASM, _ASENAFI, _ABRPA, _DBIABR, _BTa, _ART, _CIIP, _ASPS, _CD, _DBSI, _MUS, _RRSDBCI, _PP, _MT, _DLV, _ISCUA, _ELS, _ASVd, _SVS],
2944
+ [0, 0, 0, 0, 0, 0, () => exports.Endpoint$, 1, 4, 0, 1, [() => DBSecurityGroupMembershipList, 0], [() => VpcSecurityGroupMembershipList, 0], [() => DBParameterGroupStatusList, 0], 0, [() => exports.DBSubnetGroup$, 0], 0, 0, [() => exports.PendingModifiedValues$, 0], 4, 2, 0, 2, 0, [() => ReadReplicaDBInstanceIdentifierList, 0], [() => ReadReplicaDBClusterIdentifierList, 0], 0, 0, 1, 1, [() => OptionGroupMembershipList, 0], 0, 0, 0, 2, [() => DBInstanceStatusInfoList, 0], 0, 0, 0, 1, 0, 2, 0, 0, 0, [() => DomainMembershipList, 0], 2, 1, 0, 0, 1, 0, 0, 2, 0, 2, 0, 1, 64 | 0, [() => ProcessorFeatureList, 0], 2, [() => DBInstanceRoles, 0], () => exports.Endpoint$, 1, [() => TagList, 0], 0, 4, 2, 0, 0, 0, 0, 0, 2, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 4, 0, 0, () => exports.CertificateDetails$, 0, () => exports.MasterUserSecret$, 0, 0, 2, 2, 2, 0, () => AdditionalStorageVolumesOutputList, 0]
2944
2945
  ];
2945
2946
  exports.DBInstanceAutomatedBackup$ = [3, n0, _DBIAB,
2946
2947
  0,
2947
- [_DBIA, _DRI, _R, _DBII, _RW, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _E, _EV, _LM, _I, _ST, _OGN, _TCA, _Enc, _STt, _KKI, _Ti, _IAMDAE, _BRP, _PBW, _DBIABA, _DBIABR, _BTa, _MT, _ABRPA, _TL, _DLV, _ASVd],
2948
- [0, 0, 0, 0, () => exports.RestoreWindow$, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 1, 0, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 2, 0, [() => TagList, 0], 2, () => AdditionalStorageVolumesList]
2948
+ [_DBIA, _DRI, _R, _DBII, _RW, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _E, _EV, _LM, _I, _ST, _OGN, _TCA, _Enc, _SET, _STt, _KKI, _Ti, _IAMDAE, _BRP, _PBW, _DBIABA, _DBIABR, _BTa, _MT, _ABRPA, _TL, _DLV, _ASVd],
2949
+ [0, 0, 0, 0, () => exports.RestoreWindow$, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 2, 0, [() => TagList, 0], 2, () => AdditionalStorageVolumesList]
2949
2950
  ];
2950
2951
  exports.DBInstanceAutomatedBackupMessage$ = [3, n0, _DBIABM,
2951
2952
  0,
@@ -3059,8 +3060,8 @@ exports.DBShardGroup$ = [3, n0, _DBSGh,
3059
3060
  ];
3060
3061
  exports.DBSnapshot$ = [3, n0, _DBS,
3061
3062
  0,
3062
- [_DBSIn, _DBII, _SCT, _E, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _EV, _LM, _STna, _I, _ST, _OGN, _PP, _SR, _SDBSI, _STt, _TCA, _Enc, _BRP, _PBW, _KKI, _DBSA, _Ti, _IAMDAE, _PF, _DRI, _TL, _STn, _OSCT, _SDT, _DBSI, _MT, _DLV, _ASVd, _SAZ],
3063
- [0, 0, 4, 0, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 2, [() => ProcessorFeatureList, 0], 0, [() => TagList, 0], 0, 4, 4, 0, 2, 2, () => AdditionalStorageVolumesList, 0]
3063
+ [_DBSIn, _DBII, _SCT, _E, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _EV, _LM, _STna, _I, _ST, _OGN, _PP, _SR, _SDBSI, _STt, _TCA, _Enc, _SET, _BRP, _PBW, _KKI, _DBSA, _Ti, _IAMDAE, _PF, _DRI, _TL, _STn, _OSCT, _SDT, _DBSI, _MT, _DLV, _ASVd, _SAZ],
3064
+ [0, 0, 4, 0, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2, [() => ProcessorFeatureList, 0], 0, [() => TagList, 0], 0, 4, 4, 0, 2, 2, () => AdditionalStorageVolumesList, 0]
3064
3065
  ];
3065
3066
  exports.DBSnapshotAttribute$ = [3, n0, _DBSAn,
3066
3067
  0,
@@ -3709,8 +3710,8 @@ exports.Filter$ = [3, n0, _Fil,
3709
3710
  ];
3710
3711
  exports.GlobalCluster$ = [3, n0, _GC,
3711
3712
  0,
3712
- [_GCI, _GCRI, _GCA, _St, _E, _EV, _ELS, _DN, _SE, _DP, _GCM, _End, _FSa, _TL],
3713
- [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, [() => GlobalClusterMemberList, 0], 0, () => exports.FailoverState$, [() => TagList, 0]]
3713
+ [_GCI, _GCRI, _GCA, _St, _E, _EV, _ELS, _DN, _SE, _SET, _DP, _GCM, _End, _FSa, _TL],
3714
+ [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, [() => GlobalClusterMemberList, 0], 0, () => exports.FailoverState$, [() => TagList, 0]]
3714
3715
  ];
3715
3716
  exports.GlobalClusterMember$ = [3, n0, _GCMl,
3716
3717
  0,
@@ -5475,7 +5476,7 @@ exports.StartDBInstance$ = [9, n0, _SDBI,
5475
5476
  exports.StartDBInstanceAutomatedBackupsReplication$ = [9, n0, _SDBIABRt,
5476
5477
  0, () => exports.StartDBInstanceAutomatedBackupsReplicationMessage$, () => exports.StartDBInstanceAutomatedBackupsReplicationResult$
5477
5478
  ];
5478
- exports.StartExportTask$ = [9, n0, _SET,
5479
+ exports.StartExportTask$ = [9, n0, _SETt,
5479
5480
  0, () => exports.StartExportTaskMessage$, () => exports.ExportTask$
5480
5481
  ];
5481
5482
  exports.StopActivityStream$ = [9, n0, _SASt,
@@ -18,6 +18,11 @@ export const ExportSourceType = {
18
18
  CLUSTER: "CLUSTER",
19
19
  SNAPSHOT: "SNAPSHOT",
20
20
  };
21
+ export const StorageEncryptionType = {
22
+ CMK: "sse-kms",
23
+ SSE: "sse-rds",
24
+ UNENCRYPTED: "none",
25
+ };
21
26
  export const ClusterScalabilityType = {
22
27
  LIMITLESS: "limitless",
23
28
  STANDARD: "standard",
@@ -1304,8 +1304,9 @@ const _SELL = "SupportedEngineLifecycleList";
1304
1304
  const _SELu = "SupportedEngineLifecycle";
1305
1305
  const _SEM = "SupportedEngineModes";
1306
1306
  const _SEMu = "SupportsEnhancedMonitoring";
1307
- const _SET = "StartExportTask";
1307
+ const _SET = "StorageEncryptionType";
1308
1308
  const _SETM = "StartExportTaskMessage";
1309
+ const _SETt = "StartExportTask";
1309
1310
  const _SEV = "SourceEngineVersion";
1310
1311
  const _SEo = "SourceEngine";
1311
1312
  const _SFD = "SetForDelete";
@@ -2807,13 +2808,13 @@ export var CustomDBEngineVersionAMI$ = [3, n0, _CDBEVAMI,
2807
2808
  ];
2808
2809
  export var DBCluster$ = [3, n0, _DBC,
2809
2810
  0,
2810
- [_AS, _AZv, _BRP, _CSN, _DN, _DBCI, _DBCPG, _DBSGu, _St, _PP, _ERT, _End, _RE, _CE, _MAZ, _E, _EV, _LRT, _P, _MU, _DBCOGM, _PBW, _PMW, _URO, _RSI, _RRI, _SIt, _DBCM, _VSG, _HZI, _SE, _KKI, _DCRI, _DBCA, _AR, _IAMDAE, _CGI, _CCT, _EBT, _BW, _BCCR, _ECLEn, _Ca, _PMV, _EMn, _SCI, _RCCC, _DBCIC, _STt, _I, _ST, _IOONAMT, _PA, _AMVU, _DP, _HEE, _ASM, _ASS, _ASKKI, _ASKSN, _CTTS, _CAC, _DM, _TL, _GCI, _GWFS, _GWFR, _NT, _ART, _SVSC, _SVPV, _MIo, _MRA, _DIM, _PIE, _PIKMSKI, _PIRP, _DBSI, _MUS, _LWFS, _ABRPA, _LD, _CST, _CD, _ELS],
2811
- [1, [() => AvailabilityZones, 0], 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 64 | 0, 2, 0, 0, 4, 1, 0, [() => DBClusterOptionGroupMemberships, 0], 0, 0, 0, 0, [() => ReadReplicaIdentifierList, 0], [() => DBClusterStatusInfoList, 0], [() => DBClusterMemberList, 0], [() => VpcSecurityGroupMembershipList, 0], 0, 2, 0, 0, 0, [() => DBClusterRoles, 0], 2, 0, 4, 4, 1, 1, 64 | 0, 1, [() => ClusterPendingModifiedValues$, 0], 0, () => ScalingConfigurationInfo$, () => RdsCustomClusterConfiguration$, 0, 0, 1, 1, 4, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, [() => DomainMembershipList, 0], [() => TagList, 0], 0, 0, 2, 0, 4, () => ServerlessV2ScalingConfigurationInfo$, 0, 1, 0, 0, 2, 0, 1, 0, () => MasterUserSecret$, 0, 0, () => LimitlessDatabase$, 0, () => CertificateDetails$, 0]
2811
+ [_AS, _AZv, _BRP, _CSN, _DN, _DBCI, _DBCPG, _DBSGu, _St, _PP, _ERT, _End, _RE, _CE, _MAZ, _E, _EV, _LRT, _P, _MU, _DBCOGM, _PBW, _PMW, _URO, _RSI, _RRI, _SIt, _DBCM, _VSG, _HZI, _SE, _SET, _KKI, _DCRI, _DBCA, _AR, _IAMDAE, _CGI, _CCT, _EBT, _BW, _BCCR, _ECLEn, _Ca, _PMV, _EMn, _SCI, _RCCC, _DBCIC, _STt, _I, _ST, _IOONAMT, _PA, _AMVU, _DP, _HEE, _ASM, _ASS, _ASKKI, _ASKSN, _CTTS, _CAC, _DM, _TL, _GCI, _GWFS, _GWFR, _NT, _ART, _SVSC, _SVPV, _MIo, _MRA, _DIM, _PIE, _PIKMSKI, _PIRP, _DBSI, _MUS, _LWFS, _ABRPA, _LD, _CST, _CD, _ELS],
2812
+ [1, [() => AvailabilityZones, 0], 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 64 | 0, 2, 0, 0, 4, 1, 0, [() => DBClusterOptionGroupMemberships, 0], 0, 0, 0, 0, [() => ReadReplicaIdentifierList, 0], [() => DBClusterStatusInfoList, 0], [() => DBClusterMemberList, 0], [() => VpcSecurityGroupMembershipList, 0], 0, 2, 0, 0, 0, 0, [() => DBClusterRoles, 0], 2, 0, 4, 4, 1, 1, 64 | 0, 1, [() => ClusterPendingModifiedValues$, 0], 0, () => ScalingConfigurationInfo$, () => RdsCustomClusterConfiguration$, 0, 0, 1, 1, 4, 2, 2, 2, 2, 0, 0, 0, 0, 2, 2, [() => DomainMembershipList, 0], [() => TagList, 0], 0, 0, 2, 0, 4, () => ServerlessV2ScalingConfigurationInfo$, 0, 1, 0, 0, 2, 0, 1, 0, () => MasterUserSecret$, 0, 0, () => LimitlessDatabase$, 0, () => CertificateDetails$, 0]
2812
2813
  ];
2813
2814
  export var DBClusterAutomatedBackup$ = [3, n0, _DBCAB,
2814
2815
  0,
2815
- [_E, _VI, _DBCABA, _DBCI, _RW, _MU, _DCRI, _R, _LM, _St, _IAMDAE, _CCT, _SE, _AS, _EV, _DBCA, _BRP, _PBW, _EMn, _AZv, _P, _KKI, _STt, _I, _ST, _ABRPA, _TL],
2816
- [0, 0, 0, 0, () => RestoreWindow$, 0, 0, 0, 0, 0, 2, 4, 2, 1, 0, 0, 1, 0, 0, [() => AvailabilityZones, 0], 1, 0, 0, 1, 1, 0, [() => TagList, 0]]
2816
+ [_E, _VI, _DBCABA, _DBCI, _RW, _MU, _DCRI, _R, _LM, _St, _IAMDAE, _CCT, _SE, _SET, _AS, _EV, _DBCA, _BRP, _PBW, _EMn, _AZv, _P, _KKI, _STt, _I, _ST, _ABRPA, _TL],
2817
+ [0, 0, 0, 0, () => RestoreWindow$, 0, 0, 0, 0, 0, 2, 4, 2, 0, 1, 0, 0, 1, 0, 0, [() => AvailabilityZones, 0], 1, 0, 0, 1, 1, 0, [() => TagList, 0]]
2817
2818
  ];
2818
2819
  export var DBClusterAutomatedBackupMessage$ = [3, n0, _DBCABM,
2819
2820
  0,
@@ -2887,8 +2888,8 @@ export var DBClusterRole$ = [3, n0, _DBCR,
2887
2888
  ];
2888
2889
  export var DBClusterSnapshot$ = [3, n0, _DBCS,
2889
2890
  0,
2890
- [_AZv, _DBCSI, _DBCI, _SCT, _E, _EMn, _AS, _St, _P, _VI, _CCT, _MU, _EV, _LM, _STna, _PP, _SE, _BRP, _PBW, _KKI, _DBCSA, _SDBCSA, _IAMDAE, _TL, _STt, _ST, _DCRI, _DBSI],
2891
- [[() => AvailabilityZones, 0], 0, 0, 4, 0, 0, 1, 0, 1, 0, 4, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 2, [() => TagList, 0], 0, 1, 0, 0]
2891
+ [_AZv, _DBCSI, _DBCI, _SCT, _E, _EMn, _AS, _St, _P, _VI, _CCT, _MU, _EV, _LM, _STna, _PP, _SE, _SET, _BRP, _PBW, _KKI, _DBCSA, _SDBCSA, _IAMDAE, _TL, _STt, _ST, _DCRI, _DBSI],
2892
+ [[() => AvailabilityZones, 0], 0, 0, 4, 0, 0, 1, 0, 1, 0, 4, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 2, [() => TagList, 0], 0, 1, 0, 0]
2892
2893
  ];
2893
2894
  export var DBClusterSnapshotAttribute$ = [3, n0, _DBCSAl,
2894
2895
  0,
@@ -2922,13 +2923,13 @@ export var DBEngineVersionMessage$ = [3, n0, _DBEVM,
2922
2923
  ];
2923
2924
  export var DBInstance$ = [3, n0, _DBI,
2924
2925
  0,
2925
- [_DBII, _DBIC, _E, _DBIS, _MU, _DBN, _End, _AS, _ICTn, _PBW, _BRP, _DBSGe, _VSG, _DBPGa, _AZ, _DBSGu, _PMW, _URO, _PMV, _LRT, _MAZ, _EV, _AMVU, _RRSDBII, _RRDBII, _RRDBCI, _RM, _LM, _I, _ST, _OGM, _CSN, _NCSN, _SAZe, _PA, _SIt, _STt, _TCA, _DIP, _DBCI, _SE, _KKI, _DRI, _CACI, _DM, _CTTS, _MIo, _EMRA, _MRA, _PT, _DBIA, _Ti, _IAMDAE, _DIM, _PIE, _PIKMSKI, _PIRP, _ECLEn, _PF, _DP, _AR, _LE, _MAS, _TL, _AM, _RFAMT, _COIE, _NT, _ASS, _ASKKI, _ASKSN, _ASM, _ASENAFI, _ABRPA, _DBIABR, _BTa, _ART, _CIIP, _ASPS, _CD, _DBSI, _MUS, _RRSDBCI, _PP, _MT, _DLV, _ISCUA, _ELS, _ASVd, _SVS],
2926
- [0, 0, 0, 0, 0, 0, () => Endpoint$, 1, 4, 0, 1, [() => DBSecurityGroupMembershipList, 0], [() => VpcSecurityGroupMembershipList, 0], [() => DBParameterGroupStatusList, 0], 0, [() => DBSubnetGroup$, 0], 0, 0, [() => PendingModifiedValues$, 0], 4, 2, 0, 2, 0, [() => ReadReplicaDBInstanceIdentifierList, 0], [() => ReadReplicaDBClusterIdentifierList, 0], 0, 0, 1, 1, [() => OptionGroupMembershipList, 0], 0, 0, 0, 2, [() => DBInstanceStatusInfoList, 0], 0, 0, 1, 0, 2, 0, 0, 0, [() => DomainMembershipList, 0], 2, 1, 0, 0, 1, 0, 0, 2, 0, 2, 0, 1, 64 | 0, [() => ProcessorFeatureList, 0], 2, [() => DBInstanceRoles, 0], () => Endpoint$, 1, [() => TagList, 0], 0, 4, 2, 0, 0, 0, 0, 0, 2, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 4, 0, 0, () => CertificateDetails$, 0, () => MasterUserSecret$, 0, 0, 2, 2, 2, 0, () => AdditionalStorageVolumesOutputList, 0]
2926
+ [_DBII, _DBIC, _E, _DBIS, _MU, _DBN, _End, _AS, _ICTn, _PBW, _BRP, _DBSGe, _VSG, _DBPGa, _AZ, _DBSGu, _PMW, _URO, _PMV, _LRT, _MAZ, _EV, _AMVU, _RRSDBII, _RRDBII, _RRDBCI, _RM, _LM, _I, _ST, _OGM, _CSN, _NCSN, _SAZe, _PA, _SIt, _STt, _SET, _TCA, _DIP, _DBCI, _SE, _KKI, _DRI, _CACI, _DM, _CTTS, _MIo, _EMRA, _MRA, _PT, _DBIA, _Ti, _IAMDAE, _DIM, _PIE, _PIKMSKI, _PIRP, _ECLEn, _PF, _DP, _AR, _LE, _MAS, _TL, _AM, _RFAMT, _COIE, _NT, _ASS, _ASKKI, _ASKSN, _ASM, _ASENAFI, _ABRPA, _DBIABR, _BTa, _ART, _CIIP, _ASPS, _CD, _DBSI, _MUS, _RRSDBCI, _PP, _MT, _DLV, _ISCUA, _ELS, _ASVd, _SVS],
2927
+ [0, 0, 0, 0, 0, 0, () => Endpoint$, 1, 4, 0, 1, [() => DBSecurityGroupMembershipList, 0], [() => VpcSecurityGroupMembershipList, 0], [() => DBParameterGroupStatusList, 0], 0, [() => DBSubnetGroup$, 0], 0, 0, [() => PendingModifiedValues$, 0], 4, 2, 0, 2, 0, [() => ReadReplicaDBInstanceIdentifierList, 0], [() => ReadReplicaDBClusterIdentifierList, 0], 0, 0, 1, 1, [() => OptionGroupMembershipList, 0], 0, 0, 0, 2, [() => DBInstanceStatusInfoList, 0], 0, 0, 0, 1, 0, 2, 0, 0, 0, [() => DomainMembershipList, 0], 2, 1, 0, 0, 1, 0, 0, 2, 0, 2, 0, 1, 64 | 0, [() => ProcessorFeatureList, 0], 2, [() => DBInstanceRoles, 0], () => Endpoint$, 1, [() => TagList, 0], 0, 4, 2, 0, 0, 0, 0, 0, 2, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 4, 0, 0, () => CertificateDetails$, 0, () => MasterUserSecret$, 0, 0, 2, 2, 2, 0, () => AdditionalStorageVolumesOutputList, 0]
2927
2928
  ];
2928
2929
  export var DBInstanceAutomatedBackup$ = [3, n0, _DBIAB,
2929
2930
  0,
2930
- [_DBIA, _DRI, _R, _DBII, _RW, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _E, _EV, _LM, _I, _ST, _OGN, _TCA, _Enc, _STt, _KKI, _Ti, _IAMDAE, _BRP, _PBW, _DBIABA, _DBIABR, _BTa, _MT, _ABRPA, _TL, _DLV, _ASVd],
2931
- [0, 0, 0, 0, () => RestoreWindow$, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 2, 1, 0, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 2, 0, [() => TagList, 0], 2, () => AdditionalStorageVolumesList]
2931
+ [_DBIA, _DRI, _R, _DBII, _RW, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _E, _EV, _LM, _I, _ST, _OGN, _TCA, _Enc, _SET, _STt, _KKI, _Ti, _IAMDAE, _BRP, _PBW, _DBIABA, _DBIABR, _BTa, _MT, _ABRPA, _TL, _DLV, _ASVd],
2932
+ [0, 0, 0, 0, () => RestoreWindow$, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 2, 1, 0, 0, [() => DBInstanceAutomatedBackupsReplicationList, 0], 0, 2, 0, [() => TagList, 0], 2, () => AdditionalStorageVolumesList]
2932
2933
  ];
2933
2934
  export var DBInstanceAutomatedBackupMessage$ = [3, n0, _DBIABM,
2934
2935
  0,
@@ -3042,8 +3043,8 @@ export var DBShardGroup$ = [3, n0, _DBSGh,
3042
3043
  ];
3043
3044
  export var DBSnapshot$ = [3, n0, _DBS,
3044
3045
  0,
3045
- [_DBSIn, _DBII, _SCT, _E, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _EV, _LM, _STna, _I, _ST, _OGN, _PP, _SR, _SDBSI, _STt, _TCA, _Enc, _BRP, _PBW, _KKI, _DBSA, _Ti, _IAMDAE, _PF, _DRI, _TL, _STn, _OSCT, _SDT, _DBSI, _MT, _DLV, _ASVd, _SAZ],
3046
- [0, 0, 4, 0, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 2, [() => ProcessorFeatureList, 0], 0, [() => TagList, 0], 0, 4, 4, 0, 2, 2, () => AdditionalStorageVolumesList, 0]
3046
+ [_DBSIn, _DBII, _SCT, _E, _AS, _St, _P, _AZ, _VI, _ICTn, _MU, _EV, _LM, _STna, _I, _ST, _OGN, _PP, _SR, _SDBSI, _STt, _TCA, _Enc, _SET, _BRP, _PBW, _KKI, _DBSA, _Ti, _IAMDAE, _PF, _DRI, _TL, _STn, _OSCT, _SDT, _DBSI, _MT, _DLV, _ASVd, _SAZ],
3047
+ [0, 0, 4, 0, 1, 0, 1, 0, 0, 4, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 2, [() => ProcessorFeatureList, 0], 0, [() => TagList, 0], 0, 4, 4, 0, 2, 2, () => AdditionalStorageVolumesList, 0]
3047
3048
  ];
3048
3049
  export var DBSnapshotAttribute$ = [3, n0, _DBSAn,
3049
3050
  0,
@@ -3692,8 +3693,8 @@ export var Filter$ = [3, n0, _Fil,
3692
3693
  ];
3693
3694
  export var GlobalCluster$ = [3, n0, _GC,
3694
3695
  0,
3695
- [_GCI, _GCRI, _GCA, _St, _E, _EV, _ELS, _DN, _SE, _DP, _GCM, _End, _FSa, _TL],
3696
- [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, [() => GlobalClusterMemberList, 0], 0, () => FailoverState$, [() => TagList, 0]]
3696
+ [_GCI, _GCRI, _GCA, _St, _E, _EV, _ELS, _DN, _SE, _SET, _DP, _GCM, _End, _FSa, _TL],
3697
+ [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, [() => GlobalClusterMemberList, 0], 0, () => FailoverState$, [() => TagList, 0]]
3697
3698
  ];
3698
3699
  export var GlobalClusterMember$ = [3, n0, _GCMl,
3699
3700
  0,
@@ -5458,7 +5459,7 @@ export var StartDBInstance$ = [9, n0, _SDBI,
5458
5459
  export var StartDBInstanceAutomatedBackupsReplication$ = [9, n0, _SDBIABRt,
5459
5460
  0, () => StartDBInstanceAutomatedBackupsReplicationMessage$, () => StartDBInstanceAutomatedBackupsReplicationResult$
5460
5461
  ];
5461
- export var StartExportTask$ = [9, n0, _SET,
5462
+ export var StartExportTask$ = [9, n0, _SETt,
5462
5463
  0, () => StartExportTaskMessage$, () => ExportTask$
5463
5464
  ];
5464
5465
  export var StopActivityStream$ = [9, n0, _SASt,
@@ -72,6 +72,7 @@ declare const CopyDBClusterSnapshotCommand_base: {
72
72
  * // SnapshotType: "STRING_VALUE",
73
73
  * // PercentProgress: Number("int"),
74
74
  * // StorageEncrypted: true || false,
75
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
75
76
  * // BackupRetentionPeriod: Number("int"),
76
77
  * // PreferredBackupWindow: "STRING_VALUE",
77
78
  * // KmsKeyId: "STRING_VALUE",
@@ -81,6 +81,7 @@ declare const CopyDBSnapshotCommand_base: {
81
81
  * // StorageType: "STRING_VALUE",
82
82
  * // TdeCredentialArn: "STRING_VALUE",
83
83
  * // Encrypted: true || false,
84
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
84
85
  * // BackupRetentionPeriod: Number("int"),
85
86
  * // PreferredBackupWindow: "STRING_VALUE",
86
87
  * // KmsKeyId: "STRING_VALUE",
@@ -197,6 +197,7 @@ declare const CreateDBClusterCommand_base: {
197
197
  * // ],
198
198
  * // HostedZoneId: "STRING_VALUE",
199
199
  * // StorageEncrypted: true || false,
200
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
200
201
  * // KmsKeyId: "STRING_VALUE",
201
202
  * // DbClusterResourceId: "STRING_VALUE",
202
203
  * // DBClusterArn: "STRING_VALUE",
@@ -69,6 +69,7 @@ declare const CreateDBClusterSnapshotCommand_base: {
69
69
  * // SnapshotType: "STRING_VALUE",
70
70
  * // PercentProgress: Number("int"),
71
71
  * // StorageEncrypted: true || false,
72
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
72
73
  * // BackupRetentionPeriod: Number("int"),
73
74
  * // PreferredBackupWindow: "STRING_VALUE",
74
75
  * // KmsKeyId: "STRING_VALUE",
@@ -284,6 +284,7 @@ declare const CreateDBInstanceCommand_base: {
284
284
  * // },
285
285
  * // ],
286
286
  * // StorageType: "STRING_VALUE",
287
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
287
288
  * // TdeCredentialArn: "STRING_VALUE",
288
289
  * // DbInstancePort: Number("int"),
289
290
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -264,6 +264,7 @@ declare const CreateDBInstanceReadReplicaCommand_base: {
264
264
  * // },
265
265
  * // ],
266
266
  * // StorageType: "STRING_VALUE",
267
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
267
268
  * // TdeCredentialArn: "STRING_VALUE",
268
269
  * // DbInstancePort: Number("int"),
269
270
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -73,6 +73,7 @@ declare const CreateDBSnapshotCommand_base: {
73
73
  * // StorageType: "STRING_VALUE",
74
74
  * // TdeCredentialArn: "STRING_VALUE",
75
75
  * // Encrypted: true || false,
76
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
76
77
  * // BackupRetentionPeriod: Number("int"),
77
78
  * // PreferredBackupWindow: "STRING_VALUE",
78
79
  * // KmsKeyId: "STRING_VALUE",
@@ -65,6 +65,7 @@ declare const CreateGlobalClusterCommand_base: {
65
65
  * // EngineLifecycleSupport: "STRING_VALUE",
66
66
  * // DatabaseName: "STRING_VALUE",
67
67
  * // StorageEncrypted: true || false,
68
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
68
69
  * // DeletionProtection: true || false,
69
70
  * // GlobalClusterMembers: [ // GlobalClusterMemberList
70
71
  * // { // GlobalClusterMember
@@ -59,6 +59,7 @@ declare const DeleteDBClusterAutomatedBackupCommand_base: {
59
59
  * // IAMDatabaseAuthenticationEnabled: true || false,
60
60
  * // ClusterCreateTime: new Date("TIMESTAMP"),
61
61
  * // StorageEncrypted: true || false,
62
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
62
63
  * // AllocatedStorage: Number("int"),
63
64
  * // EngineVersion: "STRING_VALUE",
64
65
  * // DBClusterArn: "STRING_VALUE",
@@ -107,6 +107,7 @@ declare const DeleteDBClusterCommand_base: {
107
107
  * // ],
108
108
  * // HostedZoneId: "STRING_VALUE",
109
109
  * // StorageEncrypted: true || false,
110
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
110
111
  * // KmsKeyId: "STRING_VALUE",
111
112
  * // DbClusterResourceId: "STRING_VALUE",
112
113
  * // DBClusterArn: "STRING_VALUE",
@@ -62,6 +62,7 @@ declare const DeleteDBClusterSnapshotCommand_base: {
62
62
  * // SnapshotType: "STRING_VALUE",
63
63
  * // PercentProgress: Number("int"),
64
64
  * // StorageEncrypted: true || false,
65
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
65
66
  * // BackupRetentionPeriod: Number("int"),
66
67
  * // PreferredBackupWindow: "STRING_VALUE",
67
68
  * // KmsKeyId: "STRING_VALUE",
@@ -67,6 +67,7 @@ declare const DeleteDBInstanceAutomatedBackupCommand_base: {
67
67
  * // OptionGroupName: "STRING_VALUE",
68
68
  * // TdeCredentialArn: "STRING_VALUE",
69
69
  * // Encrypted: true || false,
70
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
70
71
  * // StorageType: "STRING_VALUE",
71
72
  * // KmsKeyId: "STRING_VALUE",
72
73
  * // Timezone: "STRING_VALUE",
@@ -184,6 +184,7 @@ declare const DeleteDBInstanceCommand_base: {
184
184
  * // },
185
185
  * // ],
186
186
  * // StorageType: "STRING_VALUE",
187
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
187
188
  * // TdeCredentialArn: "STRING_VALUE",
188
189
  * // DbInstancePort: Number("int"),
189
190
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -66,6 +66,7 @@ declare const DeleteDBSnapshotCommand_base: {
66
66
  * // StorageType: "STRING_VALUE",
67
67
  * // TdeCredentialArn: "STRING_VALUE",
68
68
  * // Encrypted: true || false,
69
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
69
70
  * // BackupRetentionPeriod: Number("int"),
70
71
  * // PreferredBackupWindow: "STRING_VALUE",
71
72
  * // KmsKeyId: "STRING_VALUE",
@@ -52,6 +52,7 @@ declare const DeleteGlobalClusterCommand_base: {
52
52
  * // EngineLifecycleSupport: "STRING_VALUE",
53
53
  * // DatabaseName: "STRING_VALUE",
54
54
  * // StorageEncrypted: true || false,
55
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
55
56
  * // DeletionProtection: true || false,
56
57
  * // GlobalClusterMembers: [ // GlobalClusterMemberList
57
58
  * // { // GlobalClusterMember
@@ -72,6 +72,7 @@ declare const DescribeDBClusterAutomatedBackupsCommand_base: {
72
72
  * // IAMDatabaseAuthenticationEnabled: true || false,
73
73
  * // ClusterCreateTime: new Date("TIMESTAMP"),
74
74
  * // StorageEncrypted: true || false,
75
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
75
76
  * // AllocatedStorage: Number("int"),
76
77
  * // EngineVersion: "STRING_VALUE",
77
78
  * // DBClusterArn: "STRING_VALUE",
@@ -79,6 +79,7 @@ declare const DescribeDBClusterSnapshotsCommand_base: {
79
79
  * // SnapshotType: "STRING_VALUE",
80
80
  * // PercentProgress: Number("int"),
81
81
  * // StorageEncrypted: true || false,
82
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
82
83
  * // BackupRetentionPeriod: Number("int"),
83
84
  * // PreferredBackupWindow: "STRING_VALUE",
84
85
  * // KmsKeyId: "STRING_VALUE",
@@ -117,6 +117,7 @@ declare const DescribeDBClustersCommand_base: {
117
117
  * // ],
118
118
  * // HostedZoneId: "STRING_VALUE",
119
119
  * // StorageEncrypted: true || false,
120
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
120
121
  * // KmsKeyId: "STRING_VALUE",
121
122
  * // DbClusterResourceId: "STRING_VALUE",
122
123
  * // DBClusterArn: "STRING_VALUE",
@@ -80,6 +80,7 @@ declare const DescribeDBInstanceAutomatedBackupsCommand_base: {
80
80
  * // OptionGroupName: "STRING_VALUE",
81
81
  * // TdeCredentialArn: "STRING_VALUE",
82
82
  * // Encrypted: true || false,
83
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
83
84
  * // StorageType: "STRING_VALUE",
84
85
  * // KmsKeyId: "STRING_VALUE",
85
86
  * // Timezone: "STRING_VALUE",
@@ -193,6 +193,7 @@ declare const DescribeDBInstancesCommand_base: {
193
193
  * // },
194
194
  * // ],
195
195
  * // StorageType: "STRING_VALUE",
196
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
196
197
  * // TdeCredentialArn: "STRING_VALUE",
197
198
  * // DbInstancePort: Number("int"),
198
199
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -83,6 +83,7 @@ declare const DescribeDBSnapshotsCommand_base: {
83
83
  * // StorageType: "STRING_VALUE",
84
84
  * // TdeCredentialArn: "STRING_VALUE",
85
85
  * // Encrypted: true || false,
86
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
86
87
  * // BackupRetentionPeriod: Number("int"),
87
88
  * // PreferredBackupWindow: "STRING_VALUE",
88
89
  * // KmsKeyId: "STRING_VALUE",
@@ -64,6 +64,7 @@ declare const DescribeGlobalClustersCommand_base: {
64
64
  * // EngineLifecycleSupport: "STRING_VALUE",
65
65
  * // DatabaseName: "STRING_VALUE",
66
66
  * // StorageEncrypted: true || false,
67
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
67
68
  * // DeletionProtection: true || false,
68
69
  * // GlobalClusterMembers: [ // GlobalClusterMemberList
69
70
  * // { // GlobalClusterMember
@@ -105,6 +105,7 @@ declare const FailoverDBClusterCommand_base: {
105
105
  * // ],
106
106
  * // HostedZoneId: "STRING_VALUE",
107
107
  * // StorageEncrypted: true || false,
108
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
108
109
  * // KmsKeyId: "STRING_VALUE",
109
110
  * // DbClusterResourceId: "STRING_VALUE",
110
111
  * // DBClusterArn: "STRING_VALUE",
@@ -55,6 +55,7 @@ declare const FailoverGlobalClusterCommand_base: {
55
55
  * // EngineLifecycleSupport: "STRING_VALUE",
56
56
  * // DatabaseName: "STRING_VALUE",
57
57
  * // StorageEncrypted: true || false,
58
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
58
59
  * // DeletionProtection: true || false,
59
60
  * // GlobalClusterMembers: [ // GlobalClusterMemberList
60
61
  * // { // GlobalClusterMember
@@ -170,6 +170,7 @@ declare const ModifyDBClusterCommand_base: {
170
170
  * // ],
171
171
  * // HostedZoneId: "STRING_VALUE",
172
172
  * // StorageEncrypted: true || false,
173
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
173
174
  * // KmsKeyId: "STRING_VALUE",
174
175
  * // DbClusterResourceId: "STRING_VALUE",
175
176
  * // DBClusterArn: "STRING_VALUE",
@@ -282,6 +282,7 @@ declare const ModifyDBInstanceCommand_base: {
282
282
  * // },
283
283
  * // ],
284
284
  * // StorageType: "STRING_VALUE",
285
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
285
286
  * // TdeCredentialArn: "STRING_VALUE",
286
287
  * // DbInstancePort: Number("int"),
287
288
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -68,6 +68,7 @@ declare const ModifyDBSnapshotCommand_base: {
68
68
  * // StorageType: "STRING_VALUE",
69
69
  * // TdeCredentialArn: "STRING_VALUE",
70
70
  * // Encrypted: true || false,
71
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
71
72
  * // BackupRetentionPeriod: Number("int"),
72
73
  * // PreferredBackupWindow: "STRING_VALUE",
73
74
  * // KmsKeyId: "STRING_VALUE",
@@ -56,6 +56,7 @@ declare const ModifyGlobalClusterCommand_base: {
56
56
  * // EngineLifecycleSupport: "STRING_VALUE",
57
57
  * // DatabaseName: "STRING_VALUE",
58
58
  * // StorageEncrypted: true || false,
59
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
59
60
  * // DeletionProtection: true || false,
60
61
  * // GlobalClusterMembers: [ // GlobalClusterMemberList
61
62
  * // { // GlobalClusterMember
@@ -194,6 +194,7 @@ declare const PromoteReadReplicaCommand_base: {
194
194
  * // },
195
195
  * // ],
196
196
  * // StorageType: "STRING_VALUE",
197
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
197
198
  * // TdeCredentialArn: "STRING_VALUE",
198
199
  * // DbInstancePort: Number("int"),
199
200
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -104,6 +104,7 @@ declare const PromoteReadReplicaDBClusterCommand_base: {
104
104
  * // ],
105
105
  * // HostedZoneId: "STRING_VALUE",
106
106
  * // StorageEncrypted: true || false,
107
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
107
108
  * // KmsKeyId: "STRING_VALUE",
108
109
  * // DbClusterResourceId: "STRING_VALUE",
109
110
  * // DBClusterArn: "STRING_VALUE",
@@ -104,6 +104,7 @@ declare const RebootDBClusterCommand_base: {
104
104
  * // ],
105
105
  * // HostedZoneId: "STRING_VALUE",
106
106
  * // StorageEncrypted: true || false,
107
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
107
108
  * // KmsKeyId: "STRING_VALUE",
108
109
  * // DbClusterResourceId: "STRING_VALUE",
109
110
  * // DBClusterArn: "STRING_VALUE",
@@ -182,6 +182,7 @@ declare const RebootDBInstanceCommand_base: {
182
182
  * // },
183
183
  * // ],
184
184
  * // StorageType: "STRING_VALUE",
185
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
185
186
  * // TdeCredentialArn: "STRING_VALUE",
186
187
  * // DbInstancePort: Number("int"),
187
188
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -53,6 +53,7 @@ declare const RemoveFromGlobalClusterCommand_base: {
53
53
  * // EngineLifecycleSupport: "STRING_VALUE",
54
54
  * // DatabaseName: "STRING_VALUE",
55
55
  * // StorageEncrypted: true || false,
56
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
56
57
  * // DeletionProtection: true || false,
57
58
  * // GlobalClusterMembers: [ // GlobalClusterMemberList
58
59
  * // { // GlobalClusterMember
@@ -166,6 +166,7 @@ declare const RestoreDBClusterFromS3Command_base: {
166
166
  * // ],
167
167
  * // HostedZoneId: "STRING_VALUE",
168
168
  * // StorageEncrypted: true || false,
169
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
169
170
  * // KmsKeyId: "STRING_VALUE",
170
171
  * // DbClusterResourceId: "STRING_VALUE",
171
172
  * // DBClusterArn: "STRING_VALUE",
@@ -177,6 +177,7 @@ declare const RestoreDBClusterFromSnapshotCommand_base: {
177
177
  * // ],
178
178
  * // HostedZoneId: "STRING_VALUE",
179
179
  * // StorageEncrypted: true || false,
180
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
180
181
  * // KmsKeyId: "STRING_VALUE",
181
182
  * // DbClusterResourceId: "STRING_VALUE",
182
183
  * // DBClusterArn: "STRING_VALUE",
@@ -175,6 +175,7 @@ declare const RestoreDBClusterToPointInTimeCommand_base: {
175
175
  * // ],
176
176
  * // HostedZoneId: "STRING_VALUE",
177
177
  * // StorageEncrypted: true || false,
178
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
178
179
  * // KmsKeyId: "STRING_VALUE",
179
180
  * // DbClusterResourceId: "STRING_VALUE",
180
181
  * // DBClusterArn: "STRING_VALUE",
@@ -263,6 +263,7 @@ declare const RestoreDBInstanceFromDBSnapshotCommand_base: {
263
263
  * // },
264
264
  * // ],
265
265
  * // StorageType: "STRING_VALUE",
266
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
266
267
  * // TdeCredentialArn: "STRING_VALUE",
267
268
  * // DbInstancePort: Number("int"),
268
269
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -269,6 +269,7 @@ declare const RestoreDBInstanceFromS3Command_base: {
269
269
  * // },
270
270
  * // ],
271
271
  * // StorageType: "STRING_VALUE",
272
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
272
273
  * // TdeCredentialArn: "STRING_VALUE",
273
274
  * // DbInstancePort: Number("int"),
274
275
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -267,6 +267,7 @@ declare const RestoreDBInstanceToPointInTimeCommand_base: {
267
267
  * // },
268
268
  * // ],
269
269
  * // StorageType: "STRING_VALUE",
270
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
270
271
  * // TdeCredentialArn: "STRING_VALUE",
271
272
  * // DbInstancePort: Number("int"),
272
273
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -104,6 +104,7 @@ declare const StartDBClusterCommand_base: {
104
104
  * // ],
105
105
  * // HostedZoneId: "STRING_VALUE",
106
106
  * // StorageEncrypted: true || false,
107
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
107
108
  * // KmsKeyId: "STRING_VALUE",
108
109
  * // DbClusterResourceId: "STRING_VALUE",
109
110
  * // DBClusterArn: "STRING_VALUE",
@@ -75,6 +75,7 @@ declare const StartDBInstanceAutomatedBackupsReplicationCommand_base: {
75
75
  * // OptionGroupName: "STRING_VALUE",
76
76
  * // TdeCredentialArn: "STRING_VALUE",
77
77
  * // Encrypted: true || false,
78
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
78
79
  * // StorageType: "STRING_VALUE",
79
80
  * // KmsKeyId: "STRING_VALUE",
80
81
  * // Timezone: "STRING_VALUE",
@@ -181,6 +181,7 @@ declare const StartDBInstanceCommand_base: {
181
181
  * // },
182
182
  * // ],
183
183
  * // StorageType: "STRING_VALUE",
184
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
184
185
  * // TdeCredentialArn: "STRING_VALUE",
185
186
  * // DbInstancePort: Number("int"),
186
187
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -104,6 +104,7 @@ declare const StopDBClusterCommand_base: {
104
104
  * // ],
105
105
  * // HostedZoneId: "STRING_VALUE",
106
106
  * // StorageEncrypted: true || false,
107
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
107
108
  * // KmsKeyId: "STRING_VALUE",
108
109
  * // DbClusterResourceId: "STRING_VALUE",
109
110
  * // DBClusterArn: "STRING_VALUE",
@@ -66,6 +66,7 @@ declare const StopDBInstanceAutomatedBackupsReplicationCommand_base: {
66
66
  * // OptionGroupName: "STRING_VALUE",
67
67
  * // TdeCredentialArn: "STRING_VALUE",
68
68
  * // Encrypted: true || false,
69
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
69
70
  * // StorageType: "STRING_VALUE",
70
71
  * // KmsKeyId: "STRING_VALUE",
71
72
  * // Timezone: "STRING_VALUE",
@@ -182,6 +182,7 @@ declare const StopDBInstanceCommand_base: {
182
182
  * // },
183
183
  * // ],
184
184
  * // StorageType: "STRING_VALUE",
185
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
185
186
  * // TdeCredentialArn: "STRING_VALUE",
186
187
  * // DbInstancePort: Number("int"),
187
188
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -53,6 +53,7 @@ declare const SwitchoverGlobalClusterCommand_base: {
53
53
  * // EngineLifecycleSupport: "STRING_VALUE",
54
54
  * // DatabaseName: "STRING_VALUE",
55
55
  * // StorageEncrypted: true || false,
56
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
56
57
  * // DeletionProtection: true || false,
57
58
  * // GlobalClusterMembers: [ // GlobalClusterMemberList
58
59
  * // { // GlobalClusterMember
@@ -181,6 +181,7 @@ declare const SwitchoverReadReplicaCommand_base: {
181
181
  * // },
182
182
  * // ],
183
183
  * // StorageType: "STRING_VALUE",
184
+ * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds",
184
185
  * // TdeCredentialArn: "STRING_VALUE",
185
186
  * // DbInstancePort: Number("int"),
186
187
  * // DBClusterIdentifier: "STRING_VALUE",
@@ -50,6 +50,19 @@ export declare const ExportSourceType: {
50
50
  * @public
51
51
  */
52
52
  export type ExportSourceType = (typeof ExportSourceType)[keyof typeof ExportSourceType];
53
+ /**
54
+ * @public
55
+ * @enum
56
+ */
57
+ export declare const StorageEncryptionType: {
58
+ readonly CMK: "sse-kms";
59
+ readonly SSE: "sse-rds";
60
+ readonly UNENCRYPTED: "none";
61
+ };
62
+ /**
63
+ * @public
64
+ */
65
+ export type StorageEncryptionType = (typeof StorageEncryptionType)[keyof typeof StorageEncryptionType];
53
66
  /**
54
67
  * @public
55
68
  * @enum
@@ -1,4 +1,4 @@
1
- import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, ApplyMethod, AuthScheme, AutomationMode, ClientPasswordAuthType, ClusterScalabilityType, DatabaseInsightsMode, DBProxyEndpointStatus, DBProxyEndpointTargetRole, DBProxyStatus, DefaultAuthScheme, EndpointNetworkType, EngineFamily, ExportSourceType, FailoverStatus, GlobalClusterMemberSynchronizationStatus, IAMAuthMode, IntegrationStatus, LifecycleSupportName, LimitlessDatabaseStatus, LocalWriteForwardingStatus, MasterUserAuthenticationType, ReplicaMode, SourceType, TargetConnectionNetworkType, TargetHealthReason, TargetRole, TargetState, TargetType, UpgradeRolloutOrder, WriteForwardingStatus } from "./enums";
1
+ import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, ApplyMethod, AuthScheme, AutomationMode, ClientPasswordAuthType, ClusterScalabilityType, DatabaseInsightsMode, DBProxyEndpointStatus, DBProxyEndpointTargetRole, DBProxyStatus, DefaultAuthScheme, EndpointNetworkType, EngineFamily, ExportSourceType, FailoverStatus, GlobalClusterMemberSynchronizationStatus, IAMAuthMode, IntegrationStatus, LifecycleSupportName, LimitlessDatabaseStatus, LocalWriteForwardingStatus, MasterUserAuthenticationType, ReplicaMode, SourceType, StorageEncryptionType, TargetConnectionNetworkType, TargetHealthReason, TargetRole, TargetState, TargetType, UpgradeRolloutOrder, WriteForwardingStatus } from "./enums";
2
2
  /**
3
3
  * <p>Describes a quota for an Amazon Web Services account.</p> <p>The following are account quotas:</p> <ul> <li> <p> <code>AllocatedStorage</code> - The total allocated storage per account, in GiB. The used value is the total allocated storage in the account, in GiB.</p> </li> <li> <p> <code>AuthorizationsPerDBSecurityGroup</code> - The number of ingress rules per DB security group. The used value is the highest number of ingress rules in a DB security group in the account. Other DB security groups in the account might have a lower number of ingress rules.</p> </li> <li> <p> <code>CustomEndpointsPerDBCluster</code> - The number of custom endpoints per DB cluster. The used value is the highest number of custom endpoints in a DB clusters in the account. Other DB clusters in the account might have a lower number of custom endpoints.</p> </li> <li> <p> <code>DBClusterParameterGroups</code> - The number of DB cluster parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB cluster parameter groups in the account.</p> </li> <li> <p> <code>DBClusterRoles</code> - The number of associated Amazon Web Services Identity and Access Management (IAM) roles per DB cluster. The used value is the highest number of associated IAM roles for a DB cluster in the account. Other DB clusters in the account might have a lower number of associated IAM roles.</p> </li> <li> <p> <code>DBClusters</code> - The number of DB clusters per account. The used value is the count of DB clusters in the account.</p> </li> <li> <p> <code>DBInstanceRoles</code> - The number of associated IAM roles per DB instance. The used value is the highest number of associated IAM roles for a DB instance in the account. Other DB instances in the account might have a lower number of associated IAM roles.</p> </li> <li> <p> <code>DBInstances</code> - The number of DB instances per account. The used value is the count of the DB instances in the account.</p> <p>Amazon RDS DB instances, Amazon Aurora DB instances, Amazon Neptune instances, and Amazon DocumentDB instances apply to this quota.</p> </li> <li> <p> <code>DBParameterGroups</code> - The number of DB parameter groups per account, excluding default parameter groups. The used value is the count of nondefault DB parameter groups in the account.</p> </li> <li> <p> <code>DBSecurityGroups</code> - The number of DB security groups (not VPC security groups) per account, excluding the default security group. The used value is the count of nondefault DB security groups in the account.</p> </li> <li> <p> <code>DBSubnetGroups</code> - The number of DB subnet groups per account. The used value is the count of the DB subnet groups in the account.</p> </li> <li> <p> <code>EventSubscriptions</code> - The number of event subscriptions per account. The used value is the count of the event subscriptions in the account.</p> </li> <li> <p> <code>ManualClusterSnapshots</code> - The number of manual DB cluster snapshots per account. The used value is the count of the manual DB cluster snapshots in the account.</p> </li> <li> <p> <code>ManualSnapshots</code> - The number of manual DB instance snapshots per account. The used value is the count of the manual DB instance snapshots in the account.</p> </li> <li> <p> <code>OptionGroups</code> - The number of DB option groups per account, excluding default option groups. The used value is the count of nondefault DB option groups in the account.</p> </li> <li> <p> <code>ReadReplicasPerMaster</code> - The number of read replicas per DB instance. The used value is the highest number of read replicas for a DB instance in the account. Other DB instances in the account might have a lower number of read replicas.</p> </li> <li> <p> <code>ReservedDBInstances</code> - The number of reserved DB instances per account. The used value is the count of the active reserved DB instances in the account.</p> </li> <li> <p> <code>SubnetsPerDBSubnetGroup</code> - The number of subnets per DB subnet group. The used value is highest number of subnets for a DB subnet group in the account. Other DB subnet groups in the account might have a lower number of subnets.</p> </li> </ul> <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html">Quotas for Amazon RDS</a> in the <i>Amazon RDS User Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_Limits.html">Quotas for Amazon Aurora</a> in the <i>Amazon Aurora User Guide</i>.</p>
4
4
  * @public
@@ -814,6 +814,11 @@ export interface DBClusterSnapshot {
814
814
  * @public
815
815
  */
816
816
  StorageEncrypted?: boolean | undefined;
817
+ /**
818
+ * <p>The type of encryption used to protect data at rest in the DB cluster snapshot. Possible values:</p> <ul> <li> <p> <code>none</code> - The DB cluster snapshot is not encrypted.</p> </li> <li> <p> <code>sse-rds</code> - The DB cluster snapshot is encrypted using an Amazon Web Services owned KMS key.</p> </li> <li> <p> <code>sse-kms</code> - The DB cluster snapshot is encrypted using a customer managed KMS key or Amazon Web Services managed KMS key.</p> </li> </ul>
819
+ * @public
820
+ */
821
+ StorageEncryptionType?: StorageEncryptionType | undefined;
817
822
  /**
818
823
  * <p>The number of days for which automatic DB snapshots are retained.</p>
819
824
  * @public
@@ -1139,6 +1144,11 @@ export interface DBSnapshot {
1139
1144
  * @public
1140
1145
  */
1141
1146
  Encrypted?: boolean | undefined;
1147
+ /**
1148
+ * <p>The type of encryption used to protect data at rest in the DB snapshot. Possible values:</p> <ul> <li> <p> <code>none</code> - The DB snapshot is not encrypted.</p> </li> <li> <p> <code>sse-rds</code> - The DB snapshot is encrypted using an Amazon Web Services owned KMS key.</p> </li> <li> <p> <code>sse-kms</code> - The DB snapshot is encrypted using a customer managed KMS key or Amazon Web Services managed KMS key.</p> </li> </ul>
1149
+ * @public
1150
+ */
1151
+ StorageEncryptionType?: StorageEncryptionType | undefined;
1142
1152
  /**
1143
1153
  * <p>The number of days for which automatic DB snapshots are retained.</p>
1144
1154
  * @public
@@ -2887,6 +2897,11 @@ export interface DBCluster {
2887
2897
  * @public
2888
2898
  */
2889
2899
  StorageEncrypted?: boolean | undefined;
2900
+ /**
2901
+ * <p>The type of encryption used to protect data at rest in the DB cluster. Possible values:</p> <ul> <li> <p> <code>none</code> - The DB cluster is not encrypted.</p> </li> <li> <p> <code>sse-rds</code> - The DB cluster is encrypted using an Amazon Web Services owned KMS key.</p> </li> <li> <p> <code>sse-kms</code> - The DB cluster is encrypted using a customer managed KMS key or Amazon Web Services managed KMS key.</p> </li> </ul>
2902
+ * @public
2903
+ */
2904
+ StorageEncryptionType?: StorageEncryptionType | undefined;
2890
2905
  /**
2891
2906
  * <p>If <code>StorageEncrypted</code> is enabled, the Amazon Web Services KMS key identifier for the encrypted DB cluster.</p> <p>The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.</p>
2892
2907
  * @public
@@ -4178,6 +4193,11 @@ export interface DBInstance {
4178
4193
  * @public
4179
4194
  */
4180
4195
  StorageType?: string | undefined;
4196
+ /**
4197
+ * <p>The type of encryption used to protect data at rest in the DB instance. Possible values:</p> <ul> <li> <p> <code>none</code> - The DB instance is not encrypted.</p> </li> <li> <p> <code>sse-rds</code> - The DB instance is encrypted using an Amazon Web Services owned KMS key.</p> </li> <li> <p> <code>sse-kms</code> - The DB instance is encrypted using a customer managed KMS key or Amazon Web Services managed KMS key.</p> </li> </ul>
4198
+ * @public
4199
+ */
4200
+ StorageEncryptionType?: StorageEncryptionType | undefined;
4181
4201
  /**
4182
4202
  * <p>The ARN from the key store with which the instance is associated for TDE encryption.</p>
4183
4203
  * @public
@@ -5522,6 +5542,11 @@ export interface GlobalCluster {
5522
5542
  * @public
5523
5543
  */
5524
5544
  StorageEncrypted?: boolean | undefined;
5545
+ /**
5546
+ * <p>The type of encryption used to protect data at rest in the global database cluster. Possible values:</p> <ul> <li> <p> <code>none</code> - The global database cluster is not encrypted.</p> </li> <li> <p> <code>sse-rds</code> - The global database cluster is encrypted using an Amazon Web Services owned KMS key.</p> </li> <li> <p> <code>sse-kms</code> - The global database cluster is encrypted using a customer managed KMS key or Amazon Web Services managed KMS key.</p> </li> </ul>
5547
+ * @public
5548
+ */
5549
+ StorageEncryptionType?: StorageEncryptionType | undefined;
5525
5550
  /**
5526
5551
  * <p>The deletion protection setting for the new global database cluster.</p>
5527
5552
  * @public
@@ -6050,6 +6075,11 @@ export interface DBClusterAutomatedBackup {
6050
6075
  * @public
6051
6076
  */
6052
6077
  StorageEncrypted?: boolean | undefined;
6078
+ /**
6079
+ * <p>The type of encryption used to protect data at rest in the automated backup. Possible values:</p> <ul> <li> <p> <code>none</code> - The automated backup is not encrypted.</p> </li> <li> <p> <code>sse-rds</code> - The automated backup is encrypted using an Amazon Web Services owned KMS key.</p> </li> <li> <p> <code>sse-kms</code> - The automated backup is encrypted using a customer managed KMS key or Amazon Web Services managed KMS key.</p> </li> </ul>
6080
+ * @public
6081
+ */
6082
+ StorageEncryptionType?: StorageEncryptionType | undefined;
6053
6083
  /**
6054
6084
  * <p>For all database engines except Amazon Aurora, <code>AllocatedStorage</code> specifies the allocated storage size in gibibytes (GiB). For Aurora, <code>AllocatedStorage</code> always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.</p>
6055
6085
  * @public
@@ -6330,6 +6360,11 @@ export interface DBInstanceAutomatedBackup {
6330
6360
  * @public
6331
6361
  */
6332
6362
  Encrypted?: boolean | undefined;
6363
+ /**
6364
+ * <p>The type of encryption used to protect data at rest in the automated backup. Possible values:</p> <ul> <li> <p> <code>none</code> - The automated backup is not encrypted.</p> </li> <li> <p> <code>sse-rds</code> - The automated backup is encrypted using an Amazon Web Services owned KMS key.</p> </li> <li> <p> <code>sse-kms</code> - The automated backup is encrypted using a customer managed KMS key or Amazon Web Services managed KMS key.</p> </li> </ul>
6365
+ * @public
6366
+ */
6367
+ StorageEncryptionType?: StorageEncryptionType | undefined;
6333
6368
  /**
6334
6369
  * <p>The storage type associated with the automated backup.</p>
6335
6370
  * @public
@@ -26,6 +26,13 @@ export declare const ExportSourceType: {
26
26
  };
27
27
  export type ExportSourceType =
28
28
  (typeof ExportSourceType)[keyof typeof ExportSourceType];
29
+ export declare const StorageEncryptionType: {
30
+ readonly CMK: "sse-kms";
31
+ readonly SSE: "sse-rds";
32
+ readonly UNENCRYPTED: "none";
33
+ };
34
+ export type StorageEncryptionType =
35
+ (typeof StorageEncryptionType)[keyof typeof StorageEncryptionType];
29
36
  export declare const ClusterScalabilityType: {
30
37
  readonly LIMITLESS: "limitless";
31
38
  readonly STANDARD: "standard";
@@ -25,6 +25,7 @@ import {
25
25
  MasterUserAuthenticationType,
26
26
  ReplicaMode,
27
27
  SourceType,
28
+ StorageEncryptionType,
28
29
  TargetConnectionNetworkType,
29
30
  TargetHealthReason,
30
31
  TargetRole,
@@ -222,6 +223,7 @@ export interface DBClusterSnapshot {
222
223
  SnapshotType?: string | undefined;
223
224
  PercentProgress?: number | undefined;
224
225
  StorageEncrypted?: boolean | undefined;
226
+ StorageEncryptionType?: StorageEncryptionType | undefined;
225
227
  BackupRetentionPeriod?: number | undefined;
226
228
  PreferredBackupWindow?: string | undefined;
227
229
  KmsKeyId?: string | undefined;
@@ -293,6 +295,7 @@ export interface DBSnapshot {
293
295
  StorageType?: string | undefined;
294
296
  TdeCredentialArn?: string | undefined;
295
297
  Encrypted?: boolean | undefined;
298
+ StorageEncryptionType?: StorageEncryptionType | undefined;
296
299
  BackupRetentionPeriod?: number | undefined;
297
300
  PreferredBackupWindow?: string | undefined;
298
301
  KmsKeyId?: string | undefined;
@@ -676,6 +679,7 @@ export interface DBCluster {
676
679
  VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
677
680
  HostedZoneId?: string | undefined;
678
681
  StorageEncrypted?: boolean | undefined;
682
+ StorageEncryptionType?: StorageEncryptionType | undefined;
679
683
  KmsKeyId?: string | undefined;
680
684
  DbClusterResourceId?: string | undefined;
681
685
  DBClusterArn?: string | undefined;
@@ -953,6 +957,7 @@ export interface DBInstance {
953
957
  PubliclyAccessible?: boolean | undefined;
954
958
  StatusInfos?: DBInstanceStatusInfo[] | undefined;
955
959
  StorageType?: string | undefined;
960
+ StorageEncryptionType?: StorageEncryptionType | undefined;
956
961
  TdeCredentialArn?: string | undefined;
957
962
  DbInstancePort?: number | undefined;
958
963
  DBClusterIdentifier?: string | undefined;
@@ -1248,6 +1253,7 @@ export interface GlobalCluster {
1248
1253
  EngineLifecycleSupport?: string | undefined;
1249
1254
  DatabaseName?: string | undefined;
1250
1255
  StorageEncrypted?: boolean | undefined;
1256
+ StorageEncryptionType?: StorageEncryptionType | undefined;
1251
1257
  DeletionProtection?: boolean | undefined;
1252
1258
  GlobalClusterMembers?: GlobalClusterMember[] | undefined;
1253
1259
  Endpoint?: string | undefined;
@@ -1370,6 +1376,7 @@ export interface DBClusterAutomatedBackup {
1370
1376
  IAMDatabaseAuthenticationEnabled?: boolean | undefined;
1371
1377
  ClusterCreateTime?: Date | undefined;
1372
1378
  StorageEncrypted?: boolean | undefined;
1379
+ StorageEncryptionType?: StorageEncryptionType | undefined;
1373
1380
  AllocatedStorage?: number | undefined;
1374
1381
  EngineVersion?: string | undefined;
1375
1382
  DBClusterArn?: string | undefined;
@@ -1434,6 +1441,7 @@ export interface DBInstanceAutomatedBackup {
1434
1441
  OptionGroupName?: string | undefined;
1435
1442
  TdeCredentialArn?: string | undefined;
1436
1443
  Encrypted?: boolean | undefined;
1444
+ StorageEncryptionType?: StorageEncryptionType | undefined;
1437
1445
  StorageType?: string | undefined;
1438
1446
  KmsKeyId?: string | undefined;
1439
1447
  Timezone?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rds",
3
3
  "description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
4
- "version": "3.991.0",
4
+ "version": "3.993.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rds",
@@ -23,39 +23,39 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.973.10",
27
- "@aws-sdk/credential-provider-node": "^3.972.9",
26
+ "@aws-sdk/core": "^3.973.11",
27
+ "@aws-sdk/credential-provider-node": "^3.972.10",
28
28
  "@aws-sdk/middleware-host-header": "^3.972.3",
29
29
  "@aws-sdk/middleware-logger": "^3.972.3",
30
30
  "@aws-sdk/middleware-recursion-detection": "^3.972.3",
31
- "@aws-sdk/middleware-sdk-rds": "^3.972.7",
32
- "@aws-sdk/middleware-user-agent": "^3.972.10",
31
+ "@aws-sdk/middleware-sdk-rds": "^3.972.8",
32
+ "@aws-sdk/middleware-user-agent": "^3.972.11",
33
33
  "@aws-sdk/region-config-resolver": "^3.972.3",
34
34
  "@aws-sdk/types": "^3.973.1",
35
- "@aws-sdk/util-endpoints": "3.991.0",
35
+ "@aws-sdk/util-endpoints": "3.993.0",
36
36
  "@aws-sdk/util-user-agent-browser": "^3.972.3",
37
- "@aws-sdk/util-user-agent-node": "^3.972.8",
37
+ "@aws-sdk/util-user-agent-node": "^3.972.9",
38
38
  "@smithy/config-resolver": "^4.4.6",
39
- "@smithy/core": "^3.23.0",
39
+ "@smithy/core": "^3.23.2",
40
40
  "@smithy/fetch-http-handler": "^5.3.9",
41
41
  "@smithy/hash-node": "^4.2.8",
42
42
  "@smithy/invalid-dependency": "^4.2.8",
43
43
  "@smithy/middleware-content-length": "^4.2.8",
44
- "@smithy/middleware-endpoint": "^4.4.14",
45
- "@smithy/middleware-retry": "^4.4.31",
44
+ "@smithy/middleware-endpoint": "^4.4.16",
45
+ "@smithy/middleware-retry": "^4.4.33",
46
46
  "@smithy/middleware-serde": "^4.2.9",
47
47
  "@smithy/middleware-stack": "^4.2.8",
48
48
  "@smithy/node-config-provider": "^4.3.8",
49
49
  "@smithy/node-http-handler": "^4.4.10",
50
50
  "@smithy/protocol-http": "^5.3.8",
51
- "@smithy/smithy-client": "^4.11.3",
51
+ "@smithy/smithy-client": "^4.11.5",
52
52
  "@smithy/types": "^4.12.0",
53
53
  "@smithy/url-parser": "^4.2.8",
54
54
  "@smithy/util-base64": "^4.3.0",
55
55
  "@smithy/util-body-length-browser": "^4.2.0",
56
56
  "@smithy/util-body-length-node": "^4.2.1",
57
- "@smithy/util-defaults-mode-browser": "^4.3.30",
58
- "@smithy/util-defaults-mode-node": "^4.2.33",
57
+ "@smithy/util-defaults-mode-browser": "^4.3.32",
58
+ "@smithy/util-defaults-mode-node": "^4.2.35",
59
59
  "@smithy/util-endpoints": "^3.2.8",
60
60
  "@smithy/util-middleware": "^4.2.8",
61
61
  "@smithy/util-retry": "^4.2.8",