@aws-sdk/client-rds 3.878.0 → 3.881.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 +19 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_query.js +13 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/DeleteOptionGroupCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +1 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +47 -14
- package/dist-types/models/models_1.d.ts +51 -3
- package/dist-types/ts3.4/commands/DeleteOptionGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +8 -3
- package/dist-types/ts3.4/models/models_1.d.ts +6 -0
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -268,6 +268,7 @@ __export(index_exports, {
|
|
|
268
268
|
LimitlessDatabaseStatus: () => LimitlessDatabaseStatus,
|
|
269
269
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
270
270
|
LocalWriteForwardingStatus: () => LocalWriteForwardingStatus,
|
|
271
|
+
MasterUserAuthenticationType: () => MasterUserAuthenticationType,
|
|
271
272
|
MaxDBShardGroupLimitReached: () => MaxDBShardGroupLimitReached,
|
|
272
273
|
ModifyActivityStreamCommand: () => ModifyActivityStreamCommand,
|
|
273
274
|
ModifyCertificatesCommand: () => ModifyCertificatesCommand,
|
|
@@ -1499,6 +1500,10 @@ var DatabaseInsightsMode = {
|
|
|
1499
1500
|
ADVANCED: "advanced",
|
|
1500
1501
|
STANDARD: "standard"
|
|
1501
1502
|
};
|
|
1503
|
+
var MasterUserAuthenticationType = {
|
|
1504
|
+
IAM_DB_AUTH: "iam-db-auth",
|
|
1505
|
+
PASSWORD: "password"
|
|
1506
|
+
};
|
|
1502
1507
|
var ReplicaMode = {
|
|
1503
1508
|
MOUNTED: "mounted",
|
|
1504
1509
|
OPEN_READ_ONLY: "open-read-only"
|
|
@@ -9581,6 +9586,9 @@ var se_CreateDBClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
9581
9586
|
if (input[_ELS] != null) {
|
|
9582
9587
|
entries[_ELS] = input[_ELS];
|
|
9583
9588
|
}
|
|
9589
|
+
if (input[_MUAT] != null) {
|
|
9590
|
+
entries[_MUAT] = input[_MUAT];
|
|
9591
|
+
}
|
|
9584
9592
|
return entries;
|
|
9585
9593
|
}, "se_CreateDBClusterMessage");
|
|
9586
9594
|
var se_CreateDBClusterParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -9862,6 +9870,9 @@ var se_CreateDBInstanceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
9862
9870
|
if (input[_ELS] != null) {
|
|
9863
9871
|
entries[_ELS] = input[_ELS];
|
|
9864
9872
|
}
|
|
9873
|
+
if (input[_MUAT] != null) {
|
|
9874
|
+
entries[_MUAT] = input[_MUAT];
|
|
9875
|
+
}
|
|
9865
9876
|
return entries;
|
|
9866
9877
|
}, "se_CreateDBInstanceMessage");
|
|
9867
9878
|
var se_CreateDBInstanceReadReplicaMessage = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -12276,6 +12287,9 @@ var se_ModifyDBClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
12276
12287
|
if (input[_CACI] != null) {
|
|
12277
12288
|
entries[_CACI] = input[_CACI];
|
|
12278
12289
|
}
|
|
12290
|
+
if (input[_MUAT] != null) {
|
|
12291
|
+
entries[_MUAT] = input[_MUAT];
|
|
12292
|
+
}
|
|
12279
12293
|
return entries;
|
|
12280
12294
|
}, "se_ModifyDBClusterMessage");
|
|
12281
12295
|
var se_ModifyDBClusterParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -12542,6 +12556,9 @@ var se_ModifyDBInstanceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
12542
12556
|
if (input[_MT] != null) {
|
|
12543
12557
|
entries[_MT] = input[_MT];
|
|
12544
12558
|
}
|
|
12559
|
+
if (input[_MUAT] != null) {
|
|
12560
|
+
entries[_MUAT] = input[_MUAT];
|
|
12561
|
+
}
|
|
12545
12562
|
return entries;
|
|
12546
12563
|
}, "se_ModifyDBInstanceMessage");
|
|
12547
12564
|
var se_ModifyDBParameterGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -21380,6 +21397,7 @@ var _MSTPIa = "MaxStorageThroughputPerIops";
|
|
|
21380
21397
|
var _MT = "MultiTenant";
|
|
21381
21398
|
var _MTD = "ModifyTenantDatabase";
|
|
21382
21399
|
var _MU = "MasterUsername";
|
|
21400
|
+
var _MUAT = "MasterUserAuthenticationType";
|
|
21383
21401
|
var _MUP = "MasterUserPassword";
|
|
21384
21402
|
var _MUS = "MasterUserSecret";
|
|
21385
21403
|
var _MUSKKI = "MasterUserSecretKmsKeyId";
|
|
@@ -25795,6 +25813,7 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
|
|
|
25795
25813
|
Ec2ImagePropertiesNotSupportedFault,
|
|
25796
25814
|
ClusterScalabilityType,
|
|
25797
25815
|
DatabaseInsightsMode,
|
|
25816
|
+
MasterUserAuthenticationType,
|
|
25798
25817
|
ReplicaMode,
|
|
25799
25818
|
WriteForwardingStatus,
|
|
25800
25819
|
LimitlessDatabaseStatus,
|
|
@@ -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",
|
|
@@ -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) => {
|
|
@@ -8841,6 +8847,9 @@ const se_ModifyDBClusterMessage = (input, context) => {
|
|
|
8841
8847
|
if (input[_CACI] != null) {
|
|
8842
8848
|
entries[_CACI] = input[_CACI];
|
|
8843
8849
|
}
|
|
8850
|
+
if (input[_MUAT] != null) {
|
|
8851
|
+
entries[_MUAT] = input[_MUAT];
|
|
8852
|
+
}
|
|
8844
8853
|
return entries;
|
|
8845
8854
|
};
|
|
8846
8855
|
const se_ModifyDBClusterParameterGroupMessage = (input, context) => {
|
|
@@ -9107,6 +9116,9 @@ const se_ModifyDBInstanceMessage = (input, context) => {
|
|
|
9107
9116
|
if (input[_MT] != null) {
|
|
9108
9117
|
entries[_MT] = input[_MT];
|
|
9109
9118
|
}
|
|
9119
|
+
if (input[_MUAT] != null) {
|
|
9120
|
+
entries[_MUAT] = input[_MUAT];
|
|
9121
|
+
}
|
|
9110
9122
|
return entries;
|
|
9111
9123
|
};
|
|
9112
9124
|
const se_ModifyDBParameterGroupMessage = (input, context) => {
|
|
@@ -18290,6 +18302,7 @@ const _MSTPIa = "MaxStorageThroughputPerIops";
|
|
|
18290
18302
|
const _MT = "MultiTenant";
|
|
18291
18303
|
const _MTD = "ModifyTenantDatabase";
|
|
18292
18304
|
const _MU = "MasterUsername";
|
|
18305
|
+
const _MUAT = "MasterUserAuthenticationType";
|
|
18293
18306
|
const _MUP = "MasterUserPassword";
|
|
18294
18307
|
const _MUS = "MasterUserSecret";
|
|
18295
18308
|
const _MUSKKI = "MasterUserSecretKmsKeyId";
|
|
@@ -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);
|
|
@@ -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/
|
|
3
|
+
import { DeleteOptionGroupMessage } from "../models/models_1";
|
|
4
4
|
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -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);
|
|
@@ -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>
|
|
@@ -12827,20 +12874,6 @@ export declare class InvalidIntegrationStateFault extends __BaseException {
|
|
|
12827
12874
|
*/
|
|
12828
12875
|
constructor(opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>);
|
|
12829
12876
|
}
|
|
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
12877
|
/**
|
|
12845
12878
|
* @internal
|
|
12846
12879
|
*/
|
|
@@ -1,6 +1,20 @@
|
|
|
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
|
+
* <p></p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DeleteOptionGroupMessage {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of the option group to be deleted.</p>
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>You can't delete default option groups.</p>
|
|
13
|
+
* </note>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
OptionGroupName: string | undefined;
|
|
17
|
+
}
|
|
4
18
|
/**
|
|
5
19
|
* <p>The option group isn't in the <i>available</i> state.</p>
|
|
6
20
|
* @public
|
|
@@ -7390,8 +7404,7 @@ export interface ModifyDBClusterMessage {
|
|
|
7390
7404
|
* <p>If you change the value from <code>standard</code> to <code>advanced</code>, you must set the
|
|
7391
7405
|
* <code>PerformanceInsightsEnabled</code> parameter to <code>true</code> and the
|
|
7392
7406
|
* <code>PerformanceInsightsRetentionPeriod</code> parameter to 465.</p>
|
|
7393
|
-
* <p>If you change the value from <code>advanced</code> to <code>standard</code>, you
|
|
7394
|
-
* set the <code>PerformanceInsightsEnabled</code> parameter to <code>false</code>.</p>
|
|
7407
|
+
* <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
7408
|
* <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
7396
7409
|
* @public
|
|
7397
7410
|
*/
|
|
@@ -7579,6 +7592,24 @@ export interface ModifyDBClusterMessage {
|
|
|
7579
7592
|
* @public
|
|
7580
7593
|
*/
|
|
7581
7594
|
CACertificateIdentifier?: string | undefined;
|
|
7595
|
+
/**
|
|
7596
|
+
* <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>
|
|
7597
|
+
* <p>You can specify one of the following values:</p>
|
|
7598
|
+
* <ul>
|
|
7599
|
+
* <li>
|
|
7600
|
+
* <p>
|
|
7601
|
+
* <code>password</code> - Use standard database authentication with a password.</p>
|
|
7602
|
+
* </li>
|
|
7603
|
+
* <li>
|
|
7604
|
+
* <p>
|
|
7605
|
+
* <code>iam-db-auth</code> - Use IAM database authentication for the master user.</p>
|
|
7606
|
+
* </li>
|
|
7607
|
+
* </ul>
|
|
7608
|
+
* <p>Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters</p>
|
|
7609
|
+
* <p>This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.</p>
|
|
7610
|
+
* @public
|
|
7611
|
+
*/
|
|
7612
|
+
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
7582
7613
|
}
|
|
7583
7614
|
/**
|
|
7584
7615
|
* @public
|
|
@@ -8870,6 +8901,23 @@ export interface ModifyDBInstanceMessage {
|
|
|
8870
8901
|
* @public
|
|
8871
8902
|
*/
|
|
8872
8903
|
MultiTenant?: boolean | undefined;
|
|
8904
|
+
/**
|
|
8905
|
+
* <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>
|
|
8906
|
+
* <p>You can specify one of the following values:</p>
|
|
8907
|
+
* <ul>
|
|
8908
|
+
* <li>
|
|
8909
|
+
* <p>
|
|
8910
|
+
* <code>password</code> - Use standard database authentication with a password.</p>
|
|
8911
|
+
* </li>
|
|
8912
|
+
* <li>
|
|
8913
|
+
* <p>
|
|
8914
|
+
* <code>iam-db-auth</code> - Use IAM database authentication for the master user.</p>
|
|
8915
|
+
* </li>
|
|
8916
|
+
* </ul>
|
|
8917
|
+
* <p>This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL engines.</p>
|
|
8918
|
+
* @public
|
|
8919
|
+
*/
|
|
8920
|
+
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
8873
8921
|
}
|
|
8874
8922
|
/**
|
|
8875
8923
|
* @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/
|
|
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;
|
|
@@ -2555,9 +2563,6 @@ export declare class InvalidIntegrationStateFault extends __BaseException {
|
|
|
2555
2563
|
opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>
|
|
2556
2564
|
);
|
|
2557
2565
|
}
|
|
2558
|
-
export interface DeleteOptionGroupMessage {
|
|
2559
|
-
OptionGroupName: string | undefined;
|
|
2560
|
-
}
|
|
2561
2566
|
export declare const CreateTenantDatabaseMessageFilterSensitiveLog: (
|
|
2562
2567
|
obj: CreateTenantDatabaseMessage
|
|
2563
2568
|
) => 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,9 @@ import {
|
|
|
41
42
|
UserAuthConfig,
|
|
42
43
|
} from "./models_0";
|
|
43
44
|
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
45
|
+
export interface DeleteOptionGroupMessage {
|
|
46
|
+
OptionGroupName: string | undefined;
|
|
47
|
+
}
|
|
44
48
|
export declare class InvalidOptionGroupStateFault extends __BaseException {
|
|
45
49
|
readonly name: "InvalidOptionGroupStateFault";
|
|
46
50
|
readonly $fault: "client";
|
|
@@ -1185,6 +1189,7 @@ export interface ModifyDBClusterMessage {
|
|
|
1185
1189
|
AwsBackupRecoveryPointArn?: string | undefined;
|
|
1186
1190
|
EnableLimitlessDatabase?: boolean | undefined;
|
|
1187
1191
|
CACertificateIdentifier?: string | undefined;
|
|
1192
|
+
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
1188
1193
|
}
|
|
1189
1194
|
export interface ModifyDBClusterResult {
|
|
1190
1195
|
DBCluster?: DBCluster | undefined;
|
|
@@ -1304,6 +1309,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
1304
1309
|
Engine?: string | undefined;
|
|
1305
1310
|
DedicatedLogVolume?: boolean | undefined;
|
|
1306
1311
|
MultiTenant?: boolean | undefined;
|
|
1312
|
+
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
1307
1313
|
}
|
|
1308
1314
|
export interface ModifyDBInstanceResult {
|
|
1309
1315
|
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.
|
|
4
|
+
"version": "3.881.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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.879.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.879.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.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-sdk-rds": "3.879.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.879.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.873.0",
|
|
31
31
|
"@aws-sdk/types": "3.862.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
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.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.879.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.1.5",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.9.0",
|
|
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.
|
|
42
|
-
"@smithy/middleware-retry": "^4.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.1.19",
|
|
42
|
+
"@smithy/middleware-retry": "^4.1.20",
|
|
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.
|
|
48
|
+
"@smithy/smithy-client": "^4.5.0",
|
|
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.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.0.27",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.0.27",
|
|
56
56
|
"@smithy/util-endpoints": "^3.0.7",
|
|
57
57
|
"@smithy/util-middleware": "^4.0.5",
|
|
58
58
|
"@smithy/util-retry": "^4.0.7",
|