Skip to content

Commit 5ee744b

Browse files
author
awstools
committed
docs(client-redshift): Updates to remove DC1 and DS2 node types.
1 parent 57ae98d commit 5ee744b

File tree

4 files changed

+30
-49
lines changed

4 files changed

+30
-49
lines changed

clients/client-redshift/src/commands/ResizeClusterCommand.ts

-12
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,12 @@ export interface ResizeClusterCommandOutput extends ResizeClusterResult, __Metad
3939
* <p>You can only resize clusters of the following types:</p>
4040
* <ul>
4141
* <li>
42-
* <p>dc1.large (if your cluster is in a VPC)</p>
43-
* </li>
44-
* <li>
45-
* <p>dc1.8xlarge (if your cluster is in a VPC)</p>
46-
* </li>
47-
* <li>
4842
* <p>dc2.large</p>
4943
* </li>
5044
* <li>
5145
* <p>dc2.8xlarge</p>
5246
* </li>
5347
* <li>
54-
* <p>ds2.xlarge</p>
55-
* </li>
56-
* <li>
57-
* <p>ds2.8xlarge</p>
58-
* </li>
59-
* <li>
6048
* <p>ra3.xlplus</p>
6149
* </li>
6250
* <li>

clients/client-redshift/src/models/models_0.ts

+9-10
Original file line numberDiff line numberDiff line change
@@ -2766,7 +2766,7 @@ export interface ReservedNodeExchangeStatus {
27662766
SourceReservedNodeId?: string;
27672767

27682768
/**
2769-
* <p>The source reserved-node type, for example ds2.xlarge.</p>
2769+
* <p>The source reserved-node type, for example ra3.4xlarge.</p>
27702770
* @public
27712771
*/
27722772
SourceReservedNodeType?: string;
@@ -2830,37 +2830,37 @@ export interface RestoreStatus {
28302830
/**
28312831
* <p>The number of megabytes per second being transferred from the backup storage.
28322832
* Returns the average rate for a completed backup.
2833-
* This field is only updated when you restore to DC2 and DS2 node types. </p>
2833+
* This field is only updated when you restore to DC2 node types. </p>
28342834
* @public
28352835
*/
28362836
CurrentRestoreRateInMegaBytesPerSecond?: number;
28372837

28382838
/**
28392839
* <p>The size of the set of snapshot data used to restore the cluster.
2840-
* This field is only updated when you restore to DC2 and DS2 node types. </p>
2840+
* This field is only updated when you restore to DC2 node types. </p>
28412841
* @public
28422842
*/
28432843
SnapshotSizeInMegaBytes?: number;
28442844

28452845
/**
28462846
* <p>The number of megabytes that have been transferred from snapshot storage.
2847-
* This field is only updated when you restore to DC2 and DS2 node types. </p>
2847+
* This field is only updated when you restore to DC2 node types. </p>
28482848
* @public
28492849
*/
28502850
ProgressInMegaBytes?: number;
28512851

28522852
/**
28532853
* <p>The amount of time an in-progress restore has been running, or the amount of time
28542854
* it took a completed restore to finish.
2855-
* This field is only updated when you restore to DC2 and DS2 node types. </p>
2855+
* This field is only updated when you restore to DC2 node types. </p>
28562856
* @public
28572857
*/
28582858
ElapsedTimeInSeconds?: number;
28592859

28602860
/**
28612861
* <p>The estimate of the time remaining before the restore will complete. Returns 0 for
28622862
* a completed restore.
2863-
* This field is only updated when you restore to DC2 and DS2 node types. </p>
2863+
* This field is only updated when you restore to DC2 node types. </p>
28642864
* @public
28652865
*/
28662866
EstimatedTimeToCompletionInSeconds?: number;
@@ -4490,8 +4490,7 @@ export interface CreateClusterMessage {
44904490
* <p>The node type to be provisioned for the cluster. For information about node types,
44914491
* go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes"> Working with
44924492
* Clusters</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>
4493-
* <p>Valid Values: <code>ds2.xlarge</code> | <code>ds2.8xlarge</code> |
4494-
* <code>dc1.large</code> | <code>dc1.8xlarge</code> |
4493+
* <p>Valid Values:
44954494
* <code>dc2.large</code> | <code>dc2.8xlarge</code> |
44964495
* <code>ra3.xlplus</code> | <code>ra3.4xlarge</code> | <code>ra3.16xlarge</code>
44974496
* </p>
@@ -4663,7 +4662,7 @@ export interface CreateClusterMessage {
46634662
* with ra3 nodes, it isn't required that you change the port to these ranges.)</p>
46644663
* </li>
46654664
* <li>
4666-
* <p>For clusters with ds2 or dc2 nodes - Select a port within the range <code>1150-65535</code>.</p>
4665+
* <p>For clusters with dc2 nodes - Select a port within the range <code>1150-65535</code>.</p>
46674666
* </li>
46684667
* </ul>
46694668
* @public
@@ -6824,7 +6823,7 @@ export interface ScheduledAction {
68246823

68256824
/**
68266825
* <p>A JSON format string of the Amazon Redshift API operation with input parameters. </p>
6827-
* <p>"<code>\{\"ResizeCluster\":\{\"NodeType\":\"ds2.8xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3\}\}</code>". </p>
6826+
* <p>"<code>\{\"ResizeCluster\":\{\"NodeType\":\"ra3.4xlarge\",\"ClusterIdentifier\":\"my-test-cluster\",\"NumberOfNodes\":3\}\}</code>". </p>
68286827
* @public
68296828
*/
68306829
TargetAction?: ScheduledActionType;

clients/client-redshift/src/models/models_1.ts

+6-12
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ export type Mode = (typeof Mode)[keyof typeof Mode];
13901390
*/
13911391
export interface NodeConfigurationOption {
13921392
/**
1393-
* <p>The node type, such as, "ds2.8xlarge".</p>
1393+
* <p>The node type, such as, "ra3.4xlarge".</p>
13941394
* @public
13951395
*/
13961396
NodeType?: string;
@@ -3829,8 +3829,7 @@ export interface ModifyClusterMessage {
38293829
* For more information about resizing clusters, go to
38303830
* <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/rs-resize-tutorial.html">Resizing Clusters in Amazon Redshift</a>
38313831
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
3832-
* <p>Valid Values: <code>ds2.xlarge</code> | <code>ds2.8xlarge</code> |
3833-
* <code>dc1.large</code> | <code>dc1.8xlarge</code> |
3832+
* <p>Valid Values:
38343833
* <code>dc2.large</code> | <code>dc2.8xlarge</code> |
38353834
* <code>ra3.xlplus</code> | <code>ra3.4xlarge</code> | <code>ra3.16xlarge</code>
38363835
* </p>
@@ -4105,7 +4104,7 @@ export interface ModifyClusterMessage {
41054104
* with ra3 nodes, it isn't required that you change the port to these ranges.)</p>
41064105
* </li>
41074106
* <li>
4108-
* <p>For clusters with ds2 or dc2 nodes - Select a port within the range <code>1150-65535</code>.</p>
4107+
* <p>For clusters with dc2 nodes - Select a port within the range <code>1150-65535</code>.</p>
41094108
* </li>
41104109
* </ul>
41114110
* @public
@@ -5084,7 +5083,7 @@ export interface RestoreFromClusterSnapshotMessage {
50845083
/**
50855084
* <p>The port number on which the cluster accepts connections.</p>
50865085
* <p>Default: The same port as the original cluster.</p>
5087-
* <p>Valid values: For clusters with ds2 or dc2 nodes, must be within the range <code>1150</code>-<code>65535</code>. For clusters with ra3 nodes, must be
5086+
* <p>Valid values: For clusters with DC2 nodes, must be within the range <code>1150</code>-<code>65535</code>. For clusters with ra3 nodes, must be
50885087
* within the ranges <code>5431</code>-<code>5455</code> or <code>8191</code>-<code>8215</code>.</p>
50895088
* @public
50905089
*/
@@ -5235,14 +5234,9 @@ export interface RestoreFromClusterSnapshotMessage {
52355234

52365235
/**
52375236
* <p>The node type that the restored cluster will be provisioned with.</p>
5238-
* <p>Default: The node type of the cluster from which the snapshot was taken. You can
5239-
* modify this if you are using any DS node type. In that case, you can choose to restore
5240-
* into another DS node type of the same size. For example, you can restore ds1.8xlarge
5241-
* into ds2.8xlarge, or ds1.xlarge into ds2.xlarge. If you have a DC instance type, you
5237+
* <p>If you have a DC instance type, you
52425238
* must restore into that same instance type and size. In other words, you can only restore
5243-
* a dc1.large instance type into another dc1.large instance type or dc2.large instance
5244-
* type. You can't restore dc1.8xlarge to dc2.8xlarge. First restore to a dc1.8xlarge
5245-
* cluster, then resize to a dc2.8large cluster. For more information about node types, see
5239+
* a dc2.large node type into another dc2 type. For more information about node types, see
52465240
* <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-about-clusters-and-nodes">
52475241
* About Clusters and Nodes</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>
52485242
* @public

0 commit comments

Comments
 (0)