@aws-sdk/client-rds 3.879.0 → 3.882.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.
package/dist-cjs/index.js CHANGED
@@ -208,6 +208,7 @@ __export(index_exports, {
208
208
  DownloadDBLogFilePortionCommand: () => DownloadDBLogFilePortionCommand,
209
209
  Ec2ImagePropertiesNotSupportedFault: () => Ec2ImagePropertiesNotSupportedFault,
210
210
  EnableHttpEndpointCommand: () => EnableHttpEndpointCommand,
211
+ EndpointNetworkType: () => EndpointNetworkType,
211
212
  EngineFamily: () => EngineFamily,
212
213
  EventSubscriptionQuotaExceededFault: () => EventSubscriptionQuotaExceededFault,
213
214
  ExportSourceType: () => ExportSourceType,
@@ -268,6 +269,7 @@ __export(index_exports, {
268
269
  LimitlessDatabaseStatus: () => LimitlessDatabaseStatus,
269
270
  ListTagsForResourceCommand: () => ListTagsForResourceCommand,
270
271
  LocalWriteForwardingStatus: () => LocalWriteForwardingStatus,
272
+ MasterUserAuthenticationType: () => MasterUserAuthenticationType,
271
273
  MaxDBShardGroupLimitReached: () => MaxDBShardGroupLimitReached,
272
274
  ModifyActivityStreamCommand: () => ModifyActivityStreamCommand,
273
275
  ModifyCertificatesCommand: () => ModifyCertificatesCommand,
@@ -358,6 +360,7 @@ __export(index_exports, {
358
360
  SwitchoverBlueGreenDeploymentCommand: () => SwitchoverBlueGreenDeploymentCommand,
359
361
  SwitchoverGlobalClusterCommand: () => SwitchoverGlobalClusterCommand,
360
362
  SwitchoverReadReplicaCommand: () => SwitchoverReadReplicaCommand,
363
+ TargetConnectionNetworkType: () => TargetConnectionNetworkType,
361
364
  TargetHealthReason: () => TargetHealthReason,
362
365
  TargetRole: () => TargetRole,
363
366
  TargetState: () => TargetState,
@@ -1499,6 +1502,10 @@ var DatabaseInsightsMode = {
1499
1502
  ADVANCED: "advanced",
1500
1503
  STANDARD: "standard"
1501
1504
  };
1505
+ var MasterUserAuthenticationType = {
1506
+ IAM_DB_AUTH: "iam-db-auth",
1507
+ PASSWORD: "password"
1508
+ };
1502
1509
  var ReplicaMode = {
1503
1510
  MOUNTED: "mounted",
1504
1511
  OPEN_READ_ONLY: "open-read-only"
@@ -1978,11 +1985,20 @@ var IAMAuthMode = {
1978
1985
  ENABLED: "ENABLED",
1979
1986
  REQUIRED: "REQUIRED"
1980
1987
  };
1988
+ var EndpointNetworkType = {
1989
+ DUAL: "DUAL",
1990
+ IPV4: "IPV4",
1991
+ IPV6: "IPV6"
1992
+ };
1981
1993
  var EngineFamily = {
1982
1994
  MYSQL: "MYSQL",
1983
1995
  POSTGRESQL: "POSTGRESQL",
1984
1996
  SQLSERVER: "SQLSERVER"
1985
1997
  };
1998
+ var TargetConnectionNetworkType = {
1999
+ IPV4: "IPV4",
2000
+ IPV6: "IPV6"
2001
+ };
1986
2002
  var DBProxyStatus = {
1987
2003
  AVAILABLE: "available",
1988
2004
  CREATING: "creating",
@@ -2816,24 +2832,6 @@ var InvalidEventSubscriptionStateFault = class _InvalidEventSubscriptionStateFau
2816
2832
  Object.setPrototypeOf(this, _InvalidEventSubscriptionStateFault.prototype);
2817
2833
  }
2818
2834
  };
2819
- var InvalidIntegrationStateFault = class _InvalidIntegrationStateFault extends RDSServiceException {
2820
- static {
2821
- __name(this, "InvalidIntegrationStateFault");
2822
- }
2823
- name = "InvalidIntegrationStateFault";
2824
- $fault = "client";
2825
- /**
2826
- * @internal
2827
- */
2828
- constructor(opts) {
2829
- super({
2830
- name: "InvalidIntegrationStateFault",
2831
- $fault: "client",
2832
- ...opts
2833
- });
2834
- Object.setPrototypeOf(this, _InvalidIntegrationStateFault.prototype);
2835
- }
2836
- };
2837
2835
  var CreateTenantDatabaseMessageFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
2838
2836
  ...obj,
2839
2837
  ...obj.MasterUserPassword && { MasterUserPassword: import_smithy_client.SENSITIVE_STRING }
@@ -2855,6 +2853,24 @@ var CreateTenantDatabaseResultFilterSensitiveLog = /* @__PURE__ */ __name((obj)
2855
2853
 
2856
2854
  // src/models/models_1.ts
2857
2855
 
2856
+ var InvalidIntegrationStateFault = class _InvalidIntegrationStateFault extends RDSServiceException {
2857
+ static {
2858
+ __name(this, "InvalidIntegrationStateFault");
2859
+ }
2860
+ name = "InvalidIntegrationStateFault";
2861
+ $fault = "client";
2862
+ /**
2863
+ * @internal
2864
+ */
2865
+ constructor(opts) {
2866
+ super({
2867
+ name: "InvalidIntegrationStateFault",
2868
+ $fault: "client",
2869
+ ...opts
2870
+ });
2871
+ Object.setPrototypeOf(this, _InvalidIntegrationStateFault.prototype);
2872
+ }
2873
+ };
2858
2874
  var InvalidOptionGroupStateFault = class _InvalidOptionGroupStateFault extends RDSServiceException {
2859
2875
  static {
2860
2876
  __name(this, "InvalidOptionGroupStateFault");
@@ -9581,6 +9597,9 @@ var se_CreateDBClusterMessage = /* @__PURE__ */ __name((input, context) => {
9581
9597
  if (input[_ELS] != null) {
9582
9598
  entries[_ELS] = input[_ELS];
9583
9599
  }
9600
+ if (input[_MUAT] != null) {
9601
+ entries[_MUAT] = input[_MUAT];
9602
+ }
9584
9603
  return entries;
9585
9604
  }, "se_CreateDBClusterMessage");
9586
9605
  var se_CreateDBClusterParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
@@ -9862,6 +9881,9 @@ var se_CreateDBInstanceMessage = /* @__PURE__ */ __name((input, context) => {
9862
9881
  if (input[_ELS] != null) {
9863
9882
  entries[_ELS] = input[_ELS];
9864
9883
  }
9884
+ if (input[_MUAT] != null) {
9885
+ entries[_MUAT] = input[_MUAT];
9886
+ }
9865
9887
  return entries;
9866
9888
  }, "se_CreateDBInstanceMessage");
9867
9889
  var se_CreateDBInstanceReadReplicaMessage = /* @__PURE__ */ __name((input, context) => {
@@ -10108,6 +10130,9 @@ var se_CreateDBProxyEndpointRequest = /* @__PURE__ */ __name((input, context) =>
10108
10130
  entries[loc] = value;
10109
10131
  });
10110
10132
  }
10133
+ if (input[_ENT] != null) {
10134
+ entries[_ENT] = input[_ENT];
10135
+ }
10111
10136
  return entries;
10112
10137
  }, "se_CreateDBProxyEndpointRequest");
10113
10138
  var se_CreateDBProxyRequest = /* @__PURE__ */ __name((input, context) => {
@@ -10170,6 +10195,12 @@ var se_CreateDBProxyRequest = /* @__PURE__ */ __name((input, context) => {
10170
10195
  entries[loc] = value;
10171
10196
  });
10172
10197
  }
10198
+ if (input[_ENT] != null) {
10199
+ entries[_ENT] = input[_ENT];
10200
+ }
10201
+ if (input[_TCNT] != null) {
10202
+ entries[_TCNT] = input[_TCNT];
10203
+ }
10173
10204
  return entries;
10174
10205
  }, "se_CreateDBProxyRequest");
10175
10206
  var se_CreateDBSecurityGroupMessage = /* @__PURE__ */ __name((input, context) => {
@@ -12276,6 +12307,9 @@ var se_ModifyDBClusterMessage = /* @__PURE__ */ __name((input, context) => {
12276
12307
  if (input[_CACI] != null) {
12277
12308
  entries[_CACI] = input[_CACI];
12278
12309
  }
12310
+ if (input[_MUAT] != null) {
12311
+ entries[_MUAT] = input[_MUAT];
12312
+ }
12279
12313
  return entries;
12280
12314
  }, "se_ModifyDBClusterMessage");
12281
12315
  var se_ModifyDBClusterParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
@@ -12542,6 +12576,9 @@ var se_ModifyDBInstanceMessage = /* @__PURE__ */ __name((input, context) => {
12542
12576
  if (input[_MT] != null) {
12543
12577
  entries[_MT] = input[_MT];
12544
12578
  }
12579
+ if (input[_MUAT] != null) {
12580
+ entries[_MUAT] = input[_MUAT];
12581
+ }
12545
12582
  return entries;
12546
12583
  }, "se_ModifyDBInstanceMessage");
12547
12584
  var se_ModifyDBParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
@@ -16860,6 +16897,12 @@ var de_DBProxy = /* @__PURE__ */ __name((output, context) => {
16860
16897
  if (output[_UD] != null) {
16861
16898
  contents[_UD] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_UD]));
16862
16899
  }
16900
+ if (output[_ENT] != null) {
16901
+ contents[_ENT] = (0, import_smithy_client.expectString)(output[_ENT]);
16902
+ }
16903
+ if (output[_TCNT] != null) {
16904
+ contents[_TCNT] = (0, import_smithy_client.expectString)(output[_TCNT]);
16905
+ }
16863
16906
  return contents;
16864
16907
  }, "de_DBProxy");
16865
16908
  var de_DBProxyAlreadyExistsFault = /* @__PURE__ */ __name((output, context) => {
@@ -16908,6 +16951,9 @@ var de_DBProxyEndpoint = /* @__PURE__ */ __name((output, context) => {
16908
16951
  if (output[_ID] != null) {
16909
16952
  contents[_ID] = (0, import_smithy_client.parseBoolean)(output[_ID]);
16910
16953
  }
16954
+ if (output[_ENT] != null) {
16955
+ contents[_ENT] = (0, import_smithy_client.expectString)(output[_ENT]);
16956
+ }
16911
16957
  return contents;
16912
16958
  }, "de_DBProxyEndpoint");
16913
16959
  var de_DBProxyEndpointAlreadyExistsFault = /* @__PURE__ */ __name((output, context) => {
@@ -21214,6 +21260,7 @@ var _EMn = "EngineMode";
21214
21260
  var _EMr = "ErrorMessage";
21215
21261
  var _EN = "EngineName";
21216
21262
  var _ENAFI = "EngineNativeAuditFieldsIncluded";
21263
+ var _ENT = "EndpointNetworkType";
21217
21264
  var _EO = "ExportOnly";
21218
21265
  var _EPI = "EnablePerformanceInsights";
21219
21266
  var _ERT = "EarliestRestorableTime";
@@ -21380,6 +21427,7 @@ var _MSTPIa = "MaxStorageThroughputPerIops";
21380
21427
  var _MT = "MultiTenant";
21381
21428
  var _MTD = "ModifyTenantDatabase";
21382
21429
  var _MU = "MasterUsername";
21430
+ var _MUAT = "MasterUserAuthenticationType";
21383
21431
  var _MUP = "MasterUserPassword";
21384
21432
  var _MUS = "MasterUserSecret";
21385
21433
  var _MUSKKI = "MasterUserSecretKmsKeyId";
@@ -21678,6 +21726,7 @@ var _TAi = "TimeoutAction";
21678
21726
  var _TCA = "TdeCredentialArn";
21679
21727
  var _TCAZ = "TargetCustomAvailabilityZone";
21680
21728
  var _TCI = "TrackedClusterId";
21729
+ var _TCNT = "TargetConnectionNetworkType";
21681
21730
  var _TCP = "TdeCredentialPassword";
21682
21731
  var _TD = "TenantDatabase";
21683
21732
  var _TDARN = "TenantDatabaseARN";
@@ -25795,6 +25844,7 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
25795
25844
  Ec2ImagePropertiesNotSupportedFault,
25796
25845
  ClusterScalabilityType,
25797
25846
  DatabaseInsightsMode,
25847
+ MasterUserAuthenticationType,
25798
25848
  ReplicaMode,
25799
25849
  WriteForwardingStatus,
25800
25850
  LimitlessDatabaseStatus,
@@ -25827,7 +25877,9 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
25827
25877
  AuthScheme,
25828
25878
  ClientPasswordAuthType,
25829
25879
  IAMAuthMode,
25880
+ EndpointNetworkType,
25830
25881
  EngineFamily,
25882
+ TargetConnectionNetworkType,
25831
25883
  DBProxyStatus,
25832
25884
  DBProxyAlreadyExistsFault,
25833
25885
  DBProxyQuotaExceededFault,
@@ -25878,11 +25930,11 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
25878
25930
  InvalidDBShardGroupStateFault,
25879
25931
  InvalidDBSubnetStateFault,
25880
25932
  InvalidEventSubscriptionStateFault,
25881
- InvalidIntegrationStateFault,
25882
25933
  CreateTenantDatabaseMessageFilterSensitiveLog,
25883
25934
  TenantDatabasePendingModifiedValuesFilterSensitiveLog,
25884
25935
  TenantDatabaseFilterSensitiveLog,
25885
25936
  CreateTenantDatabaseResultFilterSensitiveLog,
25937
+ InvalidIntegrationStateFault,
25886
25938
  InvalidOptionGroupStateFault,
25887
25939
  DBProxyTargetNotFoundFault,
25888
25940
  DBClusterBacktrackNotFoundFault,
@@ -604,6 +604,10 @@ export const DatabaseInsightsMode = {
604
604
  ADVANCED: "advanced",
605
605
  STANDARD: "standard",
606
606
  };
607
+ export const MasterUserAuthenticationType = {
608
+ IAM_DB_AUTH: "iam-db-auth",
609
+ PASSWORD: "password",
610
+ };
607
611
  export const ReplicaMode = {
608
612
  MOUNTED: "mounted",
609
613
  OPEN_READ_ONLY: "open-read-only",
@@ -939,11 +943,20 @@ export const IAMAuthMode = {
939
943
  ENABLED: "ENABLED",
940
944
  REQUIRED: "REQUIRED",
941
945
  };
946
+ export const EndpointNetworkType = {
947
+ DUAL: "DUAL",
948
+ IPV4: "IPV4",
949
+ IPV6: "IPV6",
950
+ };
942
951
  export const EngineFamily = {
943
952
  MYSQL: "MYSQL",
944
953
  POSTGRESQL: "POSTGRESQL",
945
954
  SQLSERVER: "SQLSERVER",
946
955
  };
956
+ export const TargetConnectionNetworkType = {
957
+ IPV4: "IPV4",
958
+ IPV6: "IPV6",
959
+ };
947
960
  export const DBProxyStatus = {
948
961
  AVAILABLE: "available",
949
962
  CREATING: "creating",
@@ -1513,18 +1526,6 @@ export class InvalidEventSubscriptionStateFault extends __BaseException {
1513
1526
  Object.setPrototypeOf(this, InvalidEventSubscriptionStateFault.prototype);
1514
1527
  }
1515
1528
  }
1516
- export class InvalidIntegrationStateFault extends __BaseException {
1517
- name = "InvalidIntegrationStateFault";
1518
- $fault = "client";
1519
- constructor(opts) {
1520
- super({
1521
- name: "InvalidIntegrationStateFault",
1522
- $fault: "client",
1523
- ...opts,
1524
- });
1525
- Object.setPrototypeOf(this, InvalidIntegrationStateFault.prototype);
1526
- }
1527
- }
1528
1529
  export const CreateTenantDatabaseMessageFilterSensitiveLog = (obj) => ({
1529
1530
  ...obj,
1530
1531
  ...(obj.MasterUserPassword && { MasterUserPassword: SENSITIVE_STRING }),
@@ -1,6 +1,18 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { TenantDatabaseFilterSensitiveLog, } from "./models_0";
3
3
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
4
+ export class InvalidIntegrationStateFault extends __BaseException {
5
+ name = "InvalidIntegrationStateFault";
6
+ $fault = "client";
7
+ constructor(opts) {
8
+ super({
9
+ name: "InvalidIntegrationStateFault",
10
+ $fault: "client",
11
+ ...opts,
12
+ });
13
+ Object.setPrototypeOf(this, InvalidIntegrationStateFault.prototype);
14
+ }
15
+ }
4
16
  export class InvalidOptionGroupStateFault extends __BaseException {
5
17
  name = "InvalidOptionGroupStateFault";
6
18
  $fault = "client";
@@ -1,8 +1,8 @@
1
1
  import { parseXmlBody as parseBody, parseXmlErrorBody as parseErrorBody } from "@aws-sdk/core";
2
2
  import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
3
3
  import { collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectString as __expectString, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeDateTime as __serializeDateTime, serializeFloat as __serializeFloat, strictParseFloat as __strictParseFloat, strictParseInt32 as __strictParseInt32, strictParseLong as __strictParseLong, withBaseException, } from "@smithy/smithy-client";
4
- import { AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault, AuthorizationQuotaExceededFault, BackupPolicyNotFoundFault, BlueGreenDeploymentAlreadyExistsFault, BlueGreenDeploymentNotFoundFault, CertificateNotFoundFault, CreateCustomDBEngineVersionFault, CustomAvailabilityZoneNotFoundFault, CustomDBEngineVersionAlreadyExistsFault, CustomDBEngineVersionNotFoundFault, CustomDBEngineVersionQuotaExceededFault, DBClusterAlreadyExistsFault, DBClusterAutomatedBackupNotFoundFault, DBClusterAutomatedBackupQuotaExceededFault, DBClusterEndpointAlreadyExistsFault, DBClusterEndpointNotFoundFault, DBClusterEndpointQuotaExceededFault, DBClusterNotFoundFault, DBClusterParameterGroupNotFoundFault, DBClusterQuotaExceededFault, DBClusterRoleAlreadyExistsFault, DBClusterRoleQuotaExceededFault, DBClusterSnapshotAlreadyExistsFault, DBClusterSnapshotNotFoundFault, DBInstanceAlreadyExistsFault, DBInstanceAutomatedBackupNotFoundFault, DBInstanceAutomatedBackupQuotaExceededFault, DBInstanceNotFoundFault, DBInstanceRoleAlreadyExistsFault, DBInstanceRoleQuotaExceededFault, DBParameterGroupAlreadyExistsFault, DBParameterGroupNotFoundFault, DBParameterGroupQuotaExceededFault, DBProxyAlreadyExistsFault, DBProxyEndpointAlreadyExistsFault, DBProxyEndpointNotFoundFault, DBProxyEndpointQuotaExceededFault, DBProxyNotFoundFault, DBProxyQuotaExceededFault, DBProxyTargetGroupNotFoundFault, DBSecurityGroupAlreadyExistsFault, DBSecurityGroupNotFoundFault, DBSecurityGroupNotSupportedFault, DBSecurityGroupQuotaExceededFault, DBShardGroupAlreadyExistsFault, DBShardGroupNotFoundFault, DBSnapshotAlreadyExistsFault, DBSnapshotNotFoundFault, DBSnapshotTenantDatabaseNotFoundFault, DBSubnetGroupAlreadyExistsFault, DBSubnetGroupDoesNotCoverEnoughAZs, DBSubnetGroupNotAllowedFault, DBSubnetGroupNotFoundFault, DBSubnetGroupQuotaExceededFault, DBSubnetQuotaExceededFault, DomainNotFoundFault, Ec2ImagePropertiesNotSupportedFault, EventSubscriptionQuotaExceededFault, ExportTaskNotFoundFault, GlobalClusterAlreadyExistsFault, GlobalClusterNotFoundFault, GlobalClusterQuotaExceededFault, InstanceQuotaExceededFault, InsufficientDBInstanceCapacityFault, InsufficientStorageClusterCapacityFault, IntegrationAlreadyExistsFault, IntegrationConflictOperationFault, IntegrationNotFoundFault, IntegrationQuotaExceededFault, InvalidBlueGreenDeploymentStateFault, InvalidCustomDBEngineVersionStateFault, InvalidDBClusterAutomatedBackupStateFault, InvalidDBClusterEndpointStateFault, InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault, InvalidDBInstanceAutomatedBackupStateFault, InvalidDBInstanceStateFault, InvalidDBParameterGroupStateFault, InvalidDBProxyEndpointStateFault, InvalidDBProxyStateFault, InvalidDBSecurityGroupStateFault, InvalidDBShardGroupStateFault, InvalidDBSnapshotStateFault, InvalidDBSubnetGroupFault, InvalidDBSubnetGroupStateFault, InvalidDBSubnetStateFault, InvalidEventSubscriptionStateFault, InvalidExportTaskStateFault, InvalidGlobalClusterStateFault, InvalidIntegrationStateFault, InvalidSubnet, InvalidVPCNetworkStateFault, KMSKeyNotAccessibleFault, MaxDBShardGroupLimitReached, NetworkTypeNotSupported, OptionGroupAlreadyExistsFault, OptionGroupNotFoundFault, OptionGroupQuotaExceededFault, ProvisionedIopsNotAvailableInAZFault, ResourceNotFoundFault, SnapshotQuotaExceededFault, SNSInvalidTopicFault, SNSNoAuthorizationFault, SNSTopicArnNotFoundFault, SourceClusterNotSupportedFault, SourceDatabaseNotSupportedFault, SourceNotFoundFault, StorageQuotaExceededFault, StorageTypeNotSupportedFault, SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault, SubscriptionNotFoundFault, TenantDatabaseAlreadyExistsFault, TenantDatabaseNotFoundFault, TenantDatabaseQuotaExceededFault, UnsupportedDBEngineVersionFault, } from "../models/models_0";
5
- import { DBClusterBacktrackNotFoundFault, DBClusterRoleNotFoundFault, DBInstanceNotReadyFault, DBInstanceRoleNotFoundFault, DBLogFileNotFoundFault, DBProxyTargetAlreadyRegisteredFault, DBProxyTargetNotFoundFault, DBUpgradeDependencyFailureFault, ExportTaskAlreadyExistsFault, IamRoleMissingPermissionsFault, IamRoleNotFoundFault, InsufficientAvailableIPsInSubnetFault, InsufficientDBClusterCapacityFault, InvalidDBClusterCapacityFault, InvalidExportOnlyFault, InvalidExportSourceStateFault, InvalidOptionGroupStateFault, InvalidResourceStateFault, InvalidRestoreFault, InvalidS3BucketFault, PointInTimeRestoreNotEnabledFault, ReservedDBInstanceAlreadyExistsFault, ReservedDBInstanceNotFoundFault, ReservedDBInstanceQuotaExceededFault, ReservedDBInstancesOfferingNotFoundFault, SharedSnapshotQuotaExceededFault, StorageTypeNotAvailableFault, SubnetAlreadyInUse, } from "../models/models_1";
4
+ import { AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault, AuthorizationQuotaExceededFault, BackupPolicyNotFoundFault, BlueGreenDeploymentAlreadyExistsFault, BlueGreenDeploymentNotFoundFault, CertificateNotFoundFault, CreateCustomDBEngineVersionFault, CustomAvailabilityZoneNotFoundFault, CustomDBEngineVersionAlreadyExistsFault, CustomDBEngineVersionNotFoundFault, CustomDBEngineVersionQuotaExceededFault, DBClusterAlreadyExistsFault, DBClusterAutomatedBackupNotFoundFault, DBClusterAutomatedBackupQuotaExceededFault, DBClusterEndpointAlreadyExistsFault, DBClusterEndpointNotFoundFault, DBClusterEndpointQuotaExceededFault, DBClusterNotFoundFault, DBClusterParameterGroupNotFoundFault, DBClusterQuotaExceededFault, DBClusterRoleAlreadyExistsFault, DBClusterRoleQuotaExceededFault, DBClusterSnapshotAlreadyExistsFault, DBClusterSnapshotNotFoundFault, DBInstanceAlreadyExistsFault, DBInstanceAutomatedBackupNotFoundFault, DBInstanceAutomatedBackupQuotaExceededFault, DBInstanceNotFoundFault, DBInstanceRoleAlreadyExistsFault, DBInstanceRoleQuotaExceededFault, DBParameterGroupAlreadyExistsFault, DBParameterGroupNotFoundFault, DBParameterGroupQuotaExceededFault, DBProxyAlreadyExistsFault, DBProxyEndpointAlreadyExistsFault, DBProxyEndpointNotFoundFault, DBProxyEndpointQuotaExceededFault, DBProxyNotFoundFault, DBProxyQuotaExceededFault, DBProxyTargetGroupNotFoundFault, DBSecurityGroupAlreadyExistsFault, DBSecurityGroupNotFoundFault, DBSecurityGroupNotSupportedFault, DBSecurityGroupQuotaExceededFault, DBShardGroupAlreadyExistsFault, DBShardGroupNotFoundFault, DBSnapshotAlreadyExistsFault, DBSnapshotNotFoundFault, DBSnapshotTenantDatabaseNotFoundFault, DBSubnetGroupAlreadyExistsFault, DBSubnetGroupDoesNotCoverEnoughAZs, DBSubnetGroupNotAllowedFault, DBSubnetGroupNotFoundFault, DBSubnetGroupQuotaExceededFault, DBSubnetQuotaExceededFault, DomainNotFoundFault, Ec2ImagePropertiesNotSupportedFault, EventSubscriptionQuotaExceededFault, ExportTaskNotFoundFault, GlobalClusterAlreadyExistsFault, GlobalClusterNotFoundFault, GlobalClusterQuotaExceededFault, InstanceQuotaExceededFault, InsufficientDBInstanceCapacityFault, InsufficientStorageClusterCapacityFault, IntegrationAlreadyExistsFault, IntegrationConflictOperationFault, IntegrationNotFoundFault, IntegrationQuotaExceededFault, InvalidBlueGreenDeploymentStateFault, InvalidCustomDBEngineVersionStateFault, InvalidDBClusterAutomatedBackupStateFault, InvalidDBClusterEndpointStateFault, InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault, InvalidDBInstanceAutomatedBackupStateFault, InvalidDBInstanceStateFault, InvalidDBParameterGroupStateFault, InvalidDBProxyEndpointStateFault, InvalidDBProxyStateFault, InvalidDBSecurityGroupStateFault, InvalidDBShardGroupStateFault, InvalidDBSnapshotStateFault, InvalidDBSubnetGroupFault, InvalidDBSubnetGroupStateFault, InvalidDBSubnetStateFault, InvalidEventSubscriptionStateFault, InvalidExportTaskStateFault, InvalidGlobalClusterStateFault, InvalidSubnet, InvalidVPCNetworkStateFault, KMSKeyNotAccessibleFault, MaxDBShardGroupLimitReached, NetworkTypeNotSupported, OptionGroupAlreadyExistsFault, OptionGroupNotFoundFault, OptionGroupQuotaExceededFault, ProvisionedIopsNotAvailableInAZFault, ResourceNotFoundFault, SnapshotQuotaExceededFault, SNSInvalidTopicFault, SNSNoAuthorizationFault, SNSTopicArnNotFoundFault, SourceClusterNotSupportedFault, SourceDatabaseNotSupportedFault, SourceNotFoundFault, StorageQuotaExceededFault, StorageTypeNotSupportedFault, SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault, SubscriptionNotFoundFault, TenantDatabaseAlreadyExistsFault, TenantDatabaseNotFoundFault, TenantDatabaseQuotaExceededFault, UnsupportedDBEngineVersionFault, } from "../models/models_0";
5
+ import { DBClusterBacktrackNotFoundFault, DBClusterRoleNotFoundFault, DBInstanceNotReadyFault, DBInstanceRoleNotFoundFault, DBLogFileNotFoundFault, DBProxyTargetAlreadyRegisteredFault, DBProxyTargetNotFoundFault, DBUpgradeDependencyFailureFault, ExportTaskAlreadyExistsFault, IamRoleMissingPermissionsFault, IamRoleNotFoundFault, InsufficientAvailableIPsInSubnetFault, InsufficientDBClusterCapacityFault, InvalidDBClusterCapacityFault, InvalidExportOnlyFault, InvalidExportSourceStateFault, InvalidIntegrationStateFault, InvalidOptionGroupStateFault, InvalidResourceStateFault, InvalidRestoreFault, InvalidS3BucketFault, PointInTimeRestoreNotEnabledFault, ReservedDBInstanceAlreadyExistsFault, ReservedDBInstanceNotFoundFault, ReservedDBInstanceQuotaExceededFault, ReservedDBInstancesOfferingNotFoundFault, SharedSnapshotQuotaExceededFault, StorageTypeNotAvailableFault, SubnetAlreadyInUse, } from "../models/models_1";
6
6
  import { RDSServiceException as __BaseException } from "../models/RDSServiceException";
7
7
  export const se_AddRoleToDBClusterCommand = async (input, context) => {
8
8
  const headers = SHARED_HEADERS;
@@ -6144,6 +6144,9 @@ const se_CreateDBClusterMessage = (input, context) => {
6144
6144
  if (input[_ELS] != null) {
6145
6145
  entries[_ELS] = input[_ELS];
6146
6146
  }
6147
+ if (input[_MUAT] != null) {
6148
+ entries[_MUAT] = input[_MUAT];
6149
+ }
6147
6150
  return entries;
6148
6151
  };
6149
6152
  const se_CreateDBClusterParameterGroupMessage = (input, context) => {
@@ -6425,6 +6428,9 @@ const se_CreateDBInstanceMessage = (input, context) => {
6425
6428
  if (input[_ELS] != null) {
6426
6429
  entries[_ELS] = input[_ELS];
6427
6430
  }
6431
+ if (input[_MUAT] != null) {
6432
+ entries[_MUAT] = input[_MUAT];
6433
+ }
6428
6434
  return entries;
6429
6435
  };
6430
6436
  const se_CreateDBInstanceReadReplicaMessage = (input, context) => {
@@ -6671,6 +6677,9 @@ const se_CreateDBProxyEndpointRequest = (input, context) => {
6671
6677
  entries[loc] = value;
6672
6678
  });
6673
6679
  }
6680
+ if (input[_ENT] != null) {
6681
+ entries[_ENT] = input[_ENT];
6682
+ }
6674
6683
  return entries;
6675
6684
  };
6676
6685
  const se_CreateDBProxyRequest = (input, context) => {
@@ -6733,6 +6742,12 @@ const se_CreateDBProxyRequest = (input, context) => {
6733
6742
  entries[loc] = value;
6734
6743
  });
6735
6744
  }
6745
+ if (input[_ENT] != null) {
6746
+ entries[_ENT] = input[_ENT];
6747
+ }
6748
+ if (input[_TCNT] != null) {
6749
+ entries[_TCNT] = input[_TCNT];
6750
+ }
6736
6751
  return entries;
6737
6752
  };
6738
6753
  const se_CreateDBSecurityGroupMessage = (input, context) => {
@@ -8841,6 +8856,9 @@ const se_ModifyDBClusterMessage = (input, context) => {
8841
8856
  if (input[_CACI] != null) {
8842
8857
  entries[_CACI] = input[_CACI];
8843
8858
  }
8859
+ if (input[_MUAT] != null) {
8860
+ entries[_MUAT] = input[_MUAT];
8861
+ }
8844
8862
  return entries;
8845
8863
  };
8846
8864
  const se_ModifyDBClusterParameterGroupMessage = (input, context) => {
@@ -9107,6 +9125,9 @@ const se_ModifyDBInstanceMessage = (input, context) => {
9107
9125
  if (input[_MT] != null) {
9108
9126
  entries[_MT] = input[_MT];
9109
9127
  }
9128
+ if (input[_MUAT] != null) {
9129
+ entries[_MUAT] = input[_MUAT];
9130
+ }
9110
9131
  return entries;
9111
9132
  };
9112
9133
  const se_ModifyDBParameterGroupMessage = (input, context) => {
@@ -13538,6 +13559,12 @@ const de_DBProxy = (output, context) => {
13538
13559
  if (output[_UD] != null) {
13539
13560
  contents[_UD] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_UD]));
13540
13561
  }
13562
+ if (output[_ENT] != null) {
13563
+ contents[_ENT] = __expectString(output[_ENT]);
13564
+ }
13565
+ if (output[_TCNT] != null) {
13566
+ contents[_TCNT] = __expectString(output[_TCNT]);
13567
+ }
13541
13568
  return contents;
13542
13569
  };
13543
13570
  const de_DBProxyAlreadyExistsFault = (output, context) => {
@@ -13588,6 +13615,9 @@ const de_DBProxyEndpoint = (output, context) => {
13588
13615
  if (output[_ID] != null) {
13589
13616
  contents[_ID] = __parseBoolean(output[_ID]);
13590
13617
  }
13618
+ if (output[_ENT] != null) {
13619
+ contents[_ENT] = __expectString(output[_ENT]);
13620
+ }
13591
13621
  return contents;
13592
13622
  };
13593
13623
  const de_DBProxyEndpointAlreadyExistsFault = (output, context) => {
@@ -18124,6 +18154,7 @@ const _EMn = "EngineMode";
18124
18154
  const _EMr = "ErrorMessage";
18125
18155
  const _EN = "EngineName";
18126
18156
  const _ENAFI = "EngineNativeAuditFieldsIncluded";
18157
+ const _ENT = "EndpointNetworkType";
18127
18158
  const _EO = "ExportOnly";
18128
18159
  const _EPI = "EnablePerformanceInsights";
18129
18160
  const _ERT = "EarliestRestorableTime";
@@ -18290,6 +18321,7 @@ const _MSTPIa = "MaxStorageThroughputPerIops";
18290
18321
  const _MT = "MultiTenant";
18291
18322
  const _MTD = "ModifyTenantDatabase";
18292
18323
  const _MU = "MasterUsername";
18324
+ const _MUAT = "MasterUserAuthenticationType";
18293
18325
  const _MUP = "MasterUserPassword";
18294
18326
  const _MUS = "MasterUserSecret";
18295
18327
  const _MUSKKI = "MasterUserSecretKmsKeyId";
@@ -18588,6 +18620,7 @@ const _TAi = "TimeoutAction";
18588
18620
  const _TCA = "TdeCredentialArn";
18589
18621
  const _TCAZ = "TargetCustomAvailabilityZone";
18590
18622
  const _TCI = "TrackedClusterId";
18623
+ const _TCNT = "TargetConnectionNetworkType";
18591
18624
  const _TCP = "TdeCredentialPassword";
18592
18625
  const _TD = "TenantDatabase";
18593
18626
  const _TDARN = "TenantDatabaseARN";
@@ -130,6 +130,7 @@ declare const CreateDBClusterCommand_base: {
130
130
  * EnableLocalWriteForwarding: true || false,
131
131
  * CACertificateIdentifier: "STRING_VALUE",
132
132
  * EngineLifecycleSupport: "STRING_VALUE",
133
+ * MasterUserAuthenticationType: "password" || "iam-db-auth",
133
134
  * };
134
135
  * const command = new CreateDBClusterCommand(input);
135
136
  * const response = await client.send(command);
@@ -125,6 +125,7 @@ declare const CreateDBInstanceCommand_base: {
125
125
  * DedicatedLogVolume: true || false,
126
126
  * MultiTenant: true || false,
127
127
  * EngineLifecycleSupport: "STRING_VALUE",
128
+ * MasterUserAuthenticationType: "password" || "iam-db-auth",
128
129
  * };
129
130
  * const command = new CreateDBInstanceCommand(input);
130
131
  * const response = await client.send(command);
@@ -63,6 +63,8 @@ declare const CreateDBProxyCommand_base: {
63
63
  * Value: "STRING_VALUE",
64
64
  * },
65
65
  * ],
66
+ * EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
67
+ * TargetConnectionNetworkType: "IPV4" || "IPV6",
66
68
  * };
67
69
  * const command = new CreateDBProxyCommand(input);
68
70
  * const response = await client.send(command);
@@ -96,6 +98,8 @@ declare const CreateDBProxyCommand_base: {
96
98
  * // DebugLogging: true || false,
97
99
  * // CreatedDate: new Date("TIMESTAMP"),
98
100
  * // UpdatedDate: new Date("TIMESTAMP"),
101
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
102
+ * // TargetConnectionNetworkType: "IPV4" || "IPV6",
99
103
  * // },
100
104
  * // };
101
105
  *
@@ -52,6 +52,7 @@ declare const CreateDBProxyEndpointCommand_base: {
52
52
  * Value: "STRING_VALUE",
53
53
  * },
54
54
  * ],
55
+ * EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
55
56
  * };
56
57
  * const command = new CreateDBProxyEndpointCommand(input);
57
58
  * const response = await client.send(command);
@@ -72,6 +73,7 @@ declare const CreateDBProxyEndpointCommand_base: {
72
73
  * // CreatedDate: new Date("TIMESTAMP"),
73
74
  * // TargetRole: "READ_WRITE" || "READ_ONLY",
74
75
  * // IsDefault: true || false,
76
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
75
77
  * // },
76
78
  * // };
77
79
  *
@@ -69,6 +69,8 @@ declare const DeleteDBProxyCommand_base: {
69
69
  * // DebugLogging: true || false,
70
70
  * // CreatedDate: new Date("TIMESTAMP"),
71
71
  * // UpdatedDate: new Date("TIMESTAMP"),
72
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
73
+ * // TargetConnectionNetworkType: "IPV4" || "IPV6",
72
74
  * // },
73
75
  * // };
74
76
  *
@@ -58,6 +58,7 @@ declare const DeleteDBProxyEndpointCommand_base: {
58
58
  * // CreatedDate: new Date("TIMESTAMP"),
59
59
  * // TargetRole: "READ_WRITE" || "READ_ONLY",
60
60
  * // IsDefault: true || false,
61
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
61
62
  * // },
62
63
  * // };
63
64
  *
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DeleteIntegrationMessage, Integration } from "../models/models_0";
3
+ import { Integration } from "../models/models_0";
4
+ import { DeleteIntegrationMessage } from "../models/models_1";
4
5
  import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
5
6
  /**
6
7
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DeleteOptionGroupMessage } from "../models/models_0";
3
+ import { DeleteOptionGroupMessage } from "../models/models_1";
4
4
  import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
5
5
  /**
6
6
  * @public
@@ -80,6 +80,8 @@ declare const DescribeDBProxiesCommand_base: {
80
80
  * // DebugLogging: true || false,
81
81
  * // CreatedDate: new Date("TIMESTAMP"),
82
82
  * // UpdatedDate: new Date("TIMESTAMP"),
83
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
84
+ * // TargetConnectionNetworkType: "IPV4" || "IPV6",
83
85
  * // },
84
86
  * // ],
85
87
  * // Marker: "STRING_VALUE",
@@ -68,6 +68,7 @@ declare const DescribeDBProxyEndpointsCommand_base: {
68
68
  * // CreatedDate: new Date("TIMESTAMP"),
69
69
  * // TargetRole: "READ_WRITE" || "READ_ONLY",
70
70
  * // IsDefault: true || false,
71
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
71
72
  * // },
72
73
  * // ],
73
74
  * // Marker: "STRING_VALUE",
@@ -109,6 +109,7 @@ declare const ModifyDBClusterCommand_base: {
109
109
  * AwsBackupRecoveryPointArn: "STRING_VALUE",
110
110
  * EnableLimitlessDatabase: true || false,
111
111
  * CACertificateIdentifier: "STRING_VALUE",
112
+ * MasterUserAuthenticationType: "password" || "iam-db-auth",
112
113
  * };
113
114
  * const command = new ModifyDBClusterCommand(input);
114
115
  * const response = await client.send(command);
@@ -118,6 +118,7 @@ declare const ModifyDBInstanceCommand_base: {
118
118
  * Engine: "STRING_VALUE",
119
119
  * DedicatedLogVolume: true || false,
120
120
  * MultiTenant: true || false,
121
+ * MasterUserAuthenticationType: "password" || "iam-db-auth",
121
122
  * };
122
123
  * const command = new ModifyDBInstanceCommand(input);
123
124
  * const response = await client.send(command);
@@ -87,6 +87,8 @@ declare const ModifyDBProxyCommand_base: {
87
87
  * // DebugLogging: true || false,
88
88
  * // CreatedDate: new Date("TIMESTAMP"),
89
89
  * // UpdatedDate: new Date("TIMESTAMP"),
90
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
91
+ * // TargetConnectionNetworkType: "IPV4" || "IPV6",
90
92
  * // },
91
93
  * // };
92
94
  *
@@ -60,6 +60,7 @@ declare const ModifyDBProxyEndpointCommand_base: {
60
60
  * // CreatedDate: new Date("TIMESTAMP"),
61
61
  * // TargetRole: "READ_WRITE" || "READ_ONLY",
62
62
  * // IsDefault: true || false,
63
+ * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL",
63
64
  * // },
64
65
  * // };
65
66
  *
@@ -3712,6 +3712,18 @@ export declare const DatabaseInsightsMode: {
3712
3712
  * @public
3713
3713
  */
3714
3714
  export type DatabaseInsightsMode = (typeof DatabaseInsightsMode)[keyof typeof DatabaseInsightsMode];
3715
+ /**
3716
+ * @public
3717
+ * @enum
3718
+ */
3719
+ export declare const MasterUserAuthenticationType: {
3720
+ readonly IAM_DB_AUTH: "iam-db-auth";
3721
+ readonly PASSWORD: "password";
3722
+ };
3723
+ /**
3724
+ * @public
3725
+ */
3726
+ export type MasterUserAuthenticationType = (typeof MasterUserAuthenticationType)[keyof typeof MasterUserAuthenticationType];
3715
3727
  /**
3716
3728
  * @public
3717
3729
  * @enum
@@ -4687,6 +4699,24 @@ export interface CreateDBClusterMessage {
4687
4699
  * @public
4688
4700
  */
4689
4701
  EngineLifecycleSupport?: string | undefined;
4702
+ /**
4703
+ * <p>Specifies the authentication type for the master user. With IAM master user authentication, you can configure the master DB user with IAM database authentication when you create a DB cluster.</p>
4704
+ * <p>You can specify one of the following values:</p>
4705
+ * <ul>
4706
+ * <li>
4707
+ * <p>
4708
+ * <code>password</code> - Use standard database authentication with a password.</p>
4709
+ * </li>
4710
+ * <li>
4711
+ * <p>
4712
+ * <code>iam-db-auth</code> - Use IAM database authentication for the master user.</p>
4713
+ * </li>
4714
+ * </ul>
4715
+ * <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
4716
+ * <p>This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.</p>
4717
+ * @public
4718
+ */
4719
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
4690
4720
  }
4691
4721
  /**
4692
4722
  * <p>Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB cluster.</p>
@@ -7622,6 +7652,23 @@ export interface CreateDBInstanceMessage {
7622
7652
  * @public
7623
7653
  */
7624
7654
  EngineLifecycleSupport?: string | undefined;
7655
+ /**
7656
+ * <p>Specifies the authentication type for the master user. With IAM master user authentication, you can configure the master DB user with IAM database authentication when you create a DB instance.</p>
7657
+ * <p>You can specify one of the following values:</p>
7658
+ * <ul>
7659
+ * <li>
7660
+ * <p>
7661
+ * <code>password</code> - Use standard database authentication with a password.</p>
7662
+ * </li>
7663
+ * <li>
7664
+ * <p>
7665
+ * <code>iam-db-auth</code> - Use IAM database authentication for the master user.</p>
7666
+ * </li>
7667
+ * </ul>
7668
+ * <p>This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.</p>
7669
+ * @public
7670
+ */
7671
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
7625
7672
  }
7626
7673
  /**
7627
7674
  * <p>Information about an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB instance.</p>
@@ -9711,6 +9758,19 @@ export interface UserAuthConfig {
9711
9758
  */
9712
9759
  ClientPasswordAuthType?: ClientPasswordAuthType | undefined;
9713
9760
  }
9761
+ /**
9762
+ * @public
9763
+ * @enum
9764
+ */
9765
+ export declare const EndpointNetworkType: {
9766
+ readonly DUAL: "DUAL";
9767
+ readonly IPV4: "IPV4";
9768
+ readonly IPV6: "IPV6";
9769
+ };
9770
+ /**
9771
+ * @public
9772
+ */
9773
+ export type EndpointNetworkType = (typeof EndpointNetworkType)[keyof typeof EndpointNetworkType];
9714
9774
  /**
9715
9775
  * @public
9716
9776
  * @enum
@@ -9724,6 +9784,18 @@ export declare const EngineFamily: {
9724
9784
  * @public
9725
9785
  */
9726
9786
  export type EngineFamily = (typeof EngineFamily)[keyof typeof EngineFamily];
9787
+ /**
9788
+ * @public
9789
+ * @enum
9790
+ */
9791
+ export declare const TargetConnectionNetworkType: {
9792
+ readonly IPV4: "IPV4";
9793
+ readonly IPV6: "IPV6";
9794
+ };
9795
+ /**
9796
+ * @public
9797
+ */
9798
+ export type TargetConnectionNetworkType = (typeof TargetConnectionNetworkType)[keyof typeof TargetConnectionNetworkType];
9727
9799
  /**
9728
9800
  * @public
9729
9801
  */
@@ -9788,6 +9860,64 @@ export interface CreateDBProxyRequest {
9788
9860
  * @public
9789
9861
  */
9790
9862
  Tags?: Tag[] | undefined;
9863
+ /**
9864
+ * <p>The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.</p>
9865
+ * <p>Valid values:</p>
9866
+ * <ul>
9867
+ * <li>
9868
+ * <p>
9869
+ * <code>IPV4</code> - The proxy endpoint supports IPv4 only.</p>
9870
+ * </li>
9871
+ * <li>
9872
+ * <p>
9873
+ * <code>IPV6</code> - The proxy endpoint supports IPv6 only.</p>
9874
+ * </li>
9875
+ * <li>
9876
+ * <p>
9877
+ * <code>DUAL</code> - The proxy endpoint supports both IPv4 and IPv6.</p>
9878
+ * </li>
9879
+ * </ul>
9880
+ * <p>Default: <code>IPV4</code>
9881
+ * </p>
9882
+ * <p>Constraints:</p>
9883
+ * <ul>
9884
+ * <li>
9885
+ * <p>If you specify <code>IPV6</code> or <code>DUAL</code>, the VPC and all subnets must have an IPv6 CIDR block.</p>
9886
+ * </li>
9887
+ * <li>
9888
+ * <p>If you specify <code>IPV6</code> or <code>DUAL</code>, the VPC tenancy cannot be <code>dedicated</code>.</p>
9889
+ * </li>
9890
+ * </ul>
9891
+ * @public
9892
+ */
9893
+ EndpointNetworkType?: EndpointNetworkType | undefined;
9894
+ /**
9895
+ * <p>The network type that the proxy uses to connect to the target database. The network type determines the IP version that the proxy uses for connections to the database.</p>
9896
+ * <p>Valid values:</p>
9897
+ * <ul>
9898
+ * <li>
9899
+ * <p>
9900
+ * <code>IPV4</code> - The proxy connects to the database using IPv4 only.</p>
9901
+ * </li>
9902
+ * <li>
9903
+ * <p>
9904
+ * <code>IPV6</code> - The proxy connects to the database using IPv6 only.</p>
9905
+ * </li>
9906
+ * </ul>
9907
+ * <p>Default: <code>IPV4</code>
9908
+ * </p>
9909
+ * <p>Constraints:</p>
9910
+ * <ul>
9911
+ * <li>
9912
+ * <p>If you specify <code>IPV6</code>, the database must support dual-stack mode. RDS doesn't support IPv6-only databases.</p>
9913
+ * </li>
9914
+ * <li>
9915
+ * <p>All targets registered with the proxy must be compatible with the specified network type.</p>
9916
+ * </li>
9917
+ * </ul>
9918
+ * @public
9919
+ */
9920
+ TargetConnectionNetworkType?: TargetConnectionNetworkType | undefined;
9791
9921
  }
9792
9922
  /**
9793
9923
  * <p>Returns the details of authentication used by a proxy to log in as a specific database user.</p>
@@ -9941,6 +10071,42 @@ export interface DBProxy {
9941
10071
  * @public
9942
10072
  */
9943
10073
  UpdatedDate?: Date | undefined;
10074
+ /**
10075
+ * <p>The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.</p>
10076
+ * <p>Valid values:</p>
10077
+ * <ul>
10078
+ * <li>
10079
+ * <p>
10080
+ * <code>IPV4</code> - The proxy endpoint supports IPv4 only.</p>
10081
+ * </li>
10082
+ * <li>
10083
+ * <p>
10084
+ * <code>IPV6</code> - The proxy endpoint supports IPv6 only.</p>
10085
+ * </li>
10086
+ * <li>
10087
+ * <p>
10088
+ * <code>DUAL</code> - The proxy endpoint supports both IPv4 and IPv6.</p>
10089
+ * </li>
10090
+ * </ul>
10091
+ * @public
10092
+ */
10093
+ EndpointNetworkType?: EndpointNetworkType | undefined;
10094
+ /**
10095
+ * <p>The network type that the proxy uses to connect to the target database. The network type determines the IP version that the proxy uses for connections to the database.</p>
10096
+ * <p>Valid values:</p>
10097
+ * <ul>
10098
+ * <li>
10099
+ * <p>
10100
+ * <code>IPV4</code> - The proxy connects to the database using IPv4 only.</p>
10101
+ * </li>
10102
+ * <li>
10103
+ * <p>
10104
+ * <code>IPV6</code> - The proxy connects to the database using IPv6 only.</p>
10105
+ * </li>
10106
+ * </ul>
10107
+ * @public
10108
+ */
10109
+ TargetConnectionNetworkType?: TargetConnectionNetworkType | undefined;
9944
10110
  }
9945
10111
  /**
9946
10112
  * @public
@@ -10031,6 +10197,37 @@ export interface CreateDBProxyEndpointRequest {
10031
10197
  * @public
10032
10198
  */
10033
10199
  Tags?: Tag[] | undefined;
10200
+ /**
10201
+ * <p>The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.</p>
10202
+ * <p>Valid values:</p>
10203
+ * <ul>
10204
+ * <li>
10205
+ * <p>
10206
+ * <code>IPV4</code> - The proxy endpoint supports IPv4 only.</p>
10207
+ * </li>
10208
+ * <li>
10209
+ * <p>
10210
+ * <code>IPV6</code> - The proxy endpoint supports IPv6 only.</p>
10211
+ * </li>
10212
+ * <li>
10213
+ * <p>
10214
+ * <code>DUAL</code> - The proxy endpoint supports both IPv4 and IPv6.</p>
10215
+ * </li>
10216
+ * </ul>
10217
+ * <p>Default: <code>IPV4</code>
10218
+ * </p>
10219
+ * <p>Constraints:</p>
10220
+ * <ul>
10221
+ * <li>
10222
+ * <p>If you specify <code>IPV6</code> or <code>DUAL</code>, the VPC and all subnets must have an IPv6 CIDR block.</p>
10223
+ * </li>
10224
+ * <li>
10225
+ * <p>If you specify <code>IPV6</code> or <code>DUAL</code>, the VPC tenancy cannot be <code>dedicated</code>.</p>
10226
+ * </li>
10227
+ * </ul>
10228
+ * @public
10229
+ */
10230
+ EndpointNetworkType?: EndpointNetworkType | undefined;
10034
10231
  }
10035
10232
  /**
10036
10233
  * @public
@@ -10119,6 +10316,26 @@ export interface DBProxyEndpoint {
10119
10316
  * @public
10120
10317
  */
10121
10318
  IsDefault?: boolean | undefined;
10319
+ /**
10320
+ * <p>The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.</p>
10321
+ * <p>Valid values:</p>
10322
+ * <ul>
10323
+ * <li>
10324
+ * <p>
10325
+ * <code>IPV4</code> - The proxy endpoint supports IPv4 only.</p>
10326
+ * </li>
10327
+ * <li>
10328
+ * <p>
10329
+ * <code>IPV6</code> - The proxy endpoint supports IPv6 only.</p>
10330
+ * </li>
10331
+ * <li>
10332
+ * <p>
10333
+ * <code>DUAL</code> - The proxy endpoint supports both IPv4 and IPv6.</p>
10334
+ * </li>
10335
+ * </ul>
10336
+ * @public
10337
+ */
10338
+ EndpointNetworkType?: EndpointNetworkType | undefined;
10122
10339
  }
10123
10340
  /**
10124
10341
  * @public
@@ -12805,42 +13022,6 @@ export interface DeleteGlobalClusterResult {
12805
13022
  */
12806
13023
  GlobalCluster?: GlobalCluster | undefined;
12807
13024
  }
12808
- /**
12809
- * @public
12810
- */
12811
- export interface DeleteIntegrationMessage {
12812
- /**
12813
- * <p>The unique identifier of the integration.</p>
12814
- * @public
12815
- */
12816
- IntegrationIdentifier: string | undefined;
12817
- }
12818
- /**
12819
- * <p>The integration is in an invalid state and can't perform the requested operation.</p>
12820
- * @public
12821
- */
12822
- export declare class InvalidIntegrationStateFault extends __BaseException {
12823
- readonly name: "InvalidIntegrationStateFault";
12824
- readonly $fault: "client";
12825
- /**
12826
- * @internal
12827
- */
12828
- constructor(opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>);
12829
- }
12830
- /**
12831
- * <p></p>
12832
- * @public
12833
- */
12834
- export interface DeleteOptionGroupMessage {
12835
- /**
12836
- * <p>The name of the option group to be deleted.</p>
12837
- * <note>
12838
- * <p>You can't delete default option groups.</p>
12839
- * </note>
12840
- * @public
12841
- */
12842
- OptionGroupName: string | undefined;
12843
- }
12844
13025
  /**
12845
13026
  * @internal
12846
13027
  */
@@ -1,6 +1,42 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, DatabaseInsightsMode, DBCluster, DBClusterAutomatedBackup, DBClusterBacktrack, DBClusterEndpoint, DBClusterParameterGroup, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBShardGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportSourceType, ExportTask, GlobalCluster, Integration, OptionGroup, OptionSetting, ProcessorFeature, RdsCustomClusterConfiguration, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TenantDatabase, UserAuthConfig } from "./models_0";
2
+ import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, DatabaseInsightsMode, DBCluster, DBClusterAutomatedBackup, DBClusterBacktrack, DBClusterEndpoint, DBClusterParameterGroup, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBShardGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportSourceType, ExportTask, GlobalCluster, Integration, MasterUserAuthenticationType, OptionGroup, OptionSetting, ProcessorFeature, RdsCustomClusterConfiguration, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TenantDatabase, UserAuthConfig } from "./models_0";
3
3
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface DeleteIntegrationMessage {
8
+ /**
9
+ * <p>The unique identifier of the integration.</p>
10
+ * @public
11
+ */
12
+ IntegrationIdentifier: string | undefined;
13
+ }
14
+ /**
15
+ * <p>The integration is in an invalid state and can't perform the requested operation.</p>
16
+ * @public
17
+ */
18
+ export declare class InvalidIntegrationStateFault extends __BaseException {
19
+ readonly name: "InvalidIntegrationStateFault";
20
+ readonly $fault: "client";
21
+ /**
22
+ * @internal
23
+ */
24
+ constructor(opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>);
25
+ }
26
+ /**
27
+ * <p></p>
28
+ * @public
29
+ */
30
+ export interface DeleteOptionGroupMessage {
31
+ /**
32
+ * <p>The name of the option group to be deleted.</p>
33
+ * <note>
34
+ * <p>You can't delete default option groups.</p>
35
+ * </note>
36
+ * @public
37
+ */
38
+ OptionGroupName: string | undefined;
39
+ }
4
40
  /**
5
41
  * <p>The option group isn't in the <i>available</i> state.</p>
6
42
  * @public
@@ -7390,8 +7426,7 @@ export interface ModifyDBClusterMessage {
7390
7426
  * <p>If you change the value from <code>standard</code> to <code>advanced</code>, you must set the
7391
7427
  * <code>PerformanceInsightsEnabled</code> parameter to <code>true</code> and the
7392
7428
  * <code>PerformanceInsightsRetentionPeriod</code> parameter to 465.</p>
7393
- * <p>If you change the value from <code>advanced</code> to <code>standard</code>, you must
7394
- * set the <code>PerformanceInsightsEnabled</code> parameter to <code>false</code>.</p>
7429
+ * <p>If you change the value from <code>advanced</code> to <code>standard</code>, you can set the <code>PerformanceInsightsEnabled</code> parameter to <code>true</code> to collect detailed database counter and per-query metrics.</p>
7395
7430
  * <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
7396
7431
  * @public
7397
7432
  */
@@ -7579,6 +7614,24 @@ export interface ModifyDBClusterMessage {
7579
7614
  * @public
7580
7615
  */
7581
7616
  CACertificateIdentifier?: string | undefined;
7617
+ /**
7618
+ * <p>Specifies the authentication type for the master user. With IAM master user authentication, you can change the master DB user to use IAM database authentication.</p>
7619
+ * <p>You can specify one of the following values:</p>
7620
+ * <ul>
7621
+ * <li>
7622
+ * <p>
7623
+ * <code>password</code> - Use standard database authentication with a password.</p>
7624
+ * </li>
7625
+ * <li>
7626
+ * <p>
7627
+ * <code>iam-db-auth</code> - Use IAM database authentication for the master user.</p>
7628
+ * </li>
7629
+ * </ul>
7630
+ * <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
7631
+ * <p>This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.</p>
7632
+ * @public
7633
+ */
7634
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
7582
7635
  }
7583
7636
  /**
7584
7637
  * @public
@@ -8870,6 +8923,23 @@ export interface ModifyDBInstanceMessage {
8870
8923
  * @public
8871
8924
  */
8872
8925
  MultiTenant?: boolean | undefined;
8926
+ /**
8927
+ * <p>Specifies the authentication type for the master user. With IAM master user authentication, you can change the master DB user to use IAM database authentication.</p>
8928
+ * <p>You can specify one of the following values:</p>
8929
+ * <ul>
8930
+ * <li>
8931
+ * <p>
8932
+ * <code>password</code> - Use standard database authentication with a password.</p>
8933
+ * </li>
8934
+ * <li>
8935
+ * <p>
8936
+ * <code>iam-db-auth</code> - Use IAM database authentication for the master user.</p>
8937
+ * </li>
8938
+ * </ul>
8939
+ * <p>This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.</p>
8940
+ * @public
8941
+ */
8942
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
8873
8943
  }
8874
8944
  /**
8875
8945
  * @public
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DeleteIntegrationMessage, Integration } from "../models/models_0";
3
+ import { Integration } from "../models/models_0";
4
+ import { DeleteIntegrationMessage } from "../models/models_1";
4
5
  import {
5
6
  RDSClientResolvedConfig,
6
7
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DeleteOptionGroupMessage } from "../models/models_0";
3
+ import { DeleteOptionGroupMessage } from "../models/models_1";
4
4
  import {
5
5
  RDSClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -871,6 +871,12 @@ export declare const DatabaseInsightsMode: {
871
871
  };
872
872
  export type DatabaseInsightsMode =
873
873
  (typeof DatabaseInsightsMode)[keyof typeof DatabaseInsightsMode];
874
+ export declare const MasterUserAuthenticationType: {
875
+ readonly IAM_DB_AUTH: "iam-db-auth";
876
+ readonly PASSWORD: "password";
877
+ };
878
+ export type MasterUserAuthenticationType =
879
+ (typeof MasterUserAuthenticationType)[keyof typeof MasterUserAuthenticationType];
874
880
  export declare const ReplicaMode: {
875
881
  readonly MOUNTED: "mounted";
876
882
  readonly OPEN_READ_ONLY: "open-read-only";
@@ -953,6 +959,7 @@ export interface CreateDBClusterMessage {
953
959
  EnableLocalWriteForwarding?: boolean | undefined;
954
960
  CACertificateIdentifier?: string | undefined;
955
961
  EngineLifecycleSupport?: string | undefined;
962
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
956
963
  }
957
964
  export interface DBClusterRole {
958
965
  RoleArn?: string | undefined;
@@ -1389,6 +1396,7 @@ export interface CreateDBInstanceMessage {
1389
1396
  DedicatedLogVolume?: boolean | undefined;
1390
1397
  MultiTenant?: boolean | undefined;
1391
1398
  EngineLifecycleSupport?: string | undefined;
1399
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
1392
1400
  }
1393
1401
  export interface DBInstanceRole {
1394
1402
  RoleArn?: string | undefined;
@@ -1698,12 +1706,25 @@ export interface UserAuthConfig {
1698
1706
  IAMAuth?: IAMAuthMode | undefined;
1699
1707
  ClientPasswordAuthType?: ClientPasswordAuthType | undefined;
1700
1708
  }
1709
+ export declare const EndpointNetworkType: {
1710
+ readonly DUAL: "DUAL";
1711
+ readonly IPV4: "IPV4";
1712
+ readonly IPV6: "IPV6";
1713
+ };
1714
+ export type EndpointNetworkType =
1715
+ (typeof EndpointNetworkType)[keyof typeof EndpointNetworkType];
1701
1716
  export declare const EngineFamily: {
1702
1717
  readonly MYSQL: "MYSQL";
1703
1718
  readonly POSTGRESQL: "POSTGRESQL";
1704
1719
  readonly SQLSERVER: "SQLSERVER";
1705
1720
  };
1706
1721
  export type EngineFamily = (typeof EngineFamily)[keyof typeof EngineFamily];
1722
+ export declare const TargetConnectionNetworkType: {
1723
+ readonly IPV4: "IPV4";
1724
+ readonly IPV6: "IPV6";
1725
+ };
1726
+ export type TargetConnectionNetworkType =
1727
+ (typeof TargetConnectionNetworkType)[keyof typeof TargetConnectionNetworkType];
1707
1728
  export interface CreateDBProxyRequest {
1708
1729
  DBProxyName: string | undefined;
1709
1730
  EngineFamily: EngineFamily | undefined;
@@ -1715,6 +1736,8 @@ export interface CreateDBProxyRequest {
1715
1736
  IdleClientTimeout?: number | undefined;
1716
1737
  DebugLogging?: boolean | undefined;
1717
1738
  Tags?: Tag[] | undefined;
1739
+ EndpointNetworkType?: EndpointNetworkType | undefined;
1740
+ TargetConnectionNetworkType?: TargetConnectionNetworkType | undefined;
1718
1741
  }
1719
1742
  export interface UserAuthConfigInfo {
1720
1743
  Description?: string | undefined;
@@ -1752,6 +1775,8 @@ export interface DBProxy {
1752
1775
  DebugLogging?: boolean | undefined;
1753
1776
  CreatedDate?: Date | undefined;
1754
1777
  UpdatedDate?: Date | undefined;
1778
+ EndpointNetworkType?: EndpointNetworkType | undefined;
1779
+ TargetConnectionNetworkType?: TargetConnectionNetworkType | undefined;
1755
1780
  }
1756
1781
  export interface CreateDBProxyResponse {
1757
1782
  DBProxy?: DBProxy | undefined;
@@ -1783,6 +1808,7 @@ export interface CreateDBProxyEndpointRequest {
1783
1808
  VpcSecurityGroupIds?: string[] | undefined;
1784
1809
  TargetRole?: DBProxyEndpointTargetRole | undefined;
1785
1810
  Tags?: Tag[] | undefined;
1811
+ EndpointNetworkType?: EndpointNetworkType | undefined;
1786
1812
  }
1787
1813
  export declare const DBProxyEndpointStatus: {
1788
1814
  readonly AVAILABLE: "available";
@@ -1806,6 +1832,7 @@ export interface DBProxyEndpoint {
1806
1832
  CreatedDate?: Date | undefined;
1807
1833
  TargetRole?: DBProxyEndpointTargetRole | undefined;
1808
1834
  IsDefault?: boolean | undefined;
1835
+ EndpointNetworkType?: EndpointNetworkType | undefined;
1809
1836
  }
1810
1837
  export interface CreateDBProxyEndpointResponse {
1811
1838
  DBProxyEndpoint?: DBProxyEndpoint | undefined;
@@ -2545,19 +2572,6 @@ export interface DeleteGlobalClusterMessage {
2545
2572
  export interface DeleteGlobalClusterResult {
2546
2573
  GlobalCluster?: GlobalCluster | undefined;
2547
2574
  }
2548
- export interface DeleteIntegrationMessage {
2549
- IntegrationIdentifier: string | undefined;
2550
- }
2551
- export declare class InvalidIntegrationStateFault extends __BaseException {
2552
- readonly name: "InvalidIntegrationStateFault";
2553
- readonly $fault: "client";
2554
- constructor(
2555
- opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>
2556
- );
2557
- }
2558
- export interface DeleteOptionGroupMessage {
2559
- OptionGroupName: string | undefined;
2560
- }
2561
2575
  export declare const CreateTenantDatabaseMessageFilterSensitiveLog: (
2562
2576
  obj: CreateTenantDatabaseMessage
2563
2577
  ) => any;
@@ -28,6 +28,7 @@ import {
28
28
  ExportTask,
29
29
  GlobalCluster,
30
30
  Integration,
31
+ MasterUserAuthenticationType,
31
32
  OptionGroup,
32
33
  OptionSetting,
33
34
  ProcessorFeature,
@@ -41,6 +42,19 @@ import {
41
42
  UserAuthConfig,
42
43
  } from "./models_0";
43
44
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
45
+ export interface DeleteIntegrationMessage {
46
+ IntegrationIdentifier: string | undefined;
47
+ }
48
+ export declare class InvalidIntegrationStateFault extends __BaseException {
49
+ readonly name: "InvalidIntegrationStateFault";
50
+ readonly $fault: "client";
51
+ constructor(
52
+ opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>
53
+ );
54
+ }
55
+ export interface DeleteOptionGroupMessage {
56
+ OptionGroupName: string | undefined;
57
+ }
44
58
  export declare class InvalidOptionGroupStateFault extends __BaseException {
45
59
  readonly name: "InvalidOptionGroupStateFault";
46
60
  readonly $fault: "client";
@@ -1185,6 +1199,7 @@ export interface ModifyDBClusterMessage {
1185
1199
  AwsBackupRecoveryPointArn?: string | undefined;
1186
1200
  EnableLimitlessDatabase?: boolean | undefined;
1187
1201
  CACertificateIdentifier?: string | undefined;
1202
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
1188
1203
  }
1189
1204
  export interface ModifyDBClusterResult {
1190
1205
  DBCluster?: DBCluster | undefined;
@@ -1304,6 +1319,7 @@ export interface ModifyDBInstanceMessage {
1304
1319
  Engine?: string | undefined;
1305
1320
  DedicatedLogVolume?: boolean | undefined;
1306
1321
  MultiTenant?: boolean | undefined;
1322
+ MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
1307
1323
  }
1308
1324
  export interface ModifyDBInstanceResult {
1309
1325
  DBInstance?: DBInstance | 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.879.0",
4
+ "version": "3.882.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rds",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.879.0",
24
- "@aws-sdk/credential-provider-node": "3.879.0",
23
+ "@aws-sdk/core": "3.882.0",
24
+ "@aws-sdk/credential-provider-node": "3.882.0",
25
25
  "@aws-sdk/middleware-host-header": "3.873.0",
26
26
  "@aws-sdk/middleware-logger": "3.876.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.873.0",
28
- "@aws-sdk/middleware-sdk-rds": "3.879.0",
29
- "@aws-sdk/middleware-user-agent": "3.879.0",
28
+ "@aws-sdk/middleware-sdk-rds": "3.882.0",
29
+ "@aws-sdk/middleware-user-agent": "3.882.0",
30
30
  "@aws-sdk/region-config-resolver": "3.873.0",
31
31
  "@aws-sdk/types": "3.862.0",
32
32
  "@aws-sdk/util-endpoints": "3.879.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.873.0",
34
- "@aws-sdk/util-user-agent-node": "3.879.0",
34
+ "@aws-sdk/util-user-agent-node": "3.882.0",
35
35
  "@smithy/config-resolver": "^4.1.5",
36
- "@smithy/core": "^3.9.0",
36
+ "@smithy/core": "^3.9.2",
37
37
  "@smithy/fetch-http-handler": "^5.1.1",
38
38
  "@smithy/hash-node": "^4.0.5",
39
39
  "@smithy/invalid-dependency": "^4.0.5",
40
40
  "@smithy/middleware-content-length": "^4.0.5",
41
- "@smithy/middleware-endpoint": "^4.1.19",
42
- "@smithy/middleware-retry": "^4.1.20",
41
+ "@smithy/middleware-endpoint": "^4.1.21",
42
+ "@smithy/middleware-retry": "^4.1.22",
43
43
  "@smithy/middleware-serde": "^4.0.9",
44
44
  "@smithy/middleware-stack": "^4.0.5",
45
45
  "@smithy/node-config-provider": "^4.1.4",
46
46
  "@smithy/node-http-handler": "^4.1.1",
47
47
  "@smithy/protocol-http": "^5.1.3",
48
- "@smithy/smithy-client": "^4.5.0",
48
+ "@smithy/smithy-client": "^4.5.2",
49
49
  "@smithy/types": "^4.3.2",
50
50
  "@smithy/url-parser": "^4.0.5",
51
51
  "@smithy/util-base64": "^4.0.0",
52
52
  "@smithy/util-body-length-browser": "^4.0.0",
53
53
  "@smithy/util-body-length-node": "^4.0.0",
54
- "@smithy/util-defaults-mode-browser": "^4.0.27",
55
- "@smithy/util-defaults-mode-node": "^4.0.27",
54
+ "@smithy/util-defaults-mode-browser": "^4.0.29",
55
+ "@smithy/util-defaults-mode-node": "^4.0.29",
56
56
  "@smithy/util-endpoints": "^3.0.7",
57
57
  "@smithy/util-middleware": "^4.0.5",
58
58
  "@smithy/util-retry": "^4.0.7",