@aws-sdk/client-rds 3.621.0 → 3.622.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 +22 -18
- package/dist-es/RDSClient.js +12 -18
- package/dist-es/protocols/Aws_query.js +10 -0
- package/dist-types/RDSClient.d.ts +2 -4
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/dist-types/commands/CreateDBShardGroupCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDBShardGroupCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDBShardGroupsCommand.d.ts +1 -0
- package/dist-types/commands/ModifyDBShardGroupCommand.d.ts +2 -0
- package/dist-types/commands/RebootDBShardGroupCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +123 -74
- package/dist-types/models/models_1.d.ts +39 -22
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/RDSClient.d.ts +6 -8
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
- package/package.json +10 -10
package/dist-cjs/index.js
CHANGED
|
@@ -529,25 +529,27 @@ var _RDSClient = class _RDSClient extends import_smithy_client.Client {
|
|
|
529
529
|
constructor(...[configuration]) {
|
|
530
530
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
531
531
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
532
|
-
const _config_2 = (0,
|
|
533
|
-
const _config_3 = (0,
|
|
534
|
-
const _config_4 = (0,
|
|
535
|
-
const _config_5 = (0,
|
|
536
|
-
const _config_6 = (0,
|
|
532
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
533
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
534
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
535
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
536
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
537
537
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
538
538
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
539
539
|
super(_config_8);
|
|
540
540
|
this.config = _config_8;
|
|
541
|
-
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
542
|
-
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
543
|
-
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
544
541
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
545
542
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
546
543
|
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
544
|
+
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
545
|
+
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
546
|
+
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
547
547
|
this.middlewareStack.use(
|
|
548
548
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
549
|
-
httpAuthSchemeParametersProvider:
|
|
550
|
-
identityProviderConfigProvider:
|
|
549
|
+
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultRDSHttpAuthSchemeParametersProvider,
|
|
550
|
+
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
551
|
+
"aws.auth#sigv4": config.credentials
|
|
552
|
+
})
|
|
551
553
|
})
|
|
552
554
|
);
|
|
553
555
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -560,14 +562,6 @@ var _RDSClient = class _RDSClient extends import_smithy_client.Client {
|
|
|
560
562
|
destroy() {
|
|
561
563
|
super.destroy();
|
|
562
564
|
}
|
|
563
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
564
|
-
return import_httpAuthSchemeProvider.defaultRDSHttpAuthSchemeParametersProvider;
|
|
565
|
-
}
|
|
566
|
-
getIdentityProviderConfigProvider() {
|
|
567
|
-
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
568
|
-
"aws.auth#sigv4": config.credentials
|
|
569
|
-
});
|
|
570
|
-
}
|
|
571
565
|
};
|
|
572
566
|
__name(_RDSClient, "RDSClient");
|
|
573
567
|
var RDSClient = _RDSClient;
|
|
@@ -10008,6 +10002,9 @@ var se_CreateDBShardGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
10008
10002
|
if (input[_MACU] != null) {
|
|
10009
10003
|
entries[_MACU] = (0, import_smithy_client.serializeFloat)(input[_MACU]);
|
|
10010
10004
|
}
|
|
10005
|
+
if (input[_MACUi] != null) {
|
|
10006
|
+
entries[_MACUi] = (0, import_smithy_client.serializeFloat)(input[_MACUi]);
|
|
10007
|
+
}
|
|
10011
10008
|
if (input[_PA] != null) {
|
|
10012
10009
|
entries[_PA] = input[_PA];
|
|
10013
10010
|
}
|
|
@@ -12484,6 +12481,9 @@ var se_ModifyDBShardGroupMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
12484
12481
|
if (input[_MACU] != null) {
|
|
12485
12482
|
entries[_MACU] = (0, import_smithy_client.serializeFloat)(input[_MACU]);
|
|
12486
12483
|
}
|
|
12484
|
+
if (input[_MACUi] != null) {
|
|
12485
|
+
entries[_MACUi] = (0, import_smithy_client.serializeFloat)(input[_MACUi]);
|
|
12486
|
+
}
|
|
12487
12487
|
return entries;
|
|
12488
12488
|
}, "se_ModifyDBShardGroupMessage");
|
|
12489
12489
|
var se_ModifyDBSnapshotAttributeMessage = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -16947,6 +16947,9 @@ var de_DBShardGroup = /* @__PURE__ */ __name((output, context) => {
|
|
|
16947
16947
|
if (output[_MACU] != null) {
|
|
16948
16948
|
contents[_MACU] = (0, import_smithy_client.strictParseFloat)(output[_MACU]);
|
|
16949
16949
|
}
|
|
16950
|
+
if (output[_MACUi] != null) {
|
|
16951
|
+
contents[_MACUi] = (0, import_smithy_client.strictParseFloat)(output[_MACUi]);
|
|
16952
|
+
}
|
|
16950
16953
|
if (output[_CR] != null) {
|
|
16951
16954
|
contents[_CR] = (0, import_smithy_client.strictParseInt32)(output[_CR]);
|
|
16952
16955
|
}
|
|
@@ -20974,6 +20977,7 @@ var _Li = "Links";
|
|
|
20974
20977
|
var _Lim = "Limit";
|
|
20975
20978
|
var _M = "Manifest";
|
|
20976
20979
|
var _MACU = "MaxACU";
|
|
20980
|
+
var _MACUi = "MinACU";
|
|
20977
20981
|
var _MAS = "ModifyActivityStream";
|
|
20978
20982
|
var _MASa = "MaxAllocatedStorage";
|
|
20979
20983
|
var _MAZ = "MultiAZ";
|
package/dist-es/RDSClient.js
CHANGED
|
@@ -17,36 +17,30 @@ export class RDSClient extends __Client {
|
|
|
17
17
|
constructor(...[configuration]) {
|
|
18
18
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
19
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
20
|
-
const _config_2 =
|
|
21
|
-
const _config_3 =
|
|
22
|
-
const _config_4 =
|
|
23
|
-
const _config_5 =
|
|
24
|
-
const _config_6 =
|
|
20
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
21
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
22
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
23
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
24
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
25
25
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
26
26
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
27
27
|
super(_config_8);
|
|
28
28
|
this.config = _config_8;
|
|
29
|
-
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
30
|
-
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
31
|
-
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
32
29
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
30
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
34
31
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
32
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
33
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
34
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
35
35
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
36
|
-
httpAuthSchemeParametersProvider:
|
|
37
|
-
identityProviderConfigProvider:
|
|
36
|
+
httpAuthSchemeParametersProvider: defaultRDSHttpAuthSchemeParametersProvider,
|
|
37
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
38
|
+
"aws.auth#sigv4": config.credentials,
|
|
39
|
+
}),
|
|
38
40
|
}));
|
|
39
41
|
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
40
42
|
}
|
|
41
43
|
destroy() {
|
|
42
44
|
super.destroy();
|
|
43
45
|
}
|
|
44
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
45
|
-
return defaultRDSHttpAuthSchemeParametersProvider;
|
|
46
|
-
}
|
|
47
|
-
getIdentityProviderConfigProvider() {
|
|
48
|
-
return async (config) => new DefaultIdentityProviderConfig({
|
|
49
|
-
"aws.auth#sigv4": config.credentials,
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
46
|
}
|
|
@@ -6713,6 +6713,9 @@ const se_CreateDBShardGroupMessage = (input, context) => {
|
|
|
6713
6713
|
if (input[_MACU] != null) {
|
|
6714
6714
|
entries[_MACU] = __serializeFloat(input[_MACU]);
|
|
6715
6715
|
}
|
|
6716
|
+
if (input[_MACUi] != null) {
|
|
6717
|
+
entries[_MACUi] = __serializeFloat(input[_MACUi]);
|
|
6718
|
+
}
|
|
6716
6719
|
if (input[_PA] != null) {
|
|
6717
6720
|
entries[_PA] = input[_PA];
|
|
6718
6721
|
}
|
|
@@ -9132,6 +9135,9 @@ const se_ModifyDBShardGroupMessage = (input, context) => {
|
|
|
9132
9135
|
if (input[_MACU] != null) {
|
|
9133
9136
|
entries[_MACU] = __serializeFloat(input[_MACU]);
|
|
9134
9137
|
}
|
|
9138
|
+
if (input[_MACUi] != null) {
|
|
9139
|
+
entries[_MACUi] = __serializeFloat(input[_MACUi]);
|
|
9140
|
+
}
|
|
9135
9141
|
return entries;
|
|
9136
9142
|
};
|
|
9137
9143
|
const se_ModifyDBSnapshotAttributeMessage = (input, context) => {
|
|
@@ -13705,6 +13711,9 @@ const de_DBShardGroup = (output, context) => {
|
|
|
13705
13711
|
if (output[_MACU] != null) {
|
|
13706
13712
|
contents[_MACU] = __strictParseFloat(output[_MACU]);
|
|
13707
13713
|
}
|
|
13714
|
+
if (output[_MACUi] != null) {
|
|
13715
|
+
contents[_MACUi] = __strictParseFloat(output[_MACUi]);
|
|
13716
|
+
}
|
|
13708
13717
|
if (output[_CR] != null) {
|
|
13709
13718
|
contents[_CR] = __strictParseInt32(output[_CR]);
|
|
13710
13719
|
}
|
|
@@ -17941,6 +17950,7 @@ const _Li = "Links";
|
|
|
17941
17950
|
const _Lim = "Limit";
|
|
17942
17951
|
const _M = "Manifest";
|
|
17943
17952
|
const _MACU = "MaxACU";
|
|
17953
|
+
const _MACUi = "MinACU";
|
|
17944
17954
|
const _MAS = "ModifyActivityStream";
|
|
17945
17955
|
const _MASa = "MaxAllocatedStorage";
|
|
17946
17956
|
const _MAZ = "MultiAZ";
|
|
@@ -293,7 +293,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
293
293
|
/**
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
export type RDSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
296
|
+
export type RDSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
297
297
|
/**
|
|
298
298
|
* @public
|
|
299
299
|
*
|
|
@@ -304,7 +304,7 @@ export interface RDSClientConfig extends RDSClientConfigType {
|
|
|
304
304
|
/**
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
export type RDSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
307
|
+
export type RDSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
308
308
|
/**
|
|
309
309
|
* @public
|
|
310
310
|
*
|
|
@@ -380,6 +380,4 @@ export declare class RDSClient extends __Client<__HttpHandlerOptions, ServiceInp
|
|
|
380
380
|
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
381
381
|
*/
|
|
382
382
|
destroy(): void;
|
|
383
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
384
|
-
private getIdentityProviderConfigProvider;
|
|
385
383
|
}
|
|
@@ -30,12 +30,12 @@ export declare const defaultRDSHttpAuthSchemeProvider: RDSHttpAuthSchemeProvider
|
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
34
|
* @internal
|
|
35
35
|
*/
|
|
36
36
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
39
39
|
* @internal
|
|
40
40
|
*/
|
|
41
41
|
httpAuthSchemeProvider?: RDSHttpAuthSchemeProvider;
|
|
@@ -45,12 +45,12 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
|
45
45
|
*/
|
|
46
46
|
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
49
|
* @internal
|
|
50
50
|
*/
|
|
51
51
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
54
54
|
* @internal
|
|
55
55
|
*/
|
|
56
56
|
readonly httpAuthSchemeProvider: RDSHttpAuthSchemeProvider;
|
|
@@ -40,6 +40,7 @@ declare const CreateDBShardGroupCommand_base: {
|
|
|
40
40
|
* DBClusterIdentifier: "STRING_VALUE", // required
|
|
41
41
|
* ComputeRedundancy: Number("int"),
|
|
42
42
|
* MaxACU: Number("double"), // required
|
|
43
|
+
* MinACU: Number("double"),
|
|
43
44
|
* PubliclyAccessible: true || false,
|
|
44
45
|
* };
|
|
45
46
|
* const command = new CreateDBShardGroupCommand(input);
|
|
@@ -49,6 +50,7 @@ declare const CreateDBShardGroupCommand_base: {
|
|
|
49
50
|
* // DBShardGroupIdentifier: "STRING_VALUE",
|
|
50
51
|
* // DBClusterIdentifier: "STRING_VALUE",
|
|
51
52
|
* // MaxACU: Number("double"),
|
|
53
|
+
* // MinACU: Number("double"),
|
|
52
54
|
* // ComputeRedundancy: Number("int"),
|
|
53
55
|
* // Status: "STRING_VALUE",
|
|
54
56
|
* // PubliclyAccessible: true || false,
|
|
@@ -44,6 +44,7 @@ declare const DeleteDBShardGroupCommand_base: {
|
|
|
44
44
|
* // DBShardGroupIdentifier: "STRING_VALUE",
|
|
45
45
|
* // DBClusterIdentifier: "STRING_VALUE",
|
|
46
46
|
* // MaxACU: Number("double"),
|
|
47
|
+
* // MinACU: Number("double"),
|
|
47
48
|
* // ComputeRedundancy: Number("int"),
|
|
48
49
|
* // Status: "STRING_VALUE",
|
|
49
50
|
* // PubliclyAccessible: true || false,
|
|
@@ -56,6 +56,7 @@ declare const DescribeDBShardGroupsCommand_base: {
|
|
|
56
56
|
* // DBShardGroupIdentifier: "STRING_VALUE",
|
|
57
57
|
* // DBClusterIdentifier: "STRING_VALUE",
|
|
58
58
|
* // MaxACU: Number("double"),
|
|
59
|
+
* // MinACU: Number("double"),
|
|
59
60
|
* // ComputeRedundancy: Number("int"),
|
|
60
61
|
* // Status: "STRING_VALUE",
|
|
61
62
|
* // PubliclyAccessible: true || false,
|
|
@@ -39,6 +39,7 @@ declare const ModifyDBShardGroupCommand_base: {
|
|
|
39
39
|
* const input = { // ModifyDBShardGroupMessage
|
|
40
40
|
* DBShardGroupIdentifier: "STRING_VALUE", // required
|
|
41
41
|
* MaxACU: Number("double"),
|
|
42
|
+
* MinACU: Number("double"),
|
|
42
43
|
* };
|
|
43
44
|
* const command = new ModifyDBShardGroupCommand(input);
|
|
44
45
|
* const response = await client.send(command);
|
|
@@ -47,6 +48,7 @@ declare const ModifyDBShardGroupCommand_base: {
|
|
|
47
48
|
* // DBShardGroupIdentifier: "STRING_VALUE",
|
|
48
49
|
* // DBClusterIdentifier: "STRING_VALUE",
|
|
49
50
|
* // MaxACU: Number("double"),
|
|
51
|
+
* // MinACU: Number("double"),
|
|
50
52
|
* // ComputeRedundancy: Number("int"),
|
|
51
53
|
* // Status: "STRING_VALUE",
|
|
52
54
|
* // PubliclyAccessible: true || false,
|
|
@@ -47,6 +47,7 @@ declare const RebootDBShardGroupCommand_base: {
|
|
|
47
47
|
* // DBShardGroupIdentifier: "STRING_VALUE",
|
|
48
48
|
* // DBClusterIdentifier: "STRING_VALUE",
|
|
49
49
|
* // MaxACU: Number("double"),
|
|
50
|
+
* // MinACU: Number("double"),
|
|
50
51
|
* // ComputeRedundancy: Number("int"),
|
|
51
52
|
* // Status: "STRING_VALUE",
|
|
52
53
|
* // PubliclyAccessible: true || false,
|
|
@@ -460,8 +460,8 @@ export declare class SubscriptionNotFoundFault extends __BaseException {
|
|
|
460
460
|
/**
|
|
461
461
|
* <p>Metadata assigned to an Amazon RDS resource consisting of a key-value pair.</p>
|
|
462
462
|
* <p>For more information, see
|
|
463
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS
|
|
464
|
-
*
|
|
463
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
464
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
465
465
|
* </p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
@@ -1278,9 +1278,11 @@ export interface CopyDBClusterParameterGroupMessage {
|
|
|
1278
1278
|
*/
|
|
1279
1279
|
TargetDBClusterParameterGroupDescription: string | undefined;
|
|
1280
1280
|
/**
|
|
1281
|
-
* <p>A list of tags
|
|
1282
|
-
*
|
|
1283
|
-
*
|
|
1281
|
+
* <p>A list of tags.</p>
|
|
1282
|
+
* <p>For more information, see
|
|
1283
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
1284
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
1285
|
+
* </p>
|
|
1284
1286
|
* @public
|
|
1285
1287
|
*/
|
|
1286
1288
|
Tags?: Tag[];
|
|
@@ -1483,9 +1485,11 @@ export interface CopyDBClusterSnapshotMessage {
|
|
|
1483
1485
|
*/
|
|
1484
1486
|
CopyTags?: boolean;
|
|
1485
1487
|
/**
|
|
1486
|
-
* <p>A list of tags
|
|
1487
|
-
*
|
|
1488
|
-
*
|
|
1488
|
+
* <p>A list of tags.</p>
|
|
1489
|
+
* <p>For more information, see
|
|
1490
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
1491
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
1492
|
+
* </p>
|
|
1489
1493
|
* @public
|
|
1490
1494
|
*/
|
|
1491
1495
|
Tags?: Tag[];
|
|
@@ -1622,9 +1626,11 @@ export interface DBClusterSnapshot {
|
|
|
1622
1626
|
*/
|
|
1623
1627
|
IAMDatabaseAuthenticationEnabled?: boolean;
|
|
1624
1628
|
/**
|
|
1625
|
-
* <p>A list of tags
|
|
1626
|
-
*
|
|
1627
|
-
*
|
|
1629
|
+
* <p>A list of tags.</p>
|
|
1630
|
+
* <p>For more information, see
|
|
1631
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
1632
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
1633
|
+
* </p>
|
|
1628
1634
|
* @public
|
|
1629
1635
|
*/
|
|
1630
1636
|
TagList?: Tag[];
|
|
@@ -1773,9 +1779,11 @@ export interface CopyDBParameterGroupMessage {
|
|
|
1773
1779
|
*/
|
|
1774
1780
|
TargetDBParameterGroupDescription: string | undefined;
|
|
1775
1781
|
/**
|
|
1776
|
-
* <p>A list of tags
|
|
1777
|
-
*
|
|
1778
|
-
*
|
|
1782
|
+
* <p>A list of tags.</p>
|
|
1783
|
+
* <p>For more information, see
|
|
1784
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
1785
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
1786
|
+
* </p>
|
|
1779
1787
|
* @public
|
|
1780
1788
|
*/
|
|
1781
1789
|
Tags?: Tag[];
|
|
@@ -1888,9 +1896,11 @@ export interface CopyDBSnapshotMessage {
|
|
|
1888
1896
|
*/
|
|
1889
1897
|
KmsKeyId?: string;
|
|
1890
1898
|
/**
|
|
1891
|
-
* <p>A list of tags
|
|
1892
|
-
*
|
|
1893
|
-
*
|
|
1899
|
+
* <p>A list of tags.</p>
|
|
1900
|
+
* <p>For more information, see
|
|
1901
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
1902
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
1903
|
+
* </p>
|
|
1894
1904
|
* @public
|
|
1895
1905
|
*/
|
|
1896
1906
|
Tags?: Tag[];
|
|
@@ -2225,9 +2235,11 @@ export interface DBSnapshot {
|
|
|
2225
2235
|
*/
|
|
2226
2236
|
DbiResourceId?: string;
|
|
2227
2237
|
/**
|
|
2228
|
-
* <p>A list of tags
|
|
2229
|
-
*
|
|
2230
|
-
*
|
|
2238
|
+
* <p>A list of tags.</p>
|
|
2239
|
+
* <p>For more information, see
|
|
2240
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
2241
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
2242
|
+
* </p>
|
|
2231
2243
|
* @public
|
|
2232
2244
|
*/
|
|
2233
2245
|
TagList?: Tag[];
|
|
@@ -2369,9 +2381,11 @@ export interface CopyOptionGroupMessage {
|
|
|
2369
2381
|
*/
|
|
2370
2382
|
TargetOptionGroupDescription: string | undefined;
|
|
2371
2383
|
/**
|
|
2372
|
-
* <p>A list of tags
|
|
2373
|
-
*
|
|
2374
|
-
*
|
|
2384
|
+
* <p>A list of tags.</p>
|
|
2385
|
+
* <p>For more information, see
|
|
2386
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
2387
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
2388
|
+
* </p>
|
|
2375
2389
|
* @public
|
|
2376
2390
|
*/
|
|
2377
2391
|
Tags?: Tag[];
|
|
@@ -2922,9 +2936,11 @@ export interface BlueGreenDeployment {
|
|
|
2922
2936
|
*/
|
|
2923
2937
|
DeleteTime?: Date;
|
|
2924
2938
|
/**
|
|
2925
|
-
* <p>A list of tags
|
|
2926
|
-
*
|
|
2927
|
-
*
|
|
2939
|
+
* <p>A list of tags.</p>
|
|
2940
|
+
* <p>For more information, see
|
|
2941
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
2942
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
2943
|
+
* </p>
|
|
2928
2944
|
* @public
|
|
2929
2945
|
*/
|
|
2930
2946
|
TagList?: Tag[];
|
|
@@ -3130,9 +3146,11 @@ export interface CreateCustomDBEngineVersionMessage {
|
|
|
3130
3146
|
*/
|
|
3131
3147
|
Manifest?: string;
|
|
3132
3148
|
/**
|
|
3133
|
-
* <p>A list of tags
|
|
3134
|
-
*
|
|
3135
|
-
*
|
|
3149
|
+
* <p>A list of tags.</p>
|
|
3150
|
+
* <p>For more information, see
|
|
3151
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
3152
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
3153
|
+
* </p>
|
|
3136
3154
|
* @public
|
|
3137
3155
|
*/
|
|
3138
3156
|
Tags?: Tag[];
|
|
@@ -3449,9 +3467,11 @@ export interface DBEngineVersion {
|
|
|
3449
3467
|
*/
|
|
3450
3468
|
CreateTime?: Date;
|
|
3451
3469
|
/**
|
|
3452
|
-
* <p>A list of tags
|
|
3453
|
-
*
|
|
3454
|
-
*
|
|
3470
|
+
* <p>A list of tags.</p>
|
|
3471
|
+
* <p>For more information, see
|
|
3472
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
3473
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
3474
|
+
* </p>
|
|
3455
3475
|
* @public
|
|
3456
3476
|
*/
|
|
3457
3477
|
TagList?: Tag[];
|
|
@@ -5241,9 +5261,11 @@ export interface DBCluster {
|
|
|
5241
5261
|
*/
|
|
5242
5262
|
DomainMemberships?: DomainMembership[];
|
|
5243
5263
|
/**
|
|
5244
|
-
* <p>A list of tags
|
|
5245
|
-
*
|
|
5246
|
-
*
|
|
5264
|
+
* <p>A list of tags.</p>
|
|
5265
|
+
* <p>For more information, see
|
|
5266
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
5267
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
5268
|
+
* </p>
|
|
5247
5269
|
* @public
|
|
5248
5270
|
*/
|
|
5249
5271
|
TagList?: Tag[];
|
|
@@ -8195,9 +8217,11 @@ export interface DBInstance {
|
|
|
8195
8217
|
*/
|
|
8196
8218
|
MaxAllocatedStorage?: number;
|
|
8197
8219
|
/**
|
|
8198
|
-
* <p>A list of tags
|
|
8199
|
-
*
|
|
8200
|
-
*
|
|
8220
|
+
* <p>A list of tags.</p>
|
|
8221
|
+
* <p>For more information, see
|
|
8222
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
8223
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
8224
|
+
* </p>
|
|
8201
8225
|
* @public
|
|
8202
8226
|
*/
|
|
8203
8227
|
TagList?: Tag[];
|
|
@@ -8593,9 +8617,11 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
8593
8617
|
*/
|
|
8594
8618
|
PubliclyAccessible?: boolean;
|
|
8595
8619
|
/**
|
|
8596
|
-
* <p>A list of tags
|
|
8597
|
-
*
|
|
8598
|
-
*
|
|
8620
|
+
* <p>A list of tags.</p>
|
|
8621
|
+
* <p>For more information, see
|
|
8622
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
8623
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
8624
|
+
* </p>
|
|
8599
8625
|
* @public
|
|
8600
8626
|
*/
|
|
8601
8627
|
Tags?: Tag[];
|
|
@@ -9618,9 +9644,11 @@ export interface CreateDBProxyEndpointRequest {
|
|
|
9618
9644
|
*/
|
|
9619
9645
|
TargetRole?: DBProxyEndpointTargetRole;
|
|
9620
9646
|
/**
|
|
9621
|
-
* <p>A list of tags
|
|
9622
|
-
*
|
|
9623
|
-
*
|
|
9647
|
+
* <p>A list of tags.</p>
|
|
9648
|
+
* <p>For more information, see
|
|
9649
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
9650
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
9651
|
+
* </p>
|
|
9624
9652
|
* @public
|
|
9625
9653
|
*/
|
|
9626
9654
|
Tags?: Tag[];
|
|
@@ -9884,6 +9912,11 @@ export interface CreateDBShardGroupMessage {
|
|
|
9884
9912
|
* @public
|
|
9885
9913
|
*/
|
|
9886
9914
|
MaxACU: number | undefined;
|
|
9915
|
+
/**
|
|
9916
|
+
* <p>The minimum capacity of the DB shard group in Aurora capacity units (ACUs).</p>
|
|
9917
|
+
* @public
|
|
9918
|
+
*/
|
|
9919
|
+
MinACU?: number;
|
|
9887
9920
|
/**
|
|
9888
9921
|
* <p>Specifies whether the DB shard group is publicly accessible.</p>
|
|
9889
9922
|
* <p>When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from
|
|
@@ -9938,6 +9971,11 @@ export interface DBShardGroup {
|
|
|
9938
9971
|
* @public
|
|
9939
9972
|
*/
|
|
9940
9973
|
MaxACU?: number;
|
|
9974
|
+
/**
|
|
9975
|
+
* <p>The minimum capacity of the DB shard group in Aurora capacity units (ACUs).</p>
|
|
9976
|
+
* @public
|
|
9977
|
+
*/
|
|
9978
|
+
MinACU?: number;
|
|
9941
9979
|
/**
|
|
9942
9980
|
* <p>Specifies whether to create standby instances for the DB shard group. Valid values are the following:</p>
|
|
9943
9981
|
* <ul>
|
|
@@ -10066,9 +10104,11 @@ export interface CreateDBSnapshotMessage {
|
|
|
10066
10104
|
*/
|
|
10067
10105
|
DBInstanceIdentifier: string | undefined;
|
|
10068
10106
|
/**
|
|
10069
|
-
* <p>A list of tags
|
|
10070
|
-
*
|
|
10071
|
-
*
|
|
10107
|
+
* <p>A list of tags.</p>
|
|
10108
|
+
* <p>For more information, see
|
|
10109
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
10110
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
10111
|
+
* </p>
|
|
10072
10112
|
* @public
|
|
10073
10113
|
*/
|
|
10074
10114
|
Tags?: Tag[];
|
|
@@ -10260,9 +10300,11 @@ export interface CreateEventSubscriptionMessage {
|
|
|
10260
10300
|
*/
|
|
10261
10301
|
Enabled?: boolean;
|
|
10262
10302
|
/**
|
|
10263
|
-
* <p>A list of tags
|
|
10264
|
-
*
|
|
10265
|
-
*
|
|
10303
|
+
* <p>A list of tags.</p>
|
|
10304
|
+
* <p>For more information, see
|
|
10305
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
10306
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
10307
|
+
* </p>
|
|
10266
10308
|
* @public
|
|
10267
10309
|
*/
|
|
10268
10310
|
Tags?: Tag[];
|
|
@@ -10707,9 +10749,11 @@ export interface CreateIntegrationMessage {
|
|
|
10707
10749
|
*/
|
|
10708
10750
|
AdditionalEncryptionContext?: Record<string, string>;
|
|
10709
10751
|
/**
|
|
10710
|
-
* <p>A list of tags
|
|
10711
|
-
*
|
|
10712
|
-
*
|
|
10752
|
+
* <p>A list of tags.</p>
|
|
10753
|
+
* <p>For more information, see
|
|
10754
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
10755
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
10756
|
+
* </p>
|
|
10713
10757
|
* @public
|
|
10714
10758
|
*/
|
|
10715
10759
|
Tags?: Tag[];
|
|
@@ -10804,9 +10848,11 @@ export interface Integration {
|
|
|
10804
10848
|
*/
|
|
10805
10849
|
Status?: IntegrationStatus;
|
|
10806
10850
|
/**
|
|
10807
|
-
* <p>A list of tags
|
|
10808
|
-
*
|
|
10809
|
-
*
|
|
10851
|
+
* <p>A list of tags.</p>
|
|
10852
|
+
* <p>For more information, see
|
|
10853
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
10854
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
10855
|
+
* </p>
|
|
10810
10856
|
* @public
|
|
10811
10857
|
*/
|
|
10812
10858
|
Tags?: Tag[];
|
|
@@ -11059,9 +11105,11 @@ export interface CreateTenantDatabaseMessage {
|
|
|
11059
11105
|
*/
|
|
11060
11106
|
NcharCharacterSetName?: string;
|
|
11061
11107
|
/**
|
|
11062
|
-
* <p>A list of tags
|
|
11063
|
-
*
|
|
11064
|
-
*
|
|
11108
|
+
* <p>A list of tags.</p>
|
|
11109
|
+
* <p>For more information, see
|
|
11110
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
11111
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
11112
|
+
* </p>
|
|
11065
11113
|
* @public
|
|
11066
11114
|
*/
|
|
11067
11115
|
Tags?: Tag[];
|
|
@@ -11150,9 +11198,11 @@ export interface TenantDatabase {
|
|
|
11150
11198
|
*/
|
|
11151
11199
|
PendingModifiedValues?: TenantDatabasePendingModifiedValues;
|
|
11152
11200
|
/**
|
|
11153
|
-
* <p>A list of tags
|
|
11154
|
-
*
|
|
11155
|
-
*
|
|
11201
|
+
* <p>A list of tags.</p>
|
|
11202
|
+
* <p>For more information, see
|
|
11203
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
11204
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
11205
|
+
* </p>
|
|
11156
11206
|
* @public
|
|
11157
11207
|
*/
|
|
11158
11208
|
TagList?: Tag[];
|
|
@@ -11327,12 +11377,14 @@ export interface DeleteDBClusterMessage {
|
|
|
11327
11377
|
*/
|
|
11328
11378
|
DBClusterIdentifier: string | undefined;
|
|
11329
11379
|
/**
|
|
11330
|
-
* <p>Specifies whether to skip the creation of a final DB cluster snapshot before
|
|
11331
|
-
*
|
|
11332
|
-
*
|
|
11333
|
-
*
|
|
11380
|
+
* <p>Specifies whether to skip the creation of a final DB cluster snapshot before RDS
|
|
11381
|
+
* deletes the DB cluster. If you set this value to <code>true</code>, RDS doesn't create a
|
|
11382
|
+
* final DB cluster snapshot. If you set this value to <code>false</code> or don't specify
|
|
11383
|
+
* it, RDS creates a DB cluster snapshot before it deletes the DB cluster. By default, this
|
|
11384
|
+
* parameter is disabled, so RDS creates a final DB cluster snapshot.</p>
|
|
11334
11385
|
* <note>
|
|
11335
|
-
* <p>
|
|
11386
|
+
* <p>If <code>SkipFinalSnapshot</code> is disabled, you must specify a value for the
|
|
11387
|
+
* <code>FinalDBSnapshotIdentifier</code> parameter.</p>
|
|
11336
11388
|
* </note>
|
|
11337
11389
|
* @public
|
|
11338
11390
|
*/
|
|
@@ -11341,8 +11393,9 @@ export interface DeleteDBClusterMessage {
|
|
|
11341
11393
|
* <p>The DB cluster snapshot identifier of the new DB cluster snapshot created when <code>SkipFinalSnapshot</code>
|
|
11342
11394
|
* is disabled.</p>
|
|
11343
11395
|
* <note>
|
|
11344
|
-
* <p>
|
|
11345
|
-
*
|
|
11396
|
+
* <p>If you specify this parameter and also skip the creation of a final DB cluster
|
|
11397
|
+
* snapshot with the <code>SkipFinalShapshot</code> parameter, the request results in
|
|
11398
|
+
* an error.</p>
|
|
11346
11399
|
* </note>
|
|
11347
11400
|
* <p>Constraints:</p>
|
|
11348
11401
|
* <ul>
|
|
@@ -11362,11 +11415,7 @@ export interface DeleteDBClusterMessage {
|
|
|
11362
11415
|
/**
|
|
11363
11416
|
* <p>Specifies whether to remove automated backups immediately after the DB
|
|
11364
11417
|
* cluster is deleted. This parameter isn't case-sensitive. The default is to remove
|
|
11365
|
-
* automated backups immediately after the DB cluster is deleted
|
|
11366
|
-
* </p>
|
|
11367
|
-
* <note>
|
|
11368
|
-
* <p>You must delete automated backups for Amazon RDS Multi-AZ DB clusters. For more information about managing automated backups for RDS Multi-AZ DB clusters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ManagingAutomatedBackups.html">Managing automated backups</a>.</p>
|
|
11369
|
-
* </note>
|
|
11418
|
+
* automated backups immediately after the DB cluster is deleted.</p>
|
|
11370
11419
|
* @public
|
|
11371
11420
|
*/
|
|
11372
11421
|
DeleteAutomatedBackups?: boolean;
|
|
@@ -782,7 +782,7 @@ export interface DescribeDBClusterParametersMessage {
|
|
|
782
782
|
* <ul>
|
|
783
783
|
* <li>
|
|
784
784
|
* <p>
|
|
785
|
-
* <code>
|
|
785
|
+
* <code>customer</code>
|
|
786
786
|
* </p>
|
|
787
787
|
* </li>
|
|
788
788
|
* <li>
|
|
@@ -3386,9 +3386,11 @@ export interface DBSnapshotTenantDatabase {
|
|
|
3386
3386
|
*/
|
|
3387
3387
|
NcharCharacterSetName?: string;
|
|
3388
3388
|
/**
|
|
3389
|
-
* <p>A list of tags
|
|
3390
|
-
*
|
|
3391
|
-
*
|
|
3389
|
+
* <p>A list of tags.</p>
|
|
3390
|
+
* <p>For more information, see
|
|
3391
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
3392
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
3393
|
+
* </p>
|
|
3392
3394
|
* @public
|
|
3393
3395
|
*/
|
|
3394
3396
|
TagList?: Tag[];
|
|
@@ -8801,6 +8803,11 @@ export interface ModifyDBShardGroupMessage {
|
|
|
8801
8803
|
* @public
|
|
8802
8804
|
*/
|
|
8803
8805
|
MaxACU?: number;
|
|
8806
|
+
/**
|
|
8807
|
+
* <p>The minimum capacity of the DB shard group in Aurora capacity units (ACUs).</p>
|
|
8808
|
+
* @public
|
|
8809
|
+
*/
|
|
8810
|
+
MinACU?: number;
|
|
8804
8811
|
}
|
|
8805
8812
|
/**
|
|
8806
8813
|
* @public
|
|
@@ -9137,7 +9144,7 @@ export interface ModifyIntegrationMessage {
|
|
|
9137
9144
|
Description?: string;
|
|
9138
9145
|
}
|
|
9139
9146
|
/**
|
|
9140
|
-
* <p>A list of all available options
|
|
9147
|
+
* <p>A list of all available options for an option group.</p>
|
|
9141
9148
|
* @public
|
|
9142
9149
|
*/
|
|
9143
9150
|
export interface OptionConfiguration {
|
|
@@ -9157,12 +9164,12 @@ export interface OptionConfiguration {
|
|
|
9157
9164
|
*/
|
|
9158
9165
|
OptionVersion?: string;
|
|
9159
9166
|
/**
|
|
9160
|
-
* <p>A list of
|
|
9167
|
+
* <p>A list of DB security groups used for this option.</p>
|
|
9161
9168
|
* @public
|
|
9162
9169
|
*/
|
|
9163
9170
|
DBSecurityGroupMemberships?: string[];
|
|
9164
9171
|
/**
|
|
9165
|
-
* <p>A list of
|
|
9172
|
+
* <p>A list of VPC security group names used for this option.</p>
|
|
9166
9173
|
* @public
|
|
9167
9174
|
*/
|
|
9168
9175
|
VpcSecurityGroupMemberships?: string[];
|
|
@@ -9438,9 +9445,11 @@ export interface PurchaseReservedDBInstancesOfferingMessage {
|
|
|
9438
9445
|
*/
|
|
9439
9446
|
DBInstanceCount?: number;
|
|
9440
9447
|
/**
|
|
9441
|
-
* <p>A list of tags
|
|
9442
|
-
*
|
|
9443
|
-
*
|
|
9448
|
+
* <p>A list of tags.</p>
|
|
9449
|
+
* <p>For more information, see
|
|
9450
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
9451
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
9452
|
+
* </p>
|
|
9444
9453
|
* @public
|
|
9445
9454
|
*/
|
|
9446
9455
|
Tags?: Tag[];
|
|
@@ -10046,9 +10055,11 @@ export interface RestoreDBClusterFromS3Message {
|
|
|
10046
10055
|
*/
|
|
10047
10056
|
PreferredMaintenanceWindow?: string;
|
|
10048
10057
|
/**
|
|
10049
|
-
* <p>A list of tags
|
|
10050
|
-
*
|
|
10051
|
-
*
|
|
10058
|
+
* <p>A list of tags.</p>
|
|
10059
|
+
* <p>For more information, see
|
|
10060
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
10061
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
10062
|
+
* </p>
|
|
10052
10063
|
* @public
|
|
10053
10064
|
*/
|
|
10054
10065
|
Tags?: Tag[];
|
|
@@ -10877,9 +10888,11 @@ export interface RestoreDBClusterToPointInTimeMessage {
|
|
|
10877
10888
|
*/
|
|
10878
10889
|
VpcSecurityGroupIds?: string[];
|
|
10879
10890
|
/**
|
|
10880
|
-
* <p>A list of tags
|
|
10881
|
-
*
|
|
10882
|
-
*
|
|
10891
|
+
* <p>A list of tags.</p>
|
|
10892
|
+
* <p>For more information, see
|
|
10893
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
10894
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
10895
|
+
* </p>
|
|
10883
10896
|
* @public
|
|
10884
10897
|
*/
|
|
10885
10898
|
Tags?: Tag[];
|
|
@@ -11442,9 +11455,11 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
|
|
|
11442
11455
|
*/
|
|
11443
11456
|
OptionGroupName?: string;
|
|
11444
11457
|
/**
|
|
11445
|
-
* <p>A list of tags
|
|
11446
|
-
*
|
|
11447
|
-
*
|
|
11458
|
+
* <p>A list of tags.</p>
|
|
11459
|
+
* <p>For more information, see
|
|
11460
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
11461
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
11462
|
+
* </p>
|
|
11448
11463
|
* @public
|
|
11449
11464
|
*/
|
|
11450
11465
|
Tags?: Tag[];
|
|
@@ -12690,9 +12705,11 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
12690
12705
|
*/
|
|
12691
12706
|
CopyTagsToSnapshot?: boolean;
|
|
12692
12707
|
/**
|
|
12693
|
-
* <p>A list of tags
|
|
12694
|
-
*
|
|
12695
|
-
*
|
|
12708
|
+
* <p>A list of tags.</p>
|
|
12709
|
+
* <p>For more information, see
|
|
12710
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
|
|
12711
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
|
|
12712
|
+
* </p>
|
|
12696
12713
|
* @public
|
|
12697
12714
|
*/
|
|
12698
12715
|
Tags?: Tag[];
|
|
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
35
|
}) => import("@smithy/types").EndpointV2;
|
|
34
36
|
tls?: boolean | undefined;
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RDSHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
35
|
}) => import("@smithy/types").EndpointV2;
|
|
34
36
|
tls?: boolean | undefined;
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RDSHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -26,13 +26,13 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
26
26
|
logger: import("@smithy/types").Logger;
|
|
27
27
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
28
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
30
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
29
31
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
30
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
32
34
|
}) => import("@smithy/types").EndpointV2;
|
|
33
35
|
tls?: boolean | undefined;
|
|
34
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
36
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
37
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RDSHttpAuthSchemeProvider;
|
|
38
38
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -1055,11 +1055,11 @@ export type RDSClientConfigType = Partial<
|
|
|
1055
1055
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
1056
1056
|
> &
|
|
1057
1057
|
ClientDefaults &
|
|
1058
|
-
RegionInputConfig &
|
|
1059
|
-
EndpointInputConfig<EndpointParameters> &
|
|
1060
|
-
HostHeaderInputConfig &
|
|
1061
1058
|
UserAgentInputConfig &
|
|
1062
1059
|
RetryInputConfig &
|
|
1060
|
+
RegionInputConfig &
|
|
1061
|
+
HostHeaderInputConfig &
|
|
1062
|
+
EndpointInputConfig<EndpointParameters> &
|
|
1063
1063
|
HttpAuthSchemeInputConfig &
|
|
1064
1064
|
ClientInputEndpointParameters;
|
|
1065
1065
|
export interface RDSClientConfig extends RDSClientConfigType {}
|
|
@@ -1067,11 +1067,11 @@ export type RDSClientResolvedConfigType =
|
|
|
1067
1067
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
1068
1068
|
Required<ClientDefaults> &
|
|
1069
1069
|
RuntimeExtensionsConfig &
|
|
1070
|
-
RegionResolvedConfig &
|
|
1071
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
1072
|
-
HostHeaderResolvedConfig &
|
|
1073
1070
|
UserAgentResolvedConfig &
|
|
1074
1071
|
RetryResolvedConfig &
|
|
1072
|
+
RegionResolvedConfig &
|
|
1073
|
+
HostHeaderResolvedConfig &
|
|
1074
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
1075
1075
|
HttpAuthSchemeResolvedConfig &
|
|
1076
1076
|
ClientResolvedEndpointParameters;
|
|
1077
1077
|
export interface RDSClientResolvedConfig extends RDSClientResolvedConfigType {}
|
|
@@ -1084,6 +1084,4 @@ export declare class RDSClient extends __Client<
|
|
|
1084
1084
|
readonly config: RDSClientResolvedConfig;
|
|
1085
1085
|
constructor(...[configuration]: __CheckOptionalClientConfig<RDSClientConfig>);
|
|
1086
1086
|
destroy(): void;
|
|
1087
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
1088
|
-
private getIdentityProviderConfigProvider;
|
|
1089
1087
|
}
|
|
@@ -1835,6 +1835,7 @@ export interface CreateDBShardGroupMessage {
|
|
|
1835
1835
|
DBClusterIdentifier: string | undefined;
|
|
1836
1836
|
ComputeRedundancy?: number;
|
|
1837
1837
|
MaxACU: number | undefined;
|
|
1838
|
+
MinACU?: number;
|
|
1838
1839
|
PubliclyAccessible?: boolean;
|
|
1839
1840
|
}
|
|
1840
1841
|
export interface DBShardGroup {
|
|
@@ -1842,6 +1843,7 @@ export interface DBShardGroup {
|
|
|
1842
1843
|
DBShardGroupIdentifier?: string;
|
|
1843
1844
|
DBClusterIdentifier?: string;
|
|
1844
1845
|
MaxACU?: number;
|
|
1846
|
+
MinACU?: number;
|
|
1845
1847
|
ComputeRedundancy?: number;
|
|
1846
1848
|
Status?: string;
|
|
1847
1849
|
PubliclyAccessible?: boolean;
|
|
@@ -1304,6 +1304,7 @@ export interface ModifyDBRecommendationMessage {
|
|
|
1304
1304
|
export interface ModifyDBShardGroupMessage {
|
|
1305
1305
|
DBShardGroupIdentifier: string | undefined;
|
|
1306
1306
|
MaxACU?: number;
|
|
1307
|
+
MinACU?: number;
|
|
1307
1308
|
}
|
|
1308
1309
|
export interface ModifyDBSnapshotMessage {
|
|
1309
1310
|
DBSnapshotIdentifier: string | undefined;
|
|
@@ -32,6 +32,11 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
32
32
|
serviceId: string;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
34
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?:
|
|
37
|
+
| import("@smithy/types").RetryStrategy
|
|
38
|
+
| import("@smithy/types").RetryStrategyV2
|
|
39
|
+
| undefined;
|
|
35
40
|
endpoint?:
|
|
36
41
|
| ((
|
|
37
42
|
| string
|
|
@@ -56,11 +61,6 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
56
61
|
}
|
|
57
62
|
) => import("@smithy/types").EndpointV2;
|
|
58
63
|
tls?: boolean | undefined;
|
|
59
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2
|
|
63
|
-
| undefined;
|
|
64
64
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
65
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RDSHttpAuthSchemeProvider;
|
|
66
66
|
credentials?:
|
|
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
38
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
retryStrategy?:
|
|
41
|
+
| import("@smithy/types").RetryStrategy
|
|
42
|
+
| import("@smithy/types").RetryStrategyV2
|
|
43
|
+
| undefined;
|
|
39
44
|
endpoint?:
|
|
40
45
|
| ((
|
|
41
46
|
| string
|
|
@@ -60,11 +65,6 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
60
65
|
}
|
|
61
66
|
) => import("@smithy/types").EndpointV2;
|
|
62
67
|
tls?: boolean | undefined;
|
|
63
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2
|
|
67
|
-
| undefined;
|
|
68
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RDSHttpAuthSchemeProvider;
|
|
70
70
|
credentials?:
|
|
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
36
36
|
| import("@smithy/types").Provider<
|
|
37
37
|
import("@smithy/smithy-client").DefaultsMode
|
|
38
38
|
>;
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
retryStrategy?:
|
|
41
|
+
| import("@smithy/types").RetryStrategy
|
|
42
|
+
| import("@smithy/types").RetryStrategyV2
|
|
43
|
+
| undefined;
|
|
39
44
|
endpoint?:
|
|
40
45
|
| string
|
|
41
46
|
| import("@smithy/types").Endpoint
|
|
@@ -50,11 +55,6 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
|
|
|
50
55
|
}
|
|
51
56
|
) => import("@smithy/types").EndpointV2;
|
|
52
57
|
tls?: boolean | undefined;
|
|
53
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
54
|
-
retryStrategy?:
|
|
55
|
-
| import("@smithy/types").RetryStrategy
|
|
56
|
-
| import("@smithy/types").RetryStrategyV2
|
|
57
|
-
| undefined;
|
|
58
58
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
59
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RDSHttpAuthSchemeProvider;
|
|
60
60
|
credentials?:
|
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.622.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,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.622.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.622.0",
|
|
25
|
+
"@aws-sdk/core": "3.622.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.622.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
@@ -35,26 +35,26 @@
|
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
37
37
|
"@smithy/config-resolver": "^3.0.5",
|
|
38
|
-
"@smithy/core": "^2.3.
|
|
38
|
+
"@smithy/core": "^2.3.2",
|
|
39
39
|
"@smithy/fetch-http-handler": "^3.2.4",
|
|
40
40
|
"@smithy/hash-node": "^3.0.3",
|
|
41
41
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
42
42
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
43
43
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
44
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
45
45
|
"@smithy/middleware-serde": "^3.0.3",
|
|
46
46
|
"@smithy/middleware-stack": "^3.0.3",
|
|
47
47
|
"@smithy/node-config-provider": "^3.1.4",
|
|
48
48
|
"@smithy/node-http-handler": "^3.1.4",
|
|
49
49
|
"@smithy/protocol-http": "^4.1.0",
|
|
50
|
-
"@smithy/smithy-client": "^3.1.
|
|
50
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
51
51
|
"@smithy/types": "^3.3.0",
|
|
52
52
|
"@smithy/url-parser": "^3.0.3",
|
|
53
53
|
"@smithy/util-base64": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^3.0.14",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
58
58
|
"@smithy/util-endpoints": "^2.0.5",
|
|
59
59
|
"@smithy/util-middleware": "^3.0.3",
|
|
60
60
|
"@smithy/util-retry": "^3.0.3",
|