@aws-sdk/client-rds 3.907.0 → 3.910.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.
|
@@ -32,19 +32,11 @@ declare const ModifyDBClusterParameterGroupCommand_base: {
|
|
|
32
32
|
* and <code>ApplyMethod</code>. A maximum of 20
|
|
33
33
|
* parameters can be modified in a single request.</p>
|
|
34
34
|
* <important>
|
|
35
|
-
* <p>
|
|
36
|
-
*
|
|
37
|
-
* group. This allows Amazon RDS to fully complete the create operation before the parameter
|
|
38
|
-
* group is used as the default for a new DB cluster. This is especially important for parameters
|
|
39
|
-
* that are critical when creating the default database for a DB cluster, such as the character set
|
|
40
|
-
* for the default database defined by the <code>character_set_database</code> parameter. You can use the
|
|
35
|
+
* <p>There are two types of parameters - dynamic parameters and static parameters. Changes to dynamic parameters are applied to the DB cluster immediately without a reboot.
|
|
36
|
+
* Changes to static parameters are applied only after the DB cluster is rebooted, which can be done using <code>RebootDBCluster</code> operation. You can use the
|
|
41
37
|
* <i>Parameter Groups</i> option of the <a href="https://console.aws.amazon.com/rds/">Amazon RDS console</a> or the
|
|
42
38
|
* <code>DescribeDBClusterParameters</code> operation to verify
|
|
43
39
|
* that your DB cluster parameter group has been created or modified.</p>
|
|
44
|
-
* <p>If the modified DB cluster parameter group is used by an Aurora Serverless v1 cluster, Aurora
|
|
45
|
-
* applies the update immediately. The cluster restart might interrupt your workload. In that case,
|
|
46
|
-
* your application must reopen any connections and retry any transactions that were active
|
|
47
|
-
* when the parameter changes took effect.</p>
|
|
48
40
|
* </important>
|
|
49
41
|
* <p>For more information on Amazon Aurora DB clusters, see
|
|
50
42
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html">
|
|
@@ -4478,13 +4478,31 @@ export interface CreateDBClusterMessage {
|
|
|
4478
4478
|
Iops?: number | undefined;
|
|
4479
4479
|
/**
|
|
4480
4480
|
* <p>Specifies whether the DB cluster is publicly accessible.</p>
|
|
4481
|
-
* <p>
|
|
4482
|
-
*
|
|
4481
|
+
* <p>When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC),
|
|
4482
|
+
* its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster,
|
|
4483
|
+
* the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public
|
|
4484
|
+
* access isn't permitted if the security group assigned to the DB cluster doesn't permit it.</p>
|
|
4483
4485
|
* <p>When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.</p>
|
|
4484
|
-
* <p>
|
|
4485
|
-
* <p>
|
|
4486
|
-
* <p>If <code>
|
|
4487
|
-
* <
|
|
4486
|
+
* <p>Valid for Cluster Type: Multi-AZ DB clusters only</p>
|
|
4487
|
+
* <p>Default: The default behavior varies depending on whether <code>DBSubnetGroupName</code> is specified.</p>
|
|
4488
|
+
* <p>If <code>DBSubnetGroupName</code> isn't specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>
|
|
4489
|
+
* <ul>
|
|
4490
|
+
* <li>
|
|
4491
|
+
* <p>If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.</p>
|
|
4492
|
+
* </li>
|
|
4493
|
+
* <li>
|
|
4494
|
+
* <p>If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.</p>
|
|
4495
|
+
* </li>
|
|
4496
|
+
* </ul>
|
|
4497
|
+
* <p>If <code>DBSubnetGroupName</code> is specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>
|
|
4498
|
+
* <ul>
|
|
4499
|
+
* <li>
|
|
4500
|
+
* <p>If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.</p>
|
|
4501
|
+
* </li>
|
|
4502
|
+
* <li>
|
|
4503
|
+
* <p>If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.</p>
|
|
4504
|
+
* </li>
|
|
4505
|
+
* </ul>
|
|
4488
4506
|
* @public
|
|
4489
4507
|
*/
|
|
4490
4508
|
PubliclyAccessible?: boolean | undefined;
|
|
@@ -7189,12 +7207,30 @@ export interface CreateDBInstanceMessage {
|
|
|
7189
7207
|
NcharCharacterSetName?: string | undefined;
|
|
7190
7208
|
/**
|
|
7191
7209
|
* <p>Specifies whether the DB instance is publicly accessible.</p>
|
|
7192
|
-
* <p>When the DB instance is publicly accessible and you connect from outside of the DB instance's virtual private cloud (VPC),
|
|
7210
|
+
* <p>When the DB instance is publicly accessible and you connect from outside of the DB instance's virtual private cloud (VPC),
|
|
7211
|
+
* its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB instance,
|
|
7212
|
+
* the endpoint resolves to the private IP address. Access to the DB instance is ultimately controlled by the security group it uses.
|
|
7213
|
+
* That public access is not permitted if the security group assigned to the DB instance doesn't permit it.</p>
|
|
7193
7214
|
* <p>When the DB instance isn't publicly accessible, it is an internal DB instance with a DNS name that resolves to a private IP address.</p>
|
|
7194
|
-
* <p>The default behavior
|
|
7195
|
-
* <p>If <code>
|
|
7196
|
-
* <
|
|
7197
|
-
*
|
|
7215
|
+
* <p>Default: The default behavior varies depending on whether <code>DBSubnetGroupName</code> is specified.</p>
|
|
7216
|
+
* <p>If <code>DBSubnetGroupName</code> isn't specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>
|
|
7217
|
+
* <ul>
|
|
7218
|
+
* <li>
|
|
7219
|
+
* <p>If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB instance is private.</p>
|
|
7220
|
+
* </li>
|
|
7221
|
+
* <li>
|
|
7222
|
+
* <p>If the default VPC in the target Region has an internet gateway attached to it, the DB instance is public.</p>
|
|
7223
|
+
* </li>
|
|
7224
|
+
* </ul>
|
|
7225
|
+
* <p>If <code>DBSubnetGroupName</code> is specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>
|
|
7226
|
+
* <ul>
|
|
7227
|
+
* <li>
|
|
7228
|
+
* <p>If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB instance is private.</p>
|
|
7229
|
+
* </li>
|
|
7230
|
+
* <li>
|
|
7231
|
+
* <p>If the subnets are part of a VPC that has an internet gateway attached to it, the DB instance is public.</p>
|
|
7232
|
+
* </li>
|
|
7233
|
+
* </ul>
|
|
7198
7234
|
* @public
|
|
7199
7235
|
*/
|
|
7200
7236
|
PubliclyAccessible?: boolean | undefined;
|
|
@@ -8403,6 +8403,9 @@ export interface ModifyDBInstanceMessage {
|
|
|
8403
8403
|
* <li>
|
|
8404
8404
|
* <p>Must be in the distinguished name format.</p>
|
|
8405
8405
|
* </li>
|
|
8406
|
+
* <li>
|
|
8407
|
+
* <p>Can't be longer than 64 characters.</p>
|
|
8408
|
+
* </li>
|
|
8406
8409
|
* </ul>
|
|
8407
8410
|
* <p>Example: <code>OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain</code>
|
|
8408
8411
|
* </p>
|
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.910.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,44 +20,44 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.3.
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
51
|
-
"@smithy/util-base64": "^4.
|
|
23
|
+
"@aws-sdk/core": "3.910.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.910.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.910.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.910.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.910.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-rds": "3.910.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.910.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.910.0",
|
|
31
|
+
"@aws-sdk/types": "3.910.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.910.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.910.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.910.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.3.2",
|
|
36
|
+
"@smithy/core": "^3.16.1",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.3",
|
|
38
|
+
"@smithy/hash-node": "^4.2.2",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.2",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.2",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.3.3",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.3",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.2",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.2",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.2",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.1",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.2",
|
|
48
|
+
"@smithy/smithy-client": "^4.8.1",
|
|
49
|
+
"@smithy/types": "^4.7.1",
|
|
50
|
+
"@smithy/url-parser": "^4.2.2",
|
|
51
|
+
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
|
-
"@smithy/util-body-length-node": "^4.2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.2
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.2",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.3",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.2",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.2",
|
|
58
|
+
"@smithy/util-retry": "^4.2.2",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
|
-
"@smithy/util-waiter": "^4.2.
|
|
60
|
+
"@smithy/util-waiter": "^4.2.2",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|