@aws-sdk/client-rds 3.535.0 → 3.537.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/README.md +8 -0
- package/dist-cjs/index.js +90 -17
- package/dist-es/RDS.js +2 -0
- package/dist-es/commands/ModifyIntegrationCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +70 -17
- package/dist-types/RDS.d.ts +7 -0
- package/dist-types/RDSClient.d.ts +3 -2
- package/dist-types/commands/CreateIntegrationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +2 -0
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +125 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +25 -0
- package/dist-types/models/models_1.d.ts +26 -0
- package/dist-types/protocols/Aws_query.d.ts +9 -0
- package/dist-types/ts3.4/RDS.d.ts +17 -0
- package/dist-types/ts3.4/RDSClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1263,6 +1263,14 @@ ModifyGlobalCluster
|
|
|
1263
1263
|
|
|
1264
1264
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/rds/command/ModifyGlobalClusterCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-rds/Interface/ModifyGlobalClusterCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-rds/Interface/ModifyGlobalClusterCommandOutput/)
|
|
1265
1265
|
|
|
1266
|
+
</details>
|
|
1267
|
+
<details>
|
|
1268
|
+
<summary>
|
|
1269
|
+
ModifyIntegration
|
|
1270
|
+
</summary>
|
|
1271
|
+
|
|
1272
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/rds/command/ModifyIntegrationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-rds/Interface/ModifyIntegrationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-rds/Interface/ModifyIntegrationCommandOutput/)
|
|
1273
|
+
|
|
1266
1274
|
</details>
|
|
1267
1275
|
<details>
|
|
1268
1276
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -285,6 +285,7 @@ __export(src_exports, {
|
|
|
285
285
|
ModifyDBSubnetGroupCommand: () => ModifyDBSubnetGroupCommand,
|
|
286
286
|
ModifyEventSubscriptionCommand: () => ModifyEventSubscriptionCommand,
|
|
287
287
|
ModifyGlobalClusterCommand: () => ModifyGlobalClusterCommand,
|
|
288
|
+
ModifyIntegrationCommand: () => ModifyIntegrationCommand,
|
|
288
289
|
ModifyOptionGroupCommand: () => ModifyOptionGroupCommand,
|
|
289
290
|
ModifyTenantDatabaseCommand: () => ModifyTenantDatabaseCommand,
|
|
290
291
|
ModifyTenantDatabaseMessageFilterSensitiveLog: () => ModifyTenantDatabaseMessageFilterSensitiveLog,
|
|
@@ -4527,6 +4528,16 @@ var se_ModifyGlobalClusterCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4527
4528
|
});
|
|
4528
4529
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
4529
4530
|
}, "se_ModifyGlobalClusterCommand");
|
|
4531
|
+
var se_ModifyIntegrationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4532
|
+
const headers = SHARED_HEADERS;
|
|
4533
|
+
let body;
|
|
4534
|
+
body = buildFormUrlencodedString({
|
|
4535
|
+
...se_ModifyIntegrationMessage(input, context),
|
|
4536
|
+
[_A]: _MI,
|
|
4537
|
+
[_V]: _
|
|
4538
|
+
});
|
|
4539
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
4540
|
+
}, "se_ModifyIntegrationCommand");
|
|
4530
4541
|
var se_ModifyOptionGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4531
4542
|
const headers = SHARED_HEADERS;
|
|
4532
4543
|
let body;
|
|
@@ -6494,6 +6505,19 @@ var de_ModifyGlobalClusterCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
6494
6505
|
};
|
|
6495
6506
|
return response;
|
|
6496
6507
|
}, "de_ModifyGlobalClusterCommand");
|
|
6508
|
+
var de_ModifyIntegrationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6509
|
+
if (output.statusCode >= 300) {
|
|
6510
|
+
return de_CommandError(output, context);
|
|
6511
|
+
}
|
|
6512
|
+
const data = await (0, import_core2.parseXmlBody)(output.body, context);
|
|
6513
|
+
let contents = {};
|
|
6514
|
+
contents = de_Integration(data.ModifyIntegrationResult, context);
|
|
6515
|
+
const response = {
|
|
6516
|
+
$metadata: deserializeMetadata(output),
|
|
6517
|
+
...contents
|
|
6518
|
+
};
|
|
6519
|
+
return response;
|
|
6520
|
+
}, "de_ModifyIntegrationCommand");
|
|
6497
6521
|
var de_ModifyOptionGroupCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6498
6522
|
if (output.statusCode >= 300) {
|
|
6499
6523
|
return de_CommandError(output, context);
|
|
@@ -9315,8 +9339,8 @@ var se_CreateDBClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
9315
9339
|
if (input[_AMVU] != null) {
|
|
9316
9340
|
entries[_AMVU] = input[_AMVU];
|
|
9317
9341
|
}
|
|
9318
|
-
if (input[
|
|
9319
|
-
entries[
|
|
9342
|
+
if (input[_MIo] != null) {
|
|
9343
|
+
entries[_MIo] = input[_MIo];
|
|
9320
9344
|
}
|
|
9321
9345
|
if (input[_MRA] != null) {
|
|
9322
9346
|
entries[_MRA] = input[_MRA];
|
|
@@ -9550,8 +9574,8 @@ var se_CreateDBInstanceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
9550
9574
|
if (input[_CTTS] != null) {
|
|
9551
9575
|
entries[_CTTS] = input[_CTTS];
|
|
9552
9576
|
}
|
|
9553
|
-
if (input[
|
|
9554
|
-
entries[
|
|
9577
|
+
if (input[_MIo] != null) {
|
|
9578
|
+
entries[_MIo] = input[_MIo];
|
|
9555
9579
|
}
|
|
9556
9580
|
if (input[_MRA] != null) {
|
|
9557
9581
|
entries[_MRA] = input[_MRA];
|
|
@@ -9703,8 +9727,8 @@ var se_CreateDBInstanceReadReplicaMessage = /* @__PURE__ */ __name((input, conte
|
|
|
9703
9727
|
if (input[_CTTS] != null) {
|
|
9704
9728
|
entries[_CTTS] = input[_CTTS];
|
|
9705
9729
|
}
|
|
9706
|
-
if (input[
|
|
9707
|
-
entries[
|
|
9730
|
+
if (input[_MIo] != null) {
|
|
9731
|
+
entries[_MIo] = input[_MIo];
|
|
9708
9732
|
}
|
|
9709
9733
|
if (input[_MRA] != null) {
|
|
9710
9734
|
entries[_MRA] = input[_MRA];
|
|
@@ -10137,6 +10161,12 @@ var se_CreateIntegrationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
10137
10161
|
entries[loc] = value;
|
|
10138
10162
|
});
|
|
10139
10163
|
}
|
|
10164
|
+
if (input[_DFa] != null) {
|
|
10165
|
+
entries[_DFa] = input[_DFa];
|
|
10166
|
+
}
|
|
10167
|
+
if (input[_D] != null) {
|
|
10168
|
+
entries[_D] = input[_D];
|
|
10169
|
+
}
|
|
10140
10170
|
return entries;
|
|
10141
10171
|
}, "se_CreateIntegrationMessage");
|
|
10142
10172
|
var se_CreateOptionGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -11989,8 +12019,8 @@ var se_ModifyDBClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
11989
12019
|
if (input[_AMVU] != null) {
|
|
11990
12020
|
entries[_AMVU] = input[_AMVU];
|
|
11991
12021
|
}
|
|
11992
|
-
if (input[
|
|
11993
|
-
entries[
|
|
12022
|
+
if (input[_MIo] != null) {
|
|
12023
|
+
entries[_MIo] = input[_MIo];
|
|
11994
12024
|
}
|
|
11995
12025
|
if (input[_MRA] != null) {
|
|
11996
12026
|
entries[_MRA] = input[_MRA];
|
|
@@ -12206,8 +12236,8 @@ var se_ModifyDBInstanceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
12206
12236
|
if (input[_CTTS] != null) {
|
|
12207
12237
|
entries[_CTTS] = input[_CTTS];
|
|
12208
12238
|
}
|
|
12209
|
-
if (input[
|
|
12210
|
-
entries[
|
|
12239
|
+
if (input[_MIo] != null) {
|
|
12240
|
+
entries[_MIo] = input[_MIo];
|
|
12211
12241
|
}
|
|
12212
12242
|
if (input[_DBPNo] != null) {
|
|
12213
12243
|
entries[_DBPNo] = input[_DBPNo];
|
|
@@ -12556,6 +12586,22 @@ var se_ModifyGlobalClusterMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
12556
12586
|
}
|
|
12557
12587
|
return entries;
|
|
12558
12588
|
}, "se_ModifyGlobalClusterMessage");
|
|
12589
|
+
var se_ModifyIntegrationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
12590
|
+
const entries = {};
|
|
12591
|
+
if (input[_IIn] != null) {
|
|
12592
|
+
entries[_IIn] = input[_IIn];
|
|
12593
|
+
}
|
|
12594
|
+
if (input[_IN] != null) {
|
|
12595
|
+
entries[_IN] = input[_IN];
|
|
12596
|
+
}
|
|
12597
|
+
if (input[_DFa] != null) {
|
|
12598
|
+
entries[_DFa] = input[_DFa];
|
|
12599
|
+
}
|
|
12600
|
+
if (input[_D] != null) {
|
|
12601
|
+
entries[_D] = input[_D];
|
|
12602
|
+
}
|
|
12603
|
+
return entries;
|
|
12604
|
+
}, "se_ModifyIntegrationMessage");
|
|
12559
12605
|
var se_ModifyOptionGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
12560
12606
|
var _a, _b;
|
|
12561
12607
|
const entries = {};
|
|
@@ -13718,8 +13764,8 @@ var se_RestoreDBInstanceFromS3Message = /* @__PURE__ */ __name((input, context)
|
|
|
13718
13764
|
if (input[_CTTS] != null) {
|
|
13719
13765
|
entries[_CTTS] = input[_CTTS];
|
|
13720
13766
|
}
|
|
13721
|
-
if (input[
|
|
13722
|
-
entries[
|
|
13767
|
+
if (input[_MIo] != null) {
|
|
13768
|
+
entries[_MIo] = input[_MIo];
|
|
13723
13769
|
}
|
|
13724
13770
|
if (input[_MRA] != null) {
|
|
13725
13771
|
entries[_MRA] = input[_MRA];
|
|
@@ -15032,8 +15078,8 @@ var de_DBCluster = /* @__PURE__ */ __name((output, context) => {
|
|
|
15032
15078
|
if (output[_AMVU] != null) {
|
|
15033
15079
|
contents[_AMVU] = (0, import_smithy_client.parseBoolean)(output[_AMVU]);
|
|
15034
15080
|
}
|
|
15035
|
-
if (output[
|
|
15036
|
-
contents[
|
|
15081
|
+
if (output[_MIo] != null) {
|
|
15082
|
+
contents[_MIo] = (0, import_smithy_client.strictParseInt32)(output[_MIo]);
|
|
15037
15083
|
}
|
|
15038
15084
|
if (output[_MRA] != null) {
|
|
15039
15085
|
contents[_MRA] = (0, import_smithy_client.expectString)(output[_MRA]);
|
|
@@ -15968,8 +16014,8 @@ var de_DBInstance = /* @__PURE__ */ __name((output, context) => {
|
|
|
15968
16014
|
if (output[_CTTS] != null) {
|
|
15969
16015
|
contents[_CTTS] = (0, import_smithy_client.parseBoolean)(output[_CTTS]);
|
|
15970
16016
|
}
|
|
15971
|
-
if (output[
|
|
15972
|
-
contents[
|
|
16017
|
+
if (output[_MIo] != null) {
|
|
16018
|
+
contents[_MIo] = (0, import_smithy_client.strictParseInt32)(output[_MIo]);
|
|
15973
16019
|
}
|
|
15974
16020
|
if (output[_EMRA] != null) {
|
|
15975
16021
|
contents[_EMRA] = (0, import_smithy_client.expectString)(output[_EMRA]);
|
|
@@ -18080,6 +18126,12 @@ var de_Integration = /* @__PURE__ */ __name((output, context) => {
|
|
|
18080
18126
|
} else if (output[_Er] != null && output[_Er][_IE] != null) {
|
|
18081
18127
|
contents[_Er] = de_IntegrationErrorList((0, import_smithy_client.getArrayIfSingleItem)(output[_Er][_IE]), context);
|
|
18082
18128
|
}
|
|
18129
|
+
if (output[_DFa] != null) {
|
|
18130
|
+
contents[_DFa] = (0, import_smithy_client.expectString)(output[_DFa]);
|
|
18131
|
+
}
|
|
18132
|
+
if (output[_D] != null) {
|
|
18133
|
+
contents[_D] = (0, import_smithy_client.expectString)(output[_D]);
|
|
18134
|
+
}
|
|
18083
18135
|
return contents;
|
|
18084
18136
|
}, "de_Integration");
|
|
18085
18137
|
var de_IntegrationAlreadyExistsFault = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -20684,6 +20736,7 @@ var _DES = "DeleteEventSubscription";
|
|
|
20684
20736
|
var _DESe = "DescribeEventSubscriptions";
|
|
20685
20737
|
var _DET = "DescribeExportTasks";
|
|
20686
20738
|
var _DF = "DomainFqdn";
|
|
20739
|
+
var _DFa = "DataFilter";
|
|
20687
20740
|
var _DGC = "DeleteGlobalCluster";
|
|
20688
20741
|
var _DGCe = "DescribeGlobalClusters";
|
|
20689
20742
|
var _DHE = "DisableHttpEndpoint";
|
|
@@ -20896,12 +20949,13 @@ var _MEV = "MajorEngineVersion";
|
|
|
20896
20949
|
var _MEVPAV = "MinimumEngineVersionPerAllowedValue";
|
|
20897
20950
|
var _MEVi = "MinimumEngineVersion";
|
|
20898
20951
|
var _MGC = "ModifyGlobalCluster";
|
|
20899
|
-
var _MI = "
|
|
20952
|
+
var _MI = "ModifyIntegration";
|
|
20900
20953
|
var _MICP = "MaxIdleConnectionsPercent";
|
|
20901
20954
|
var _MIPDI = "MinIopsPerDbInstance";
|
|
20902
20955
|
var _MIPDIa = "MaxIopsPerDbInstance";
|
|
20903
20956
|
var _MIPG = "MinIopsPerGib";
|
|
20904
20957
|
var _MIPGa = "MaxIopsPerGib";
|
|
20958
|
+
var _MIo = "MonitoringInterval";
|
|
20905
20959
|
var _MMUP = "ManageMasterUserPassword";
|
|
20906
20960
|
var _MOG = "ModifyOptionGroup";
|
|
20907
20961
|
var _MQ = "MetricQuery";
|
|
@@ -23450,6 +23504,23 @@ var _ModifyGlobalClusterCommand = class _ModifyGlobalClusterCommand extends impo
|
|
|
23450
23504
|
__name(_ModifyGlobalClusterCommand, "ModifyGlobalClusterCommand");
|
|
23451
23505
|
var ModifyGlobalClusterCommand = _ModifyGlobalClusterCommand;
|
|
23452
23506
|
|
|
23507
|
+
// src/commands/ModifyIntegrationCommand.ts
|
|
23508
|
+
|
|
23509
|
+
|
|
23510
|
+
|
|
23511
|
+
|
|
23512
|
+
var _ModifyIntegrationCommand = class _ModifyIntegrationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
23513
|
+
...commonParams
|
|
23514
|
+
}).m(function(Command, cs, config, o) {
|
|
23515
|
+
return [
|
|
23516
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
23517
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
23518
|
+
];
|
|
23519
|
+
}).s("AmazonRDSv19", "ModifyIntegration", {}).n("RDSClient", "ModifyIntegrationCommand").f(void 0, void 0).ser(se_ModifyIntegrationCommand).de(de_ModifyIntegrationCommand).build() {
|
|
23520
|
+
};
|
|
23521
|
+
__name(_ModifyIntegrationCommand, "ModifyIntegrationCommand");
|
|
23522
|
+
var ModifyIntegrationCommand = _ModifyIntegrationCommand;
|
|
23523
|
+
|
|
23453
23524
|
// src/commands/ModifyOptionGroupCommand.ts
|
|
23454
23525
|
|
|
23455
23526
|
|
|
@@ -24175,6 +24246,7 @@ var commands = {
|
|
|
24175
24246
|
ModifyDBSubnetGroupCommand,
|
|
24176
24247
|
ModifyEventSubscriptionCommand,
|
|
24177
24248
|
ModifyGlobalClusterCommand,
|
|
24249
|
+
ModifyIntegrationCommand,
|
|
24178
24250
|
ModifyOptionGroupCommand,
|
|
24179
24251
|
ModifyTenantDatabaseCommand,
|
|
24180
24252
|
PromoteReadReplicaCommand,
|
|
@@ -25459,6 +25531,7 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
25459
25531
|
ModifyDBSubnetGroupCommand,
|
|
25460
25532
|
ModifyEventSubscriptionCommand,
|
|
25461
25533
|
ModifyGlobalClusterCommand,
|
|
25534
|
+
ModifyIntegrationCommand,
|
|
25462
25535
|
ModifyOptionGroupCommand,
|
|
25463
25536
|
ModifyTenantDatabaseCommand,
|
|
25464
25537
|
PromoteReadReplicaCommand,
|
package/dist-es/RDS.js
CHANGED
|
@@ -125,6 +125,7 @@ import { ModifyDBSnapshotCommand, } from "./commands/ModifyDBSnapshotCommand";
|
|
|
125
125
|
import { ModifyDBSubnetGroupCommand, } from "./commands/ModifyDBSubnetGroupCommand";
|
|
126
126
|
import { ModifyEventSubscriptionCommand, } from "./commands/ModifyEventSubscriptionCommand";
|
|
127
127
|
import { ModifyGlobalClusterCommand, } from "./commands/ModifyGlobalClusterCommand";
|
|
128
|
+
import { ModifyIntegrationCommand, } from "./commands/ModifyIntegrationCommand";
|
|
128
129
|
import { ModifyOptionGroupCommand, } from "./commands/ModifyOptionGroupCommand";
|
|
129
130
|
import { ModifyTenantDatabaseCommand, } from "./commands/ModifyTenantDatabaseCommand";
|
|
130
131
|
import { PromoteReadReplicaCommand, } from "./commands/PromoteReadReplicaCommand";
|
|
@@ -288,6 +289,7 @@ const commands = {
|
|
|
288
289
|
ModifyDBSubnetGroupCommand,
|
|
289
290
|
ModifyEventSubscriptionCommand,
|
|
290
291
|
ModifyGlobalClusterCommand,
|
|
292
|
+
ModifyIntegrationCommand,
|
|
291
293
|
ModifyOptionGroupCommand,
|
|
292
294
|
ModifyTenantDatabaseCommand,
|
|
293
295
|
PromoteReadReplicaCommand,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ModifyIntegrationCommand, se_ModifyIntegrationCommand } from "../protocols/Aws_query";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ModifyIntegrationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("AmazonRDSv19", "ModifyIntegration", {})
|
|
19
|
+
.n("RDSClient", "ModifyIntegrationCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_ModifyIntegrationCommand)
|
|
22
|
+
.de(de_ModifyIntegrationCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -124,6 +124,7 @@ export * from "./ModifyDBSnapshotCommand";
|
|
|
124
124
|
export * from "./ModifyDBSubnetGroupCommand";
|
|
125
125
|
export * from "./ModifyEventSubscriptionCommand";
|
|
126
126
|
export * from "./ModifyGlobalClusterCommand";
|
|
127
|
+
export * from "./ModifyIntegrationCommand";
|
|
127
128
|
export * from "./ModifyOptionGroupCommand";
|
|
128
129
|
export * from "./ModifyTenantDatabaseCommand";
|
|
129
130
|
export * from "./PromoteReadReplicaCommand";
|
|
@@ -1264,6 +1264,16 @@ export const se_ModifyGlobalClusterCommand = async (input, context) => {
|
|
|
1264
1264
|
});
|
|
1265
1265
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1266
1266
|
};
|
|
1267
|
+
export const se_ModifyIntegrationCommand = async (input, context) => {
|
|
1268
|
+
const headers = SHARED_HEADERS;
|
|
1269
|
+
let body;
|
|
1270
|
+
body = buildFormUrlencodedString({
|
|
1271
|
+
...se_ModifyIntegrationMessage(input, context),
|
|
1272
|
+
[_A]: _MI,
|
|
1273
|
+
[_V]: _,
|
|
1274
|
+
});
|
|
1275
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1276
|
+
};
|
|
1267
1277
|
export const se_ModifyOptionGroupCommand = async (input, context) => {
|
|
1268
1278
|
const headers = SHARED_HEADERS;
|
|
1269
1279
|
let body;
|
|
@@ -3228,6 +3238,19 @@ export const de_ModifyGlobalClusterCommand = async (output, context) => {
|
|
|
3228
3238
|
};
|
|
3229
3239
|
return response;
|
|
3230
3240
|
};
|
|
3241
|
+
export const de_ModifyIntegrationCommand = async (output, context) => {
|
|
3242
|
+
if (output.statusCode >= 300) {
|
|
3243
|
+
return de_CommandError(output, context);
|
|
3244
|
+
}
|
|
3245
|
+
const data = await parseBody(output.body, context);
|
|
3246
|
+
let contents = {};
|
|
3247
|
+
contents = de_Integration(data.ModifyIntegrationResult, context);
|
|
3248
|
+
const response = {
|
|
3249
|
+
$metadata: deserializeMetadata(output),
|
|
3250
|
+
...contents,
|
|
3251
|
+
};
|
|
3252
|
+
return response;
|
|
3253
|
+
};
|
|
3231
3254
|
export const de_ModifyOptionGroupCommand = async (output, context) => {
|
|
3232
3255
|
if (output.statusCode >= 300) {
|
|
3233
3256
|
return de_CommandError(output, context);
|
|
@@ -6028,8 +6051,8 @@ const se_CreateDBClusterMessage = (input, context) => {
|
|
|
6028
6051
|
if (input[_AMVU] != null) {
|
|
6029
6052
|
entries[_AMVU] = input[_AMVU];
|
|
6030
6053
|
}
|
|
6031
|
-
if (input[
|
|
6032
|
-
entries[
|
|
6054
|
+
if (input[_MIo] != null) {
|
|
6055
|
+
entries[_MIo] = input[_MIo];
|
|
6033
6056
|
}
|
|
6034
6057
|
if (input[_MRA] != null) {
|
|
6035
6058
|
entries[_MRA] = input[_MRA];
|
|
@@ -6260,8 +6283,8 @@ const se_CreateDBInstanceMessage = (input, context) => {
|
|
|
6260
6283
|
if (input[_CTTS] != null) {
|
|
6261
6284
|
entries[_CTTS] = input[_CTTS];
|
|
6262
6285
|
}
|
|
6263
|
-
if (input[
|
|
6264
|
-
entries[
|
|
6286
|
+
if (input[_MIo] != null) {
|
|
6287
|
+
entries[_MIo] = input[_MIo];
|
|
6265
6288
|
}
|
|
6266
6289
|
if (input[_MRA] != null) {
|
|
6267
6290
|
entries[_MRA] = input[_MRA];
|
|
@@ -6412,8 +6435,8 @@ const se_CreateDBInstanceReadReplicaMessage = (input, context) => {
|
|
|
6412
6435
|
if (input[_CTTS] != null) {
|
|
6413
6436
|
entries[_CTTS] = input[_CTTS];
|
|
6414
6437
|
}
|
|
6415
|
-
if (input[
|
|
6416
|
-
entries[
|
|
6438
|
+
if (input[_MIo] != null) {
|
|
6439
|
+
entries[_MIo] = input[_MIo];
|
|
6417
6440
|
}
|
|
6418
6441
|
if (input[_MRA] != null) {
|
|
6419
6442
|
entries[_MRA] = input[_MRA];
|
|
@@ -6838,6 +6861,12 @@ const se_CreateIntegrationMessage = (input, context) => {
|
|
|
6838
6861
|
entries[loc] = value;
|
|
6839
6862
|
});
|
|
6840
6863
|
}
|
|
6864
|
+
if (input[_DFa] != null) {
|
|
6865
|
+
entries[_DFa] = input[_DFa];
|
|
6866
|
+
}
|
|
6867
|
+
if (input[_D] != null) {
|
|
6868
|
+
entries[_D] = input[_D];
|
|
6869
|
+
}
|
|
6841
6870
|
return entries;
|
|
6842
6871
|
};
|
|
6843
6872
|
const se_CreateOptionGroupMessage = (input, context) => {
|
|
@@ -8644,8 +8673,8 @@ const se_ModifyDBClusterMessage = (input, context) => {
|
|
|
8644
8673
|
if (input[_AMVU] != null) {
|
|
8645
8674
|
entries[_AMVU] = input[_AMVU];
|
|
8646
8675
|
}
|
|
8647
|
-
if (input[
|
|
8648
|
-
entries[
|
|
8676
|
+
if (input[_MIo] != null) {
|
|
8677
|
+
entries[_MIo] = input[_MIo];
|
|
8649
8678
|
}
|
|
8650
8679
|
if (input[_MRA] != null) {
|
|
8651
8680
|
entries[_MRA] = input[_MRA];
|
|
@@ -8858,8 +8887,8 @@ const se_ModifyDBInstanceMessage = (input, context) => {
|
|
|
8858
8887
|
if (input[_CTTS] != null) {
|
|
8859
8888
|
entries[_CTTS] = input[_CTTS];
|
|
8860
8889
|
}
|
|
8861
|
-
if (input[
|
|
8862
|
-
entries[
|
|
8890
|
+
if (input[_MIo] != null) {
|
|
8891
|
+
entries[_MIo] = input[_MIo];
|
|
8863
8892
|
}
|
|
8864
8893
|
if (input[_DBPNo] != null) {
|
|
8865
8894
|
entries[_DBPNo] = input[_DBPNo];
|
|
@@ -9201,6 +9230,22 @@ const se_ModifyGlobalClusterMessage = (input, context) => {
|
|
|
9201
9230
|
}
|
|
9202
9231
|
return entries;
|
|
9203
9232
|
};
|
|
9233
|
+
const se_ModifyIntegrationMessage = (input, context) => {
|
|
9234
|
+
const entries = {};
|
|
9235
|
+
if (input[_IIn] != null) {
|
|
9236
|
+
entries[_IIn] = input[_IIn];
|
|
9237
|
+
}
|
|
9238
|
+
if (input[_IN] != null) {
|
|
9239
|
+
entries[_IN] = input[_IN];
|
|
9240
|
+
}
|
|
9241
|
+
if (input[_DFa] != null) {
|
|
9242
|
+
entries[_DFa] = input[_DFa];
|
|
9243
|
+
}
|
|
9244
|
+
if (input[_D] != null) {
|
|
9245
|
+
entries[_D] = input[_D];
|
|
9246
|
+
}
|
|
9247
|
+
return entries;
|
|
9248
|
+
};
|
|
9204
9249
|
const se_ModifyOptionGroupMessage = (input, context) => {
|
|
9205
9250
|
const entries = {};
|
|
9206
9251
|
if (input[_OGN] != null) {
|
|
@@ -10350,8 +10395,8 @@ const se_RestoreDBInstanceFromS3Message = (input, context) => {
|
|
|
10350
10395
|
if (input[_CTTS] != null) {
|
|
10351
10396
|
entries[_CTTS] = input[_CTTS];
|
|
10352
10397
|
}
|
|
10353
|
-
if (input[
|
|
10354
|
-
entries[
|
|
10398
|
+
if (input[_MIo] != null) {
|
|
10399
|
+
entries[_MIo] = input[_MIo];
|
|
10355
10400
|
}
|
|
10356
10401
|
if (input[_MRA] != null) {
|
|
10357
10402
|
entries[_MRA] = input[_MRA];
|
|
@@ -11701,8 +11746,8 @@ const de_DBCluster = (output, context) => {
|
|
|
11701
11746
|
if (output[_AMVU] != null) {
|
|
11702
11747
|
contents[_AMVU] = __parseBoolean(output[_AMVU]);
|
|
11703
11748
|
}
|
|
11704
|
-
if (output[
|
|
11705
|
-
contents[
|
|
11749
|
+
if (output[_MIo] != null) {
|
|
11750
|
+
contents[_MIo] = __strictParseInt32(output[_MIo]);
|
|
11706
11751
|
}
|
|
11707
11752
|
if (output[_MRA] != null) {
|
|
11708
11753
|
contents[_MRA] = __expectString(output[_MRA]);
|
|
@@ -12687,8 +12732,8 @@ const de_DBInstance = (output, context) => {
|
|
|
12687
12732
|
if (output[_CTTS] != null) {
|
|
12688
12733
|
contents[_CTTS] = __parseBoolean(output[_CTTS]);
|
|
12689
12734
|
}
|
|
12690
|
-
if (output[
|
|
12691
|
-
contents[
|
|
12735
|
+
if (output[_MIo] != null) {
|
|
12736
|
+
contents[_MIo] = __strictParseInt32(output[_MIo]);
|
|
12692
12737
|
}
|
|
12693
12738
|
if (output[_EMRA] != null) {
|
|
12694
12739
|
contents[_EMRA] = __expectString(output[_EMRA]);
|
|
@@ -14911,6 +14956,12 @@ const de_Integration = (output, context) => {
|
|
|
14911
14956
|
else if (output[_Er] != null && output[_Er][_IE] != null) {
|
|
14912
14957
|
contents[_Er] = de_IntegrationErrorList(__getArrayIfSingleItem(output[_Er][_IE]), context);
|
|
14913
14958
|
}
|
|
14959
|
+
if (output[_DFa] != null) {
|
|
14960
|
+
contents[_DFa] = __expectString(output[_DFa]);
|
|
14961
|
+
}
|
|
14962
|
+
if (output[_D] != null) {
|
|
14963
|
+
contents[_D] = __expectString(output[_D]);
|
|
14964
|
+
}
|
|
14914
14965
|
return contents;
|
|
14915
14966
|
};
|
|
14916
14967
|
const de_IntegrationAlreadyExistsFault = (output, context) => {
|
|
@@ -17651,6 +17702,7 @@ const _DES = "DeleteEventSubscription";
|
|
|
17651
17702
|
const _DESe = "DescribeEventSubscriptions";
|
|
17652
17703
|
const _DET = "DescribeExportTasks";
|
|
17653
17704
|
const _DF = "DomainFqdn";
|
|
17705
|
+
const _DFa = "DataFilter";
|
|
17654
17706
|
const _DGC = "DeleteGlobalCluster";
|
|
17655
17707
|
const _DGCe = "DescribeGlobalClusters";
|
|
17656
17708
|
const _DHE = "DisableHttpEndpoint";
|
|
@@ -17863,12 +17915,13 @@ const _MEV = "MajorEngineVersion";
|
|
|
17863
17915
|
const _MEVPAV = "MinimumEngineVersionPerAllowedValue";
|
|
17864
17916
|
const _MEVi = "MinimumEngineVersion";
|
|
17865
17917
|
const _MGC = "ModifyGlobalCluster";
|
|
17866
|
-
const _MI = "
|
|
17918
|
+
const _MI = "ModifyIntegration";
|
|
17867
17919
|
const _MICP = "MaxIdleConnectionsPercent";
|
|
17868
17920
|
const _MIPDI = "MinIopsPerDbInstance";
|
|
17869
17921
|
const _MIPDIa = "MaxIopsPerDbInstance";
|
|
17870
17922
|
const _MIPG = "MinIopsPerGib";
|
|
17871
17923
|
const _MIPGa = "MaxIopsPerGib";
|
|
17924
|
+
const _MIo = "MonitoringInterval";
|
|
17872
17925
|
const _MMUP = "ManageMasterUserPassword";
|
|
17873
17926
|
const _MOG = "ModifyOptionGroup";
|
|
17874
17927
|
const _MQ = "MetricQuery";
|
package/dist-types/RDS.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ import { ModifyDBSnapshotCommandInput, ModifyDBSnapshotCommandOutput } from "./c
|
|
|
125
125
|
import { ModifyDBSubnetGroupCommandInput, ModifyDBSubnetGroupCommandOutput } from "./commands/ModifyDBSubnetGroupCommand";
|
|
126
126
|
import { ModifyEventSubscriptionCommandInput, ModifyEventSubscriptionCommandOutput } from "./commands/ModifyEventSubscriptionCommand";
|
|
127
127
|
import { ModifyGlobalClusterCommandInput, ModifyGlobalClusterCommandOutput } from "./commands/ModifyGlobalClusterCommand";
|
|
128
|
+
import { ModifyIntegrationCommandInput, ModifyIntegrationCommandOutput } from "./commands/ModifyIntegrationCommand";
|
|
128
129
|
import { ModifyOptionGroupCommandInput, ModifyOptionGroupCommandOutput } from "./commands/ModifyOptionGroupCommand";
|
|
129
130
|
import { ModifyTenantDatabaseCommandInput, ModifyTenantDatabaseCommandOutput } from "./commands/ModifyTenantDatabaseCommand";
|
|
130
131
|
import { PromoteReadReplicaCommandInput, PromoteReadReplicaCommandOutput } from "./commands/PromoteReadReplicaCommand";
|
|
@@ -955,6 +956,12 @@ export interface RDS {
|
|
|
955
956
|
modifyGlobalCluster(args: ModifyGlobalClusterCommandInput, options?: __HttpHandlerOptions): Promise<ModifyGlobalClusterCommandOutput>;
|
|
956
957
|
modifyGlobalCluster(args: ModifyGlobalClusterCommandInput, cb: (err: any, data?: ModifyGlobalClusterCommandOutput) => void): void;
|
|
957
958
|
modifyGlobalCluster(args: ModifyGlobalClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyGlobalClusterCommandOutput) => void): void;
|
|
959
|
+
/**
|
|
960
|
+
* @see {@link ModifyIntegrationCommand}
|
|
961
|
+
*/
|
|
962
|
+
modifyIntegration(args: ModifyIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyIntegrationCommandOutput>;
|
|
963
|
+
modifyIntegration(args: ModifyIntegrationCommandInput, cb: (err: any, data?: ModifyIntegrationCommandOutput) => void): void;
|
|
964
|
+
modifyIntegration(args: ModifyIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyIntegrationCommandOutput) => void): void;
|
|
958
965
|
/**
|
|
959
966
|
* @see {@link ModifyOptionGroupCommand}
|
|
960
967
|
*/
|
|
@@ -133,6 +133,7 @@ import { ModifyDBSnapshotCommandInput, ModifyDBSnapshotCommandOutput } from "./c
|
|
|
133
133
|
import { ModifyDBSubnetGroupCommandInput, ModifyDBSubnetGroupCommandOutput } from "./commands/ModifyDBSubnetGroupCommand";
|
|
134
134
|
import { ModifyEventSubscriptionCommandInput, ModifyEventSubscriptionCommandOutput } from "./commands/ModifyEventSubscriptionCommand";
|
|
135
135
|
import { ModifyGlobalClusterCommandInput, ModifyGlobalClusterCommandOutput } from "./commands/ModifyGlobalClusterCommand";
|
|
136
|
+
import { ModifyIntegrationCommandInput, ModifyIntegrationCommandOutput } from "./commands/ModifyIntegrationCommand";
|
|
136
137
|
import { ModifyOptionGroupCommandInput, ModifyOptionGroupCommandOutput } from "./commands/ModifyOptionGroupCommand";
|
|
137
138
|
import { ModifyTenantDatabaseCommandInput, ModifyTenantDatabaseCommandOutput } from "./commands/ModifyTenantDatabaseCommand";
|
|
138
139
|
import { PromoteReadReplicaCommandInput, PromoteReadReplicaCommandOutput } from "./commands/PromoteReadReplicaCommand";
|
|
@@ -174,11 +175,11 @@ export { __Client };
|
|
|
174
175
|
/**
|
|
175
176
|
* @public
|
|
176
177
|
*/
|
|
177
|
-
export type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateBlueGreenDeploymentCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBShardGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateIntegrationCommandInput | CreateOptionGroupCommandInput | CreateTenantDatabaseCommandInput | DeleteBlueGreenDeploymentCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterAutomatedBackupCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBShardGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteIntegrationCommandInput | DeleteOptionGroupCommandInput | DeleteTenantDatabaseCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeBlueGreenDeploymentsCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterAutomatedBackupsCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBRecommendationsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBShardGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotTenantDatabasesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeIntegrationsCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeTenantDatabasesCommandInput | DescribeValidDBInstanceModificationsCommandInput | DisableHttpEndpointCommandInput | DownloadDBLogFilePortionCommandInput | EnableHttpEndpointCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyActivityStreamCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBRecommendationCommandInput | ModifyDBShardGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyOptionGroupCommandInput | ModifyTenantDatabaseCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RebootDBShardGroupCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput | SwitchoverBlueGreenDeploymentCommandInput | SwitchoverGlobalClusterCommandInput | SwitchoverReadReplicaCommandInput;
|
|
178
|
+
export type ServiceInputTypes = AddRoleToDBClusterCommandInput | AddRoleToDBInstanceCommandInput | AddSourceIdentifierToSubscriptionCommandInput | AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | AuthorizeDBSecurityGroupIngressCommandInput | BacktrackDBClusterCommandInput | CancelExportTaskCommandInput | CopyDBClusterParameterGroupCommandInput | CopyDBClusterSnapshotCommandInput | CopyDBParameterGroupCommandInput | CopyDBSnapshotCommandInput | CopyOptionGroupCommandInput | CreateBlueGreenDeploymentCommandInput | CreateCustomDBEngineVersionCommandInput | CreateDBClusterCommandInput | CreateDBClusterEndpointCommandInput | CreateDBClusterParameterGroupCommandInput | CreateDBClusterSnapshotCommandInput | CreateDBInstanceCommandInput | CreateDBInstanceReadReplicaCommandInput | CreateDBParameterGroupCommandInput | CreateDBProxyCommandInput | CreateDBProxyEndpointCommandInput | CreateDBSecurityGroupCommandInput | CreateDBShardGroupCommandInput | CreateDBSnapshotCommandInput | CreateDBSubnetGroupCommandInput | CreateEventSubscriptionCommandInput | CreateGlobalClusterCommandInput | CreateIntegrationCommandInput | CreateOptionGroupCommandInput | CreateTenantDatabaseCommandInput | DeleteBlueGreenDeploymentCommandInput | DeleteCustomDBEngineVersionCommandInput | DeleteDBClusterAutomatedBackupCommandInput | DeleteDBClusterCommandInput | DeleteDBClusterEndpointCommandInput | DeleteDBClusterParameterGroupCommandInput | DeleteDBClusterSnapshotCommandInput | DeleteDBInstanceAutomatedBackupCommandInput | DeleteDBInstanceCommandInput | DeleteDBParameterGroupCommandInput | DeleteDBProxyCommandInput | DeleteDBProxyEndpointCommandInput | DeleteDBSecurityGroupCommandInput | DeleteDBShardGroupCommandInput | DeleteDBSnapshotCommandInput | DeleteDBSubnetGroupCommandInput | DeleteEventSubscriptionCommandInput | DeleteGlobalClusterCommandInput | DeleteIntegrationCommandInput | DeleteOptionGroupCommandInput | DeleteTenantDatabaseCommandInput | DeregisterDBProxyTargetsCommandInput | DescribeAccountAttributesCommandInput | DescribeBlueGreenDeploymentsCommandInput | DescribeCertificatesCommandInput | DescribeDBClusterAutomatedBackupsCommandInput | DescribeDBClusterBacktracksCommandInput | DescribeDBClusterEndpointsCommandInput | DescribeDBClusterParameterGroupsCommandInput | DescribeDBClusterParametersCommandInput | DescribeDBClusterSnapshotAttributesCommandInput | DescribeDBClusterSnapshotsCommandInput | DescribeDBClustersCommandInput | DescribeDBEngineVersionsCommandInput | DescribeDBInstanceAutomatedBackupsCommandInput | DescribeDBInstancesCommandInput | DescribeDBLogFilesCommandInput | DescribeDBParameterGroupsCommandInput | DescribeDBParametersCommandInput | DescribeDBProxiesCommandInput | DescribeDBProxyEndpointsCommandInput | DescribeDBProxyTargetGroupsCommandInput | DescribeDBProxyTargetsCommandInput | DescribeDBRecommendationsCommandInput | DescribeDBSecurityGroupsCommandInput | DescribeDBShardGroupsCommandInput | DescribeDBSnapshotAttributesCommandInput | DescribeDBSnapshotTenantDatabasesCommandInput | DescribeDBSnapshotsCommandInput | DescribeDBSubnetGroupsCommandInput | DescribeEngineDefaultClusterParametersCommandInput | DescribeEngineDefaultParametersCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExportTasksCommandInput | DescribeGlobalClustersCommandInput | DescribeIntegrationsCommandInput | DescribeOptionGroupOptionsCommandInput | DescribeOptionGroupsCommandInput | DescribeOrderableDBInstanceOptionsCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeReservedDBInstancesCommandInput | DescribeReservedDBInstancesOfferingsCommandInput | DescribeSourceRegionsCommandInput | DescribeTenantDatabasesCommandInput | DescribeValidDBInstanceModificationsCommandInput | DisableHttpEndpointCommandInput | DownloadDBLogFilePortionCommandInput | EnableHttpEndpointCommandInput | FailoverDBClusterCommandInput | FailoverGlobalClusterCommandInput | ListTagsForResourceCommandInput | ModifyActivityStreamCommandInput | ModifyCertificatesCommandInput | ModifyCurrentDBClusterCapacityCommandInput | ModifyCustomDBEngineVersionCommandInput | ModifyDBClusterCommandInput | ModifyDBClusterEndpointCommandInput | ModifyDBClusterParameterGroupCommandInput | ModifyDBClusterSnapshotAttributeCommandInput | ModifyDBInstanceCommandInput | ModifyDBParameterGroupCommandInput | ModifyDBProxyCommandInput | ModifyDBProxyEndpointCommandInput | ModifyDBProxyTargetGroupCommandInput | ModifyDBRecommendationCommandInput | ModifyDBShardGroupCommandInput | ModifyDBSnapshotAttributeCommandInput | ModifyDBSnapshotCommandInput | ModifyDBSubnetGroupCommandInput | ModifyEventSubscriptionCommandInput | ModifyGlobalClusterCommandInput | ModifyIntegrationCommandInput | ModifyOptionGroupCommandInput | ModifyTenantDatabaseCommandInput | PromoteReadReplicaCommandInput | PromoteReadReplicaDBClusterCommandInput | PurchaseReservedDBInstancesOfferingCommandInput | RebootDBClusterCommandInput | RebootDBInstanceCommandInput | RebootDBShardGroupCommandInput | RegisterDBProxyTargetsCommandInput | RemoveFromGlobalClusterCommandInput | RemoveRoleFromDBClusterCommandInput | RemoveRoleFromDBInstanceCommandInput | RemoveSourceIdentifierFromSubscriptionCommandInput | RemoveTagsFromResourceCommandInput | ResetDBClusterParameterGroupCommandInput | ResetDBParameterGroupCommandInput | RestoreDBClusterFromS3CommandInput | RestoreDBClusterFromSnapshotCommandInput | RestoreDBClusterToPointInTimeCommandInput | RestoreDBInstanceFromDBSnapshotCommandInput | RestoreDBInstanceFromS3CommandInput | RestoreDBInstanceToPointInTimeCommandInput | RevokeDBSecurityGroupIngressCommandInput | StartActivityStreamCommandInput | StartDBClusterCommandInput | StartDBInstanceAutomatedBackupsReplicationCommandInput | StartDBInstanceCommandInput | StartExportTaskCommandInput | StopActivityStreamCommandInput | StopDBClusterCommandInput | StopDBInstanceAutomatedBackupsReplicationCommandInput | StopDBInstanceCommandInput | SwitchoverBlueGreenDeploymentCommandInput | SwitchoverGlobalClusterCommandInput | SwitchoverReadReplicaCommandInput;
|
|
178
179
|
/**
|
|
179
180
|
* @public
|
|
180
181
|
*/
|
|
181
|
-
export type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateBlueGreenDeploymentCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBShardGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateIntegrationCommandOutput | CreateOptionGroupCommandOutput | CreateTenantDatabaseCommandOutput | DeleteBlueGreenDeploymentCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterAutomatedBackupCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBShardGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteIntegrationCommandOutput | DeleteOptionGroupCommandOutput | DeleteTenantDatabaseCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeBlueGreenDeploymentsCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterAutomatedBackupsCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBRecommendationsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBShardGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotTenantDatabasesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeIntegrationsCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeTenantDatabasesCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DisableHttpEndpointCommandOutput | DownloadDBLogFilePortionCommandOutput | EnableHttpEndpointCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyActivityStreamCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBRecommendationCommandOutput | ModifyDBShardGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyOptionGroupCommandOutput | ModifyTenantDatabaseCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RebootDBShardGroupCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput | SwitchoverBlueGreenDeploymentCommandOutput | SwitchoverGlobalClusterCommandOutput | SwitchoverReadReplicaCommandOutput;
|
|
182
|
+
export type ServiceOutputTypes = AddRoleToDBClusterCommandOutput | AddRoleToDBInstanceCommandOutput | AddSourceIdentifierToSubscriptionCommandOutput | AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | AuthorizeDBSecurityGroupIngressCommandOutput | BacktrackDBClusterCommandOutput | CancelExportTaskCommandOutput | CopyDBClusterParameterGroupCommandOutput | CopyDBClusterSnapshotCommandOutput | CopyDBParameterGroupCommandOutput | CopyDBSnapshotCommandOutput | CopyOptionGroupCommandOutput | CreateBlueGreenDeploymentCommandOutput | CreateCustomDBEngineVersionCommandOutput | CreateDBClusterCommandOutput | CreateDBClusterEndpointCommandOutput | CreateDBClusterParameterGroupCommandOutput | CreateDBClusterSnapshotCommandOutput | CreateDBInstanceCommandOutput | CreateDBInstanceReadReplicaCommandOutput | CreateDBParameterGroupCommandOutput | CreateDBProxyCommandOutput | CreateDBProxyEndpointCommandOutput | CreateDBSecurityGroupCommandOutput | CreateDBShardGroupCommandOutput | CreateDBSnapshotCommandOutput | CreateDBSubnetGroupCommandOutput | CreateEventSubscriptionCommandOutput | CreateGlobalClusterCommandOutput | CreateIntegrationCommandOutput | CreateOptionGroupCommandOutput | CreateTenantDatabaseCommandOutput | DeleteBlueGreenDeploymentCommandOutput | DeleteCustomDBEngineVersionCommandOutput | DeleteDBClusterAutomatedBackupCommandOutput | DeleteDBClusterCommandOutput | DeleteDBClusterEndpointCommandOutput | DeleteDBClusterParameterGroupCommandOutput | DeleteDBClusterSnapshotCommandOutput | DeleteDBInstanceAutomatedBackupCommandOutput | DeleteDBInstanceCommandOutput | DeleteDBParameterGroupCommandOutput | DeleteDBProxyCommandOutput | DeleteDBProxyEndpointCommandOutput | DeleteDBSecurityGroupCommandOutput | DeleteDBShardGroupCommandOutput | DeleteDBSnapshotCommandOutput | DeleteDBSubnetGroupCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteGlobalClusterCommandOutput | DeleteIntegrationCommandOutput | DeleteOptionGroupCommandOutput | DeleteTenantDatabaseCommandOutput | DeregisterDBProxyTargetsCommandOutput | DescribeAccountAttributesCommandOutput | DescribeBlueGreenDeploymentsCommandOutput | DescribeCertificatesCommandOutput | DescribeDBClusterAutomatedBackupsCommandOutput | DescribeDBClusterBacktracksCommandOutput | DescribeDBClusterEndpointsCommandOutput | DescribeDBClusterParameterGroupsCommandOutput | DescribeDBClusterParametersCommandOutput | DescribeDBClusterSnapshotAttributesCommandOutput | DescribeDBClusterSnapshotsCommandOutput | DescribeDBClustersCommandOutput | DescribeDBEngineVersionsCommandOutput | DescribeDBInstanceAutomatedBackupsCommandOutput | DescribeDBInstancesCommandOutput | DescribeDBLogFilesCommandOutput | DescribeDBParameterGroupsCommandOutput | DescribeDBParametersCommandOutput | DescribeDBProxiesCommandOutput | DescribeDBProxyEndpointsCommandOutput | DescribeDBProxyTargetGroupsCommandOutput | DescribeDBProxyTargetsCommandOutput | DescribeDBRecommendationsCommandOutput | DescribeDBSecurityGroupsCommandOutput | DescribeDBShardGroupsCommandOutput | DescribeDBSnapshotAttributesCommandOutput | DescribeDBSnapshotTenantDatabasesCommandOutput | DescribeDBSnapshotsCommandOutput | DescribeDBSubnetGroupsCommandOutput | DescribeEngineDefaultClusterParametersCommandOutput | DescribeEngineDefaultParametersCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExportTasksCommandOutput | DescribeGlobalClustersCommandOutput | DescribeIntegrationsCommandOutput | DescribeOptionGroupOptionsCommandOutput | DescribeOptionGroupsCommandOutput | DescribeOrderableDBInstanceOptionsCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeReservedDBInstancesCommandOutput | DescribeReservedDBInstancesOfferingsCommandOutput | DescribeSourceRegionsCommandOutput | DescribeTenantDatabasesCommandOutput | DescribeValidDBInstanceModificationsCommandOutput | DisableHttpEndpointCommandOutput | DownloadDBLogFilePortionCommandOutput | EnableHttpEndpointCommandOutput | FailoverDBClusterCommandOutput | FailoverGlobalClusterCommandOutput | ListTagsForResourceCommandOutput | ModifyActivityStreamCommandOutput | ModifyCertificatesCommandOutput | ModifyCurrentDBClusterCapacityCommandOutput | ModifyCustomDBEngineVersionCommandOutput | ModifyDBClusterCommandOutput | ModifyDBClusterEndpointCommandOutput | ModifyDBClusterParameterGroupCommandOutput | ModifyDBClusterSnapshotAttributeCommandOutput | ModifyDBInstanceCommandOutput | ModifyDBParameterGroupCommandOutput | ModifyDBProxyCommandOutput | ModifyDBProxyEndpointCommandOutput | ModifyDBProxyTargetGroupCommandOutput | ModifyDBRecommendationCommandOutput | ModifyDBShardGroupCommandOutput | ModifyDBSnapshotAttributeCommandOutput | ModifyDBSnapshotCommandOutput | ModifyDBSubnetGroupCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyGlobalClusterCommandOutput | ModifyIntegrationCommandOutput | ModifyOptionGroupCommandOutput | ModifyTenantDatabaseCommandOutput | PromoteReadReplicaCommandOutput | PromoteReadReplicaDBClusterCommandOutput | PurchaseReservedDBInstancesOfferingCommandOutput | RebootDBClusterCommandOutput | RebootDBInstanceCommandOutput | RebootDBShardGroupCommandOutput | RegisterDBProxyTargetsCommandOutput | RemoveFromGlobalClusterCommandOutput | RemoveRoleFromDBClusterCommandOutput | RemoveRoleFromDBInstanceCommandOutput | RemoveSourceIdentifierFromSubscriptionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetDBClusterParameterGroupCommandOutput | ResetDBParameterGroupCommandOutput | RestoreDBClusterFromS3CommandOutput | RestoreDBClusterFromSnapshotCommandOutput | RestoreDBClusterToPointInTimeCommandOutput | RestoreDBInstanceFromDBSnapshotCommandOutput | RestoreDBInstanceFromS3CommandOutput | RestoreDBInstanceToPointInTimeCommandOutput | RevokeDBSecurityGroupIngressCommandOutput | StartActivityStreamCommandOutput | StartDBClusterCommandOutput | StartDBInstanceAutomatedBackupsReplicationCommandOutput | StartDBInstanceCommandOutput | StartExportTaskCommandOutput | StopActivityStreamCommandOutput | StopDBClusterCommandOutput | StopDBInstanceAutomatedBackupsReplicationCommandOutput | StopDBInstanceCommandOutput | SwitchoverBlueGreenDeploymentCommandOutput | SwitchoverGlobalClusterCommandOutput | SwitchoverReadReplicaCommandOutput;
|
|
182
183
|
/**
|
|
183
184
|
* @public
|
|
184
185
|
*/
|
|
@@ -47,6 +47,8 @@ declare const CreateIntegrationCommand_base: {
|
|
|
47
47
|
* Value: "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
49
|
* ],
|
|
50
|
+
* DataFilter: "STRING_VALUE",
|
|
51
|
+
* Description: "STRING_VALUE",
|
|
50
52
|
* };
|
|
51
53
|
* const command = new CreateIntegrationCommand(input);
|
|
52
54
|
* const response = await client.send(command);
|
|
@@ -73,6 +75,8 @@ declare const CreateIntegrationCommand_base: {
|
|
|
73
75
|
* // ErrorMessage: "STRING_VALUE",
|
|
74
76
|
* // },
|
|
75
77
|
* // ],
|
|
78
|
+
* // DataFilter: "STRING_VALUE",
|
|
79
|
+
* // Description: "STRING_VALUE",
|
|
76
80
|
* // };
|
|
77
81
|
*
|
|
78
82
|
* ```
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { Integration } from "../models/models_0";
|
|
4
|
+
import { ModifyIntegrationMessage } from "../models/models_1";
|
|
5
|
+
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ModifyIntegrationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ModifyIntegrationCommandInput extends ModifyIntegrationMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ModifyIntegrationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ModifyIntegrationCommandOutput extends Integration, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ModifyIntegrationCommand_base: {
|
|
25
|
+
new (input: ModifyIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyIntegrationCommandInput, ModifyIntegrationCommandOutput, RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ModifyIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyIntegrationCommandInput, ModifyIntegrationCommandOutput, RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Modifies a zero-ETL integration with Amazon Redshift.</p>
|
|
31
|
+
* <note>
|
|
32
|
+
* <p>Currently, you can only modify integrations that have Aurora MySQL source DB clusters. Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying the integration.</p>
|
|
33
|
+
* </note>
|
|
34
|
+
* @example
|
|
35
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
36
|
+
* ```javascript
|
|
37
|
+
* import { RDSClient, ModifyIntegrationCommand } from "@aws-sdk/client-rds"; // ES Modules import
|
|
38
|
+
* // const { RDSClient, ModifyIntegrationCommand } = require("@aws-sdk/client-rds"); // CommonJS import
|
|
39
|
+
* const client = new RDSClient(config);
|
|
40
|
+
* const input = { // ModifyIntegrationMessage
|
|
41
|
+
* IntegrationIdentifier: "STRING_VALUE", // required
|
|
42
|
+
* IntegrationName: "STRING_VALUE",
|
|
43
|
+
* DataFilter: "STRING_VALUE",
|
|
44
|
+
* Description: "STRING_VALUE",
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ModifyIntegrationCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // Integration
|
|
49
|
+
* // SourceArn: "STRING_VALUE",
|
|
50
|
+
* // TargetArn: "STRING_VALUE",
|
|
51
|
+
* // IntegrationName: "STRING_VALUE",
|
|
52
|
+
* // IntegrationArn: "STRING_VALUE",
|
|
53
|
+
* // KMSKeyId: "STRING_VALUE",
|
|
54
|
+
* // AdditionalEncryptionContext: { // EncryptionContextMap
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // Status: "creating" || "active" || "modifying" || "failed" || "deleting" || "syncing" || "needs_attention",
|
|
58
|
+
* // Tags: [ // TagList
|
|
59
|
+
* // { // Tag
|
|
60
|
+
* // Key: "STRING_VALUE",
|
|
61
|
+
* // Value: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // CreateTime: new Date("TIMESTAMP"),
|
|
65
|
+
* // Errors: [ // IntegrationErrorList
|
|
66
|
+
* // { // IntegrationError
|
|
67
|
+
* // ErrorCode: "STRING_VALUE", // required
|
|
68
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // DataFilter: "STRING_VALUE",
|
|
72
|
+
* // Description: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* @param ModifyIntegrationCommandInput - {@link ModifyIntegrationCommandInput}
|
|
78
|
+
* @returns {@link ModifyIntegrationCommandOutput}
|
|
79
|
+
* @see {@link ModifyIntegrationCommandInput} for command's `input` shape.
|
|
80
|
+
* @see {@link ModifyIntegrationCommandOutput} for command's `response` shape.
|
|
81
|
+
* @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link IntegrationConflictOperationFault} (client fault)
|
|
84
|
+
* <p>A conflicting conditional operation is currently in progress against this resource.
|
|
85
|
+
* Typically occurs when there are multiple requests being made to the same resource at the same time,
|
|
86
|
+
* and these requests conflict with each other.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
89
|
+
* <p>The specified integration could not be found.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InvalidIntegrationStateFault} (client fault)
|
|
92
|
+
* <p>The integration is in an invalid state and can't perform the requested operation.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link RDSServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from RDS service.</p>
|
|
96
|
+
*
|
|
97
|
+
* @public
|
|
98
|
+
* @example To modify a zero-ETL integration
|
|
99
|
+
* ```javascript
|
|
100
|
+
* // The following example modifies the name of an existing zero-ETL integration.
|
|
101
|
+
* const input = {
|
|
102
|
+
* "IntegrationIdentifier": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
103
|
+
* "IntegrationName": "my-renamed-integration"
|
|
104
|
+
* };
|
|
105
|
+
* const command = new ModifyIntegrationCommand(input);
|
|
106
|
+
* const response = await client.send(command);
|
|
107
|
+
* /* response ==
|
|
108
|
+
* {
|
|
109
|
+
* "CreateTime": "2023-12-28T17:20:20.629Z",
|
|
110
|
+
* "DataFilter": "include: *.*",
|
|
111
|
+
* "IntegrationArn": "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
|
|
112
|
+
* "IntegrationName": "my-renamed-integration",
|
|
113
|
+
* "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
|
114
|
+
* "SourceArn": "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
|
115
|
+
* "Status": "active",
|
|
116
|
+
* "Tags": [],
|
|
117
|
+
* "TargetArn": "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8"
|
|
118
|
+
* }
|
|
119
|
+
* *\/
|
|
120
|
+
* // example id: to-modify-a-zero-etl-integration-1680407173998
|
|
121
|
+
* ```
|
|
122
|
+
*
|
|
123
|
+
*/
|
|
124
|
+
export declare class ModifyIntegrationCommand extends ModifyIntegrationCommand_base {
|
|
125
|
+
}
|
|
@@ -124,6 +124,7 @@ export * from "./ModifyDBSnapshotCommand";
|
|
|
124
124
|
export * from "./ModifyDBSubnetGroupCommand";
|
|
125
125
|
export * from "./ModifyEventSubscriptionCommand";
|
|
126
126
|
export * from "./ModifyGlobalClusterCommand";
|
|
127
|
+
export * from "./ModifyIntegrationCommand";
|
|
127
128
|
export * from "./ModifyOptionGroupCommand";
|
|
128
129
|
export * from "./ModifyTenantDatabaseCommand";
|
|
129
130
|
export * from "./PromoteReadReplicaCommand";
|
|
@@ -10548,6 +10548,19 @@ export interface CreateIntegrationMessage {
|
|
|
10548
10548
|
* @public
|
|
10549
10549
|
*/
|
|
10550
10550
|
Tags?: Tag[];
|
|
10551
|
+
/**
|
|
10552
|
+
* <p>Data filtering options for the integration. For more information, see
|
|
10553
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html">Data filtering for Aurora zero-ETL integrations with Amazon Redshift</a>.
|
|
10554
|
+
* </p>
|
|
10555
|
+
* <p>Valid for: Integrations with Aurora MySQL source DB clusters only</p>
|
|
10556
|
+
* @public
|
|
10557
|
+
*/
|
|
10558
|
+
DataFilter?: string;
|
|
10559
|
+
/**
|
|
10560
|
+
* <p>A description of the integration.</p>
|
|
10561
|
+
* @public
|
|
10562
|
+
*/
|
|
10563
|
+
Description?: string;
|
|
10551
10564
|
}
|
|
10552
10565
|
/**
|
|
10553
10566
|
* <p>An error associated with a zero-ETL integration with Amazon Redshift.</p>
|
|
@@ -10643,6 +10656,18 @@ export interface Integration {
|
|
|
10643
10656
|
* @public
|
|
10644
10657
|
*/
|
|
10645
10658
|
Errors?: IntegrationError[];
|
|
10659
|
+
/**
|
|
10660
|
+
* <p>Data filters for the integration. These filters determine which tables
|
|
10661
|
+
* from the source database are sent to the target Amazon Redshift data warehouse.
|
|
10662
|
+
* </p>
|
|
10663
|
+
* @public
|
|
10664
|
+
*/
|
|
10665
|
+
DataFilter?: string;
|
|
10666
|
+
/**
|
|
10667
|
+
* <p>A description of the integration.</p>
|
|
10668
|
+
* @public
|
|
10669
|
+
*/
|
|
10670
|
+
Description?: string;
|
|
10646
10671
|
}
|
|
10647
10672
|
/**
|
|
10648
10673
|
* <p>The integration you are trying to create already exists.</p>
|
|
@@ -9039,6 +9039,32 @@ export interface ModifyGlobalClusterResult {
|
|
|
9039
9039
|
*/
|
|
9040
9040
|
GlobalCluster?: GlobalCluster;
|
|
9041
9041
|
}
|
|
9042
|
+
/**
|
|
9043
|
+
* @public
|
|
9044
|
+
*/
|
|
9045
|
+
export interface ModifyIntegrationMessage {
|
|
9046
|
+
/**
|
|
9047
|
+
* <p>The unique identifier of the integration to modify.</p>
|
|
9048
|
+
* @public
|
|
9049
|
+
*/
|
|
9050
|
+
IntegrationIdentifier: string | undefined;
|
|
9051
|
+
/**
|
|
9052
|
+
* <p>A new name for the integration.</p>
|
|
9053
|
+
* @public
|
|
9054
|
+
*/
|
|
9055
|
+
IntegrationName?: string;
|
|
9056
|
+
/**
|
|
9057
|
+
* <p>A new data filter for the integration. For more information, see
|
|
9058
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html">Data filtering for Aurora zero-ETL integrations with Amazon Redshift</a>.</p>
|
|
9059
|
+
* @public
|
|
9060
|
+
*/
|
|
9061
|
+
DataFilter?: string;
|
|
9062
|
+
/**
|
|
9063
|
+
* <p>A new description for the integration.</p>
|
|
9064
|
+
* @public
|
|
9065
|
+
*/
|
|
9066
|
+
Description?: string;
|
|
9067
|
+
}
|
|
9042
9068
|
/**
|
|
9043
9069
|
* <p>A list of all available options</p>
|
|
9044
9070
|
* @public
|
|
@@ -126,6 +126,7 @@ import { ModifyDBSnapshotCommandInput, ModifyDBSnapshotCommandOutput } from "../
|
|
|
126
126
|
import { ModifyDBSubnetGroupCommandInput, ModifyDBSubnetGroupCommandOutput } from "../commands/ModifyDBSubnetGroupCommand";
|
|
127
127
|
import { ModifyEventSubscriptionCommandInput, ModifyEventSubscriptionCommandOutput } from "../commands/ModifyEventSubscriptionCommand";
|
|
128
128
|
import { ModifyGlobalClusterCommandInput, ModifyGlobalClusterCommandOutput } from "../commands/ModifyGlobalClusterCommand";
|
|
129
|
+
import { ModifyIntegrationCommandInput, ModifyIntegrationCommandOutput } from "../commands/ModifyIntegrationCommand";
|
|
129
130
|
import { ModifyOptionGroupCommandInput, ModifyOptionGroupCommandOutput } from "../commands/ModifyOptionGroupCommand";
|
|
130
131
|
import { ModifyTenantDatabaseCommandInput, ModifyTenantDatabaseCommandOutput } from "../commands/ModifyTenantDatabaseCommand";
|
|
131
132
|
import { PromoteReadReplicaCommandInput, PromoteReadReplicaCommandOutput } from "../commands/PromoteReadReplicaCommand";
|
|
@@ -665,6 +666,10 @@ export declare const se_ModifyEventSubscriptionCommand: (input: ModifyEventSubsc
|
|
|
665
666
|
* serializeAws_queryModifyGlobalClusterCommand
|
|
666
667
|
*/
|
|
667
668
|
export declare const se_ModifyGlobalClusterCommand: (input: ModifyGlobalClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
669
|
+
/**
|
|
670
|
+
* serializeAws_queryModifyIntegrationCommand
|
|
671
|
+
*/
|
|
672
|
+
export declare const se_ModifyIntegrationCommand: (input: ModifyIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
668
673
|
/**
|
|
669
674
|
* serializeAws_queryModifyOptionGroupCommand
|
|
670
675
|
*/
|
|
@@ -1309,6 +1314,10 @@ export declare const de_ModifyEventSubscriptionCommand: (output: __HttpResponse,
|
|
|
1309
1314
|
* deserializeAws_queryModifyGlobalClusterCommand
|
|
1310
1315
|
*/
|
|
1311
1316
|
export declare const de_ModifyGlobalClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyGlobalClusterCommandOutput>;
|
|
1317
|
+
/**
|
|
1318
|
+
* deserializeAws_queryModifyIntegrationCommand
|
|
1319
|
+
*/
|
|
1320
|
+
export declare const de_ModifyIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyIntegrationCommandOutput>;
|
|
1312
1321
|
/**
|
|
1313
1322
|
* deserializeAws_queryModifyOptionGroupCommand
|
|
1314
1323
|
*/
|
|
@@ -503,6 +503,10 @@ import {
|
|
|
503
503
|
ModifyGlobalClusterCommandInput,
|
|
504
504
|
ModifyGlobalClusterCommandOutput,
|
|
505
505
|
} from "./commands/ModifyGlobalClusterCommand";
|
|
506
|
+
import {
|
|
507
|
+
ModifyIntegrationCommandInput,
|
|
508
|
+
ModifyIntegrationCommandOutput,
|
|
509
|
+
} from "./commands/ModifyIntegrationCommand";
|
|
506
510
|
import {
|
|
507
511
|
ModifyOptionGroupCommandInput,
|
|
508
512
|
ModifyOptionGroupCommandOutput,
|
|
@@ -2380,6 +2384,19 @@ export interface RDS {
|
|
|
2380
2384
|
options: __HttpHandlerOptions,
|
|
2381
2385
|
cb: (err: any, data?: ModifyGlobalClusterCommandOutput) => void
|
|
2382
2386
|
): void;
|
|
2387
|
+
modifyIntegration(
|
|
2388
|
+
args: ModifyIntegrationCommandInput,
|
|
2389
|
+
options?: __HttpHandlerOptions
|
|
2390
|
+
): Promise<ModifyIntegrationCommandOutput>;
|
|
2391
|
+
modifyIntegration(
|
|
2392
|
+
args: ModifyIntegrationCommandInput,
|
|
2393
|
+
cb: (err: any, data?: ModifyIntegrationCommandOutput) => void
|
|
2394
|
+
): void;
|
|
2395
|
+
modifyIntegration(
|
|
2396
|
+
args: ModifyIntegrationCommandInput,
|
|
2397
|
+
options: __HttpHandlerOptions,
|
|
2398
|
+
cb: (err: any, data?: ModifyIntegrationCommandOutput) => void
|
|
2399
|
+
): void;
|
|
2383
2400
|
modifyOptionGroup(
|
|
2384
2401
|
args: ModifyOptionGroupCommandInput,
|
|
2385
2402
|
options?: __HttpHandlerOptions
|
|
@@ -549,6 +549,10 @@ import {
|
|
|
549
549
|
ModifyGlobalClusterCommandInput,
|
|
550
550
|
ModifyGlobalClusterCommandOutput,
|
|
551
551
|
} from "./commands/ModifyGlobalClusterCommand";
|
|
552
|
+
import {
|
|
553
|
+
ModifyIntegrationCommandInput,
|
|
554
|
+
ModifyIntegrationCommandOutput,
|
|
555
|
+
} from "./commands/ModifyIntegrationCommand";
|
|
552
556
|
import {
|
|
553
557
|
ModifyOptionGroupCommandInput,
|
|
554
558
|
ModifyOptionGroupCommandOutput,
|
|
@@ -823,6 +827,7 @@ export type ServiceInputTypes =
|
|
|
823
827
|
| ModifyDBSubnetGroupCommandInput
|
|
824
828
|
| ModifyEventSubscriptionCommandInput
|
|
825
829
|
| ModifyGlobalClusterCommandInput
|
|
830
|
+
| ModifyIntegrationCommandInput
|
|
826
831
|
| ModifyOptionGroupCommandInput
|
|
827
832
|
| ModifyTenantDatabaseCommandInput
|
|
828
833
|
| PromoteReadReplicaCommandInput
|
|
@@ -985,6 +990,7 @@ export type ServiceOutputTypes =
|
|
|
985
990
|
| ModifyDBSubnetGroupCommandOutput
|
|
986
991
|
| ModifyEventSubscriptionCommandOutput
|
|
987
992
|
| ModifyGlobalClusterCommandOutput
|
|
993
|
+
| ModifyIntegrationCommandOutput
|
|
988
994
|
| ModifyOptionGroupCommandOutput
|
|
989
995
|
| ModifyTenantDatabaseCommandOutput
|
|
990
996
|
| PromoteReadReplicaCommandOutput
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { Integration } from "../models/models_0";
|
|
4
|
+
import { ModifyIntegrationMessage } from "../models/models_1";
|
|
5
|
+
import {
|
|
6
|
+
RDSClientResolvedConfig,
|
|
7
|
+
ServiceInputTypes,
|
|
8
|
+
ServiceOutputTypes,
|
|
9
|
+
} from "../RDSClient";
|
|
10
|
+
export { __MetadataBearer, $Command };
|
|
11
|
+
export interface ModifyIntegrationCommandInput
|
|
12
|
+
extends ModifyIntegrationMessage {}
|
|
13
|
+
export interface ModifyIntegrationCommandOutput
|
|
14
|
+
extends Integration,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const ModifyIntegrationCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: ModifyIntegrationCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
ModifyIntegrationCommandInput,
|
|
21
|
+
ModifyIntegrationCommandOutput,
|
|
22
|
+
RDSClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
__0_0: ModifyIntegrationCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
ModifyIntegrationCommandInput,
|
|
30
|
+
ModifyIntegrationCommandOutput,
|
|
31
|
+
RDSClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class ModifyIntegrationCommand extends ModifyIntegrationCommand_base {}
|
|
@@ -124,6 +124,7 @@ export * from "./ModifyDBSnapshotCommand";
|
|
|
124
124
|
export * from "./ModifyDBSubnetGroupCommand";
|
|
125
125
|
export * from "./ModifyEventSubscriptionCommand";
|
|
126
126
|
export * from "./ModifyGlobalClusterCommand";
|
|
127
|
+
export * from "./ModifyIntegrationCommand";
|
|
127
128
|
export * from "./ModifyOptionGroupCommand";
|
|
128
129
|
export * from "./ModifyTenantDatabaseCommand";
|
|
129
130
|
export * from "./PromoteReadReplicaCommand";
|
|
@@ -2051,6 +2051,8 @@ export interface CreateIntegrationMessage {
|
|
|
2051
2051
|
KMSKeyId?: string;
|
|
2052
2052
|
AdditionalEncryptionContext?: Record<string, string>;
|
|
2053
2053
|
Tags?: Tag[];
|
|
2054
|
+
DataFilter?: string;
|
|
2055
|
+
Description?: string;
|
|
2054
2056
|
}
|
|
2055
2057
|
export interface IntegrationError {
|
|
2056
2058
|
ErrorCode: string | undefined;
|
|
@@ -2078,6 +2080,8 @@ export interface Integration {
|
|
|
2078
2080
|
Tags?: Tag[];
|
|
2079
2081
|
CreateTime?: Date;
|
|
2080
2082
|
Errors?: IntegrationError[];
|
|
2083
|
+
DataFilter?: string;
|
|
2084
|
+
Description?: string;
|
|
2081
2085
|
}
|
|
2082
2086
|
export declare class IntegrationAlreadyExistsFault extends __BaseException {
|
|
2083
2087
|
readonly name: "IntegrationAlreadyExistsFault";
|
|
@@ -1355,6 +1355,12 @@ export interface ModifyGlobalClusterMessage {
|
|
|
1355
1355
|
export interface ModifyGlobalClusterResult {
|
|
1356
1356
|
GlobalCluster?: GlobalCluster;
|
|
1357
1357
|
}
|
|
1358
|
+
export interface ModifyIntegrationMessage {
|
|
1359
|
+
IntegrationIdentifier: string | undefined;
|
|
1360
|
+
IntegrationName?: string;
|
|
1361
|
+
DataFilter?: string;
|
|
1362
|
+
Description?: string;
|
|
1363
|
+
}
|
|
1358
1364
|
export interface OptionConfiguration {
|
|
1359
1365
|
OptionName: string | undefined;
|
|
1360
1366
|
Port?: number;
|
|
@@ -507,6 +507,10 @@ import {
|
|
|
507
507
|
ModifyGlobalClusterCommandInput,
|
|
508
508
|
ModifyGlobalClusterCommandOutput,
|
|
509
509
|
} from "../commands/ModifyGlobalClusterCommand";
|
|
510
|
+
import {
|
|
511
|
+
ModifyIntegrationCommandInput,
|
|
512
|
+
ModifyIntegrationCommandOutput,
|
|
513
|
+
} from "../commands/ModifyIntegrationCommand";
|
|
510
514
|
import {
|
|
511
515
|
ModifyOptionGroupCommandInput,
|
|
512
516
|
ModifyOptionGroupCommandOutput,
|
|
@@ -1151,6 +1155,10 @@ export declare const se_ModifyGlobalClusterCommand: (
|
|
|
1151
1155
|
input: ModifyGlobalClusterCommandInput,
|
|
1152
1156
|
context: __SerdeContext
|
|
1153
1157
|
) => Promise<__HttpRequest>;
|
|
1158
|
+
export declare const se_ModifyIntegrationCommand: (
|
|
1159
|
+
input: ModifyIntegrationCommandInput,
|
|
1160
|
+
context: __SerdeContext
|
|
1161
|
+
) => Promise<__HttpRequest>;
|
|
1154
1162
|
export declare const se_ModifyOptionGroupCommand: (
|
|
1155
1163
|
input: ModifyOptionGroupCommandInput,
|
|
1156
1164
|
context: __SerdeContext
|
|
@@ -1795,6 +1803,10 @@ export declare const de_ModifyGlobalClusterCommand: (
|
|
|
1795
1803
|
output: __HttpResponse,
|
|
1796
1804
|
context: __SerdeContext
|
|
1797
1805
|
) => Promise<ModifyGlobalClusterCommandOutput>;
|
|
1806
|
+
export declare const de_ModifyIntegrationCommand: (
|
|
1807
|
+
output: __HttpResponse,
|
|
1808
|
+
context: __SerdeContext
|
|
1809
|
+
) => Promise<ModifyIntegrationCommandOutput>;
|
|
1798
1810
|
export declare const de_ModifyOptionGroupCommand: (
|
|
1799
1811
|
output: __HttpResponse,
|
|
1800
1812
|
context: __SerdeContext
|
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.537.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",
|