@aws-sdk/client-redshift 3.264.0 → 3.266.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.
@@ -1314,6 +1314,8 @@ export declare class Redshift extends RedshiftClient {
1314
1314
  * <code>NewTableName</code> parameter value in the call to
1315
1315
  * <code>RestoreTableFromClusterSnapshot</code>. This way, you can replace the original
1316
1316
  * table with the table created from the snapshot.</p>
1317
+ * <p>You can't use this operation to restore tables with
1318
+ * <a href="https://docs.aws.amazon.com/redshift/latest/dg/t_Sorting_data.html#t_Sorting_data-interleaved">interleaved sort keys</a>.</p>
1317
1319
  */
1318
1320
  restoreTableFromClusterSnapshot(args: RestoreTableFromClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreTableFromClusterSnapshotCommandOutput>;
1319
1321
  restoreTableFromClusterSnapshot(args: RestoreTableFromClusterSnapshotCommandInput, cb: (err: any, data?: RestoreTableFromClusterSnapshotCommandOutput) => void): void;
@@ -20,6 +20,8 @@ export interface RestoreTableFromClusterSnapshotCommandOutput extends RestoreTab
20
20
  * <code>NewTableName</code> parameter value in the call to
21
21
  * <code>RestoreTableFromClusterSnapshot</code>. This way, you can replace the original
22
22
  * table with the table created from the snapshot.</p>
23
+ * <p>You can't use this operation to restore tables with
24
+ * <a href="https://docs.aws.amazon.com/redshift/latest/dg/t_Sorting_data.html#t_Sorting_data-interleaved">interleaved sort keys</a>.</p>
23
25
  * @example
24
26
  * Use a bare-bones client and the command you need to make an API call.
25
27
  * ```javascript
@@ -2924,11 +2924,17 @@ export interface CreateClusterMessage {
2924
2924
  * <p>Constraints:</p>
2925
2925
  * <ul>
2926
2926
  * <li>
2927
- * <p>Must be 1 - 128 alphanumeric characters. The user name can't be
2927
+ * <p>Must be 1 - 128 alphanumeric characters or hyphens. The user name can't be
2928
2928
  * <code>PUBLIC</code>.</p>
2929
2929
  * </li>
2930
2930
  * <li>
2931
- * <p>First character must be a letter.</p>
2931
+ * <p>Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen.</p>
2932
+ * </li>
2933
+ * <li>
2934
+ * <p>The first character must be a letter.</p>
2935
+ * </li>
2936
+ * <li>
2937
+ * <p>Must not contain a colon (:) or a slash (/).</p>
2932
2938
  * </li>
2933
2939
  * <li>
2934
2940
  * <p>Cannot be a reserved word. A list of reserved words can be found in <a href="https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html">Reserved
@@ -5212,7 +5218,7 @@ export interface DescribeClustersMessage {
5212
5218
  */
5213
5219
  export interface DescribeClusterSecurityGroupsMessage {
5214
5220
  /**
5215
- * <p>The name of a cluster security group for which you are requesting details. You can
5221
+ * <p>The name of a cluster security group for which you are requesting details. You must
5216
5222
  * specify either the <b>Marker</b> parameter or a <b>ClusterSecurityGroupName</b> parameter, but not both. </p>
5217
5223
  * <p> Example: <code>securitygroup1</code>
5218
5224
  * </p>
@@ -5235,7 +5241,7 @@ export interface DescribeClusterSecurityGroupsMessage {
5235
5241
  * <code>Marker</code> field of the response. You can retrieve the next set of response
5236
5242
  * records by providing the returned marker value in the <code>Marker</code> parameter and
5237
5243
  * retrying the request. </p>
5238
- * <p>Constraints: You can specify either the <b>ClusterSecurityGroupName</b> parameter or the <b>Marker</b> parameter, but not both. </p>
5244
+ * <p>Constraints: You must specify either the <b>ClusterSecurityGroupName</b> parameter or the <b>Marker</b> parameter, but not both. </p>
5239
5245
  */
5240
5246
  Marker?: string;
5241
5247
  /**
@@ -5785,7 +5791,7 @@ export interface DescribeEndpointAuthorizationMessage {
5785
5791
  */
5786
5792
  ClusterIdentifier?: string;
5787
5793
  /**
5788
- * <p>The AAmazon Web Services account ID of either the cluster owner (grantor) or grantee.
5794
+ * <p>The Amazon Web Services account ID of either the cluster owner (grantor) or grantee.
5789
5795
  * If <code>Grantee</code> parameter is true, then the <code>Account</code> value is of the grantor.</p>
5790
5796
  */
5791
5797
  Account?: string;
@@ -115,7 +115,8 @@ export interface LoggingStatus {
115
115
  */
116
116
  LogDestinationType?: LogDestinationType | string;
117
117
  /**
118
- * <p>The collection of exported log types. Log types include the connection log, user log and user activity log.</p>
118
+ * <p>The collection of exported log types. Possible values are <code>connectionlog</code>, <code>useractivitylog</code>, and
119
+ * <code>userlog</code>.</p>
119
120
  */
120
121
  LogExports?: string[];
121
122
  }
@@ -1238,7 +1239,7 @@ export interface EnableLoggingMessage {
1238
1239
  */
1239
1240
  LogDestinationType?: LogDestinationType | string;
1240
1241
  /**
1241
- * <p>The collection of exported log types. Log types include the connection log, user log and user activity log.</p>
1242
+ * <p>The collection of exported log types. Possible values are <code>connectionlog</code>, <code>useractivitylog</code>, and <code>userlog</code>.</p>
1242
1243
  */
1243
1244
  LogExports?: string[];
1244
1245
  }
@@ -2440,13 +2441,13 @@ export interface RestoreFromClusterSnapshotMessage {
2440
2441
  ClusterIdentifier: string | undefined;
2441
2442
  /**
2442
2443
  * <p>The name of the snapshot from which to create the new cluster. This parameter isn't
2443
- * case sensitive. You can specify this parameter or <code>snapshotArn</code>, but not both.</p>
2444
+ * case sensitive. You must specify this parameter or <code>snapshotArn</code>, but not both.</p>
2444
2445
  * <p>Example: <code>my-snapshot-id</code>
2445
2446
  * </p>
2446
2447
  */
2447
2448
  SnapshotIdentifier?: string;
2448
2449
  /**
2449
- * <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to restore from a cluster. You can specify
2450
+ * <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to restore from a cluster. You must specify
2450
2451
  * this parameter or <code>snapshotIdentifier</code>, but not both.</p>
2451
2452
  */
2452
2453
  SnapshotArn?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-redshift",
3
3
  "description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native",
4
- "version": "3.264.0",
4
+ "version": "3.266.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.264.0",
24
- "@aws-sdk/config-resolver": "3.259.0",
25
- "@aws-sdk/credential-provider-node": "3.264.0",
26
- "@aws-sdk/fetch-http-handler": "3.257.0",
27
- "@aws-sdk/hash-node": "3.257.0",
28
- "@aws-sdk/invalid-dependency": "3.257.0",
29
- "@aws-sdk/middleware-content-length": "3.257.0",
30
- "@aws-sdk/middleware-endpoint": "3.264.0",
31
- "@aws-sdk/middleware-host-header": "3.257.0",
32
- "@aws-sdk/middleware-logger": "3.257.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.257.0",
34
- "@aws-sdk/middleware-retry": "3.259.0",
35
- "@aws-sdk/middleware-serde": "3.257.0",
36
- "@aws-sdk/middleware-signing": "3.257.0",
37
- "@aws-sdk/middleware-stack": "3.257.0",
38
- "@aws-sdk/middleware-user-agent": "3.257.0",
39
- "@aws-sdk/node-config-provider": "3.259.0",
40
- "@aws-sdk/node-http-handler": "3.257.0",
41
- "@aws-sdk/protocol-http": "3.257.0",
42
- "@aws-sdk/smithy-client": "3.261.0",
43
- "@aws-sdk/types": "3.257.0",
44
- "@aws-sdk/url-parser": "3.257.0",
23
+ "@aws-sdk/client-sts": "3.266.0",
24
+ "@aws-sdk/config-resolver": "3.266.0",
25
+ "@aws-sdk/credential-provider-node": "3.266.0",
26
+ "@aws-sdk/fetch-http-handler": "3.266.0",
27
+ "@aws-sdk/hash-node": "3.266.0",
28
+ "@aws-sdk/invalid-dependency": "3.266.0",
29
+ "@aws-sdk/middleware-content-length": "3.266.0",
30
+ "@aws-sdk/middleware-endpoint": "3.266.0",
31
+ "@aws-sdk/middleware-host-header": "3.266.0",
32
+ "@aws-sdk/middleware-logger": "3.266.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.266.0",
34
+ "@aws-sdk/middleware-retry": "3.266.0",
35
+ "@aws-sdk/middleware-serde": "3.266.0",
36
+ "@aws-sdk/middleware-signing": "3.266.0",
37
+ "@aws-sdk/middleware-stack": "3.266.0",
38
+ "@aws-sdk/middleware-user-agent": "3.266.0",
39
+ "@aws-sdk/node-config-provider": "3.266.0",
40
+ "@aws-sdk/node-http-handler": "3.266.0",
41
+ "@aws-sdk/protocol-http": "3.266.0",
42
+ "@aws-sdk/smithy-client": "3.266.0",
43
+ "@aws-sdk/types": "3.266.0",
44
+ "@aws-sdk/url-parser": "3.266.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.261.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.261.0",
50
- "@aws-sdk/util-endpoints": "3.257.0",
51
- "@aws-sdk/util-retry": "3.257.0",
52
- "@aws-sdk/util-user-agent-browser": "3.257.0",
53
- "@aws-sdk/util-user-agent-node": "3.259.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.266.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.266.0",
50
+ "@aws-sdk/util-endpoints": "3.266.0",
51
+ "@aws-sdk/util-retry": "3.266.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.266.0",
53
+ "@aws-sdk/util-user-agent-node": "3.266.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
- "@aws-sdk/util-waiter": "3.257.0",
55
+ "@aws-sdk/util-waiter": "3.266.0",
56
56
  "fast-xml-parser": "4.0.11",
57
57
  "tslib": "^2.3.1"
58
58
  },