@aws-sdk/client-rds 3.907.0 → 3.908.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>After you create a DB cluster parameter group, you should wait at least 5 minutes
36
- * before creating your first DB cluster that uses that DB cluster parameter group as the default parameter
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>Valid for Cluster Type: Multi-AZ DB clusters only</p>
4482
- * <p>When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.</p>
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>The default behavior when <code>PubliclyAccessible</code> is not specified depends on whether a <code>DBSubnetGroup</code> is specified.</p>
4485
- * <p>If <code>DBSubnetGroup</code> isn't specified, <code>PubliclyAccessible</code> defaults to <code>true</code>.</p>
4486
- * <p>If <code>DBSubnetGroup</code> is specified, <code>PubliclyAccessible</code> defaults to <code>false</code> unless the value of <code>DBSubnetGroup</code> is <code>default</code>, in which case <code>PubliclyAccessible</code> defaults to <code>true</code>.</p>
4487
- * <p>If <code>PubliclyAccessible</code> is true and the VPC that the <code>DBSubnetGroup</code> is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.</p>
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), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB instance, the endpoint resolves to the private IP address. Access to the DB instance is controlled by its security group settings.</p>
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 when <code>PubliclyAccessible</code> is not specified depends on whether a <code>DBSubnetGroup</code> is specified.</p>
7195
- * <p>If <code>DBSubnetGroup</code> isn't specified, <code>PubliclyAccessible</code> defaults to <code>false</code> for Aurora instances and <code>true</code> for non-Aurora instances.</p>
7196
- * <p>If <code>DBSubnetGroup</code> is specified, <code>PubliclyAccessible</code> defaults to <code>false</code> unless the value of <code>DBSubnetGroup</code> is <code>default</code>, in which case <code>PubliclyAccessible</code> defaults to <code>true</code>.</p>
7197
- * <p>If <code>PubliclyAccessible</code> is true and the VPC that the <code>DBSubnetGroup</code> is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.</p>
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.907.0",
4
+ "version": "3.908.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rds",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.907.0",
24
- "@aws-sdk/credential-provider-node": "3.907.0",
23
+ "@aws-sdk/core": "3.908.0",
24
+ "@aws-sdk/credential-provider-node": "3.908.0",
25
25
  "@aws-sdk/middleware-host-header": "3.901.0",
26
26
  "@aws-sdk/middleware-logger": "3.901.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.901.0",
28
- "@aws-sdk/middleware-sdk-rds": "3.901.0",
29
- "@aws-sdk/middleware-user-agent": "3.907.0",
28
+ "@aws-sdk/middleware-sdk-rds": "3.908.0",
29
+ "@aws-sdk/middleware-user-agent": "3.908.0",
30
30
  "@aws-sdk/region-config-resolver": "3.901.0",
31
31
  "@aws-sdk/types": "3.901.0",
32
32
  "@aws-sdk/util-endpoints": "3.901.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.907.0",
34
- "@aws-sdk/util-user-agent-node": "3.907.0",
34
+ "@aws-sdk/util-user-agent-node": "3.908.0",
35
35
  "@smithy/config-resolver": "^4.3.0",
36
- "@smithy/core": "^3.14.0",
37
- "@smithy/fetch-http-handler": "^5.3.0",
36
+ "@smithy/core": "^3.15.0",
37
+ "@smithy/fetch-http-handler": "^5.3.1",
38
38
  "@smithy/hash-node": "^4.2.0",
39
39
  "@smithy/invalid-dependency": "^4.2.0",
40
40
  "@smithy/middleware-content-length": "^4.2.0",
41
- "@smithy/middleware-endpoint": "^4.3.0",
42
- "@smithy/middleware-retry": "^4.4.0",
41
+ "@smithy/middleware-endpoint": "^4.3.1",
42
+ "@smithy/middleware-retry": "^4.4.1",
43
43
  "@smithy/middleware-serde": "^4.2.0",
44
44
  "@smithy/middleware-stack": "^4.2.0",
45
45
  "@smithy/node-config-provider": "^4.3.0",
46
46
  "@smithy/node-http-handler": "^4.3.0",
47
47
  "@smithy/protocol-http": "^5.3.0",
48
- "@smithy/smithy-client": "^4.7.0",
48
+ "@smithy/smithy-client": "^4.7.1",
49
49
  "@smithy/types": "^4.6.0",
50
50
  "@smithy/url-parser": "^4.2.0",
51
- "@smithy/util-base64": "^4.2.0",
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.0",
54
- "@smithy/util-defaults-mode-browser": "^4.2.0",
55
- "@smithy/util-defaults-mode-node": "^4.2.0",
53
+ "@smithy/util-body-length-node": "^4.2.1",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.0",
55
+ "@smithy/util-defaults-mode-node": "^4.2.1",
56
56
  "@smithy/util-endpoints": "^3.2.0",
57
57
  "@smithy/util-middleware": "^4.2.0",
58
58
  "@smithy/util-retry": "^4.2.0",