@aws-sdk/client-redshift 3.315.0 → 3.316.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.
@@ -119,1371 +119,745 @@ import { RevokeSnapshotAccessCommandInput, RevokeSnapshotAccessCommandOutput } f
119
119
  import { RotateEncryptionKeyCommandInput, RotateEncryptionKeyCommandOutput } from "./commands/RotateEncryptionKeyCommand";
120
120
  import { UpdatePartnerStatusCommandInput, UpdatePartnerStatusCommandOutput } from "./commands/UpdatePartnerStatusCommand";
121
121
  import { RedshiftClient } from "./RedshiftClient";
122
- /**
123
- * @public
124
- * <fullname>Amazon Redshift</fullname>
125
- * <p>
126
- * <b>Overview</b>
127
- * </p>
128
- * <p>This is an interface reference for Amazon Redshift. It contains documentation for one of
129
- * the programming or command line interfaces you can use to manage Amazon Redshift clusters.
130
- * Note that Amazon Redshift is asynchronous, which means that some interfaces may require
131
- * techniques, such as polling or asynchronous callback handlers, to determine when a
132
- * command has been applied. In this reference, the parameter descriptions indicate whether
133
- * a change is applied immediately, on the next instance reboot, or during the next
134
- * maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to
135
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html">Using the
136
- * Amazon Redshift Management Interfaces</a>.</p>
137
- * <p>Amazon Redshift manages all the work of setting up, operating, and scaling a data
138
- * warehouse: provisioning capacity, monitoring and backing up the cluster, and applying
139
- * patches and upgrades to the Amazon Redshift engine. You can focus on using your data to
140
- * acquire new insights for your business and customers.</p>
141
- * <p>If you are a first-time user of Amazon Redshift, we recommend that you begin by reading
142
- * the <a href="https://docs.aws.amazon.com/redshift/latest/gsg/getting-started.html">Amazon Redshift Getting Started Guide</a>.</p>
143
- * <p>If you are a database developer, the <a href="https://docs.aws.amazon.com/redshift/latest/dg/welcome.html">Amazon Redshift Database Developer Guide</a> explains how to design,
144
- * build, query, and maintain the databases that make up your data warehouse. </p>
145
- */
146
- export declare class Redshift extends RedshiftClient {
122
+ export interface Redshift {
147
123
  /**
148
- * @public
149
- * <p>Exchanges a DC1 Reserved Node for a DC2 Reserved Node with no changes to the
150
- * configuration (term, payment type, or number of nodes) and no additional costs.
151
- * </p>
124
+ * @see {@link AcceptReservedNodeExchangeCommand}
152
125
  */
153
126
  acceptReservedNodeExchange(args: AcceptReservedNodeExchangeCommandInput, options?: __HttpHandlerOptions): Promise<AcceptReservedNodeExchangeCommandOutput>;
154
127
  acceptReservedNodeExchange(args: AcceptReservedNodeExchangeCommandInput, cb: (err: any, data?: AcceptReservedNodeExchangeCommandOutput) => void): void;
155
128
  acceptReservedNodeExchange(args: AcceptReservedNodeExchangeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptReservedNodeExchangeCommandOutput) => void): void;
156
129
  /**
157
- * @public
158
- * <p>Adds a partner integration to a cluster.
159
- * This operation authorizes a partner to push status updates for the specified database.
160
- * To complete the integration, you also set up the integration on the partner website.</p>
130
+ * @see {@link AddPartnerCommand}
161
131
  */
162
132
  addPartner(args: AddPartnerCommandInput, options?: __HttpHandlerOptions): Promise<AddPartnerCommandOutput>;
163
133
  addPartner(args: AddPartnerCommandInput, cb: (err: any, data?: AddPartnerCommandOutput) => void): void;
164
134
  addPartner(args: AddPartnerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddPartnerCommandOutput) => void): void;
165
135
  /**
166
- * @public
167
- * <p>From a datashare consumer account, associates a datashare with the
168
- * account (AssociateEntireAccount) or the specified namespace (ConsumerArn). If you make this association, the consumer
169
- * can consume the datashare.</p>
136
+ * @see {@link AssociateDataShareConsumerCommand}
170
137
  */
171
138
  associateDataShareConsumer(args: AssociateDataShareConsumerCommandInput, options?: __HttpHandlerOptions): Promise<AssociateDataShareConsumerCommandOutput>;
172
139
  associateDataShareConsumer(args: AssociateDataShareConsumerCommandInput, cb: (err: any, data?: AssociateDataShareConsumerCommandOutput) => void): void;
173
140
  associateDataShareConsumer(args: AssociateDataShareConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateDataShareConsumerCommandOutput) => void): void;
174
141
  /**
175
- * @public
176
- * <p>Adds an inbound (ingress) rule to an Amazon Redshift security group. Depending on whether
177
- * the application accessing your cluster is running on the Internet or an Amazon EC2
178
- * instance, you can authorize inbound access to either a Classless Interdomain Routing
179
- * (CIDR)/Internet Protocol (IP) range or to an Amazon EC2 security group. You can add as
180
- * many as 20 ingress rules to an Amazon Redshift security group.</p>
181
- * <p>If you authorize access to an Amazon EC2 security group, specify
182
- * <i>EC2SecurityGroupName</i> and
183
- * <i>EC2SecurityGroupOwnerId</i>. The Amazon EC2 security group and
184
- * Amazon Redshift cluster must be in the same Amazon Web Services Region. </p>
185
- * <p>If you authorize access to a CIDR/IP address range, specify
186
- * <i>CIDRIP</i>. For an overview of CIDR blocks, see the Wikipedia
187
- * article on <a href="http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing">Classless Inter-Domain Routing</a>. </p>
188
- * <p>You must also associate the security group with a cluster so that clients running
189
- * on these IP addresses or the EC2 instance are authorized to connect to the cluster. For
190
- * information about managing security groups, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html">Working with Security
191
- * Groups</a> in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
142
+ * @see {@link AuthorizeClusterSecurityGroupIngressCommand}
192
143
  */
193
144
  authorizeClusterSecurityGroupIngress(args: AuthorizeClusterSecurityGroupIngressCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeClusterSecurityGroupIngressCommandOutput>;
194
145
  authorizeClusterSecurityGroupIngress(args: AuthorizeClusterSecurityGroupIngressCommandInput, cb: (err: any, data?: AuthorizeClusterSecurityGroupIngressCommandOutput) => void): void;
195
146
  authorizeClusterSecurityGroupIngress(args: AuthorizeClusterSecurityGroupIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeClusterSecurityGroupIngressCommandOutput) => void): void;
196
147
  /**
197
- * @public
198
- * <p>From a data producer account, authorizes the sharing of a datashare with one or more
199
- * consumer accounts or managing entities. To authorize a datashare for a data consumer,
200
- * the producer account must have the correct access permissions.</p>
148
+ * @see {@link AuthorizeDataShareCommand}
201
149
  */
202
150
  authorizeDataShare(args: AuthorizeDataShareCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeDataShareCommandOutput>;
203
151
  authorizeDataShare(args: AuthorizeDataShareCommandInput, cb: (err: any, data?: AuthorizeDataShareCommandOutput) => void): void;
204
152
  authorizeDataShare(args: AuthorizeDataShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeDataShareCommandOutput) => void): void;
205
153
  /**
206
- * @public
207
- * <p>Grants access to a cluster.</p>
154
+ * @see {@link AuthorizeEndpointAccessCommand}
208
155
  */
209
156
  authorizeEndpointAccess(args: AuthorizeEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeEndpointAccessCommandOutput>;
210
157
  authorizeEndpointAccess(args: AuthorizeEndpointAccessCommandInput, cb: (err: any, data?: AuthorizeEndpointAccessCommandOutput) => void): void;
211
158
  authorizeEndpointAccess(args: AuthorizeEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeEndpointAccessCommandOutput) => void): void;
212
159
  /**
213
- * @public
214
- * <p>Authorizes the specified Amazon Web Services account to restore the specified
215
- * snapshot.</p>
216
- * <p>
217
- * For more information about working with snapshots, go to
218
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html">Amazon Redshift Snapshots</a>
219
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
160
+ * @see {@link AuthorizeSnapshotAccessCommand}
220
161
  */
221
162
  authorizeSnapshotAccess(args: AuthorizeSnapshotAccessCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeSnapshotAccessCommandOutput>;
222
163
  authorizeSnapshotAccess(args: AuthorizeSnapshotAccessCommandInput, cb: (err: any, data?: AuthorizeSnapshotAccessCommandOutput) => void): void;
223
164
  authorizeSnapshotAccess(args: AuthorizeSnapshotAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeSnapshotAccessCommandOutput) => void): void;
224
165
  /**
225
- * @public
226
- * <p>Deletes a set of cluster snapshots.</p>
166
+ * @see {@link BatchDeleteClusterSnapshotsCommand}
227
167
  */
228
168
  batchDeleteClusterSnapshots(args: BatchDeleteClusterSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteClusterSnapshotsCommandOutput>;
229
169
  batchDeleteClusterSnapshots(args: BatchDeleteClusterSnapshotsCommandInput, cb: (err: any, data?: BatchDeleteClusterSnapshotsCommandOutput) => void): void;
230
170
  batchDeleteClusterSnapshots(args: BatchDeleteClusterSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteClusterSnapshotsCommandOutput) => void): void;
231
171
  /**
232
- * @public
233
- * <p>Modifies the settings for a set of cluster snapshots.</p>
172
+ * @see {@link BatchModifyClusterSnapshotsCommand}
234
173
  */
235
174
  batchModifyClusterSnapshots(args: BatchModifyClusterSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<BatchModifyClusterSnapshotsCommandOutput>;
236
175
  batchModifyClusterSnapshots(args: BatchModifyClusterSnapshotsCommandInput, cb: (err: any, data?: BatchModifyClusterSnapshotsCommandOutput) => void): void;
237
176
  batchModifyClusterSnapshots(args: BatchModifyClusterSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchModifyClusterSnapshotsCommandOutput) => void): void;
238
177
  /**
239
- * @public
240
- * <p>Cancels a resize operation for a cluster.</p>
178
+ * @see {@link CancelResizeCommand}
241
179
  */
242
180
  cancelResize(args: CancelResizeCommandInput, options?: __HttpHandlerOptions): Promise<CancelResizeCommandOutput>;
243
181
  cancelResize(args: CancelResizeCommandInput, cb: (err: any, data?: CancelResizeCommandOutput) => void): void;
244
182
  cancelResize(args: CancelResizeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelResizeCommandOutput) => void): void;
245
183
  /**
246
- * @public
247
- * <p>Copies the specified automated cluster snapshot to a new manual cluster snapshot.
248
- * The source must be an automated snapshot and it must be in the available
249
- * state.</p>
250
- * <p>When you delete a cluster, Amazon Redshift deletes any automated snapshots of the
251
- * cluster. Also, when the retention period of the snapshot expires, Amazon Redshift
252
- * automatically deletes it. If you want to keep an automated snapshot for a longer period,
253
- * you can make a manual copy of the snapshot. Manual snapshots are retained until you
254
- * delete them.</p>
255
- * <p>
256
- * For more information about working with snapshots, go to
257
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html">Amazon Redshift Snapshots</a>
258
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
184
+ * @see {@link CopyClusterSnapshotCommand}
259
185
  */
260
186
  copyClusterSnapshot(args: CopyClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CopyClusterSnapshotCommandOutput>;
261
187
  copyClusterSnapshot(args: CopyClusterSnapshotCommandInput, cb: (err: any, data?: CopyClusterSnapshotCommandOutput) => void): void;
262
188
  copyClusterSnapshot(args: CopyClusterSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyClusterSnapshotCommandOutput) => void): void;
263
189
  /**
264
- * @public
265
- * <p>Creates an authentication profile with the specified parameters.</p>
190
+ * @see {@link CreateAuthenticationProfileCommand}
266
191
  */
267
192
  createAuthenticationProfile(args: CreateAuthenticationProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateAuthenticationProfileCommandOutput>;
268
193
  createAuthenticationProfile(args: CreateAuthenticationProfileCommandInput, cb: (err: any, data?: CreateAuthenticationProfileCommandOutput) => void): void;
269
194
  createAuthenticationProfile(args: CreateAuthenticationProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAuthenticationProfileCommandOutput) => void): void;
270
195
  /**
271
- * @public
272
- * <p>Creates a new cluster with the specified parameters.</p>
273
- * <p>To create a cluster in Virtual Private Cloud (VPC), you must provide a cluster
274
- * subnet group name. The cluster subnet group identifies the subnets of your VPC that
275
- * Amazon Redshift uses when creating the cluster.
276
- * For more information about managing clusters, go to
277
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
278
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
196
+ * @see {@link CreateClusterCommand}
279
197
  */
280
198
  createCluster(args: CreateClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterCommandOutput>;
281
199
  createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
282
200
  createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
283
201
  /**
284
- * @public
285
- * <p>Creates an Amazon Redshift parameter group.</p>
286
- * <p>Creating parameter groups is independent of creating clusters. You can associate a
287
- * cluster with a parameter group when you create the cluster. You can also associate an
288
- * existing cluster with a parameter group after the cluster is created by using <a>ModifyCluster</a>. </p>
289
- * <p>Parameters in the parameter group define specific behavior that applies to the
290
- * databases you create on the cluster.
291
- * For more information about parameters and parameter groups, go to
292
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon Redshift Parameter Groups</a>
293
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
202
+ * @see {@link CreateClusterParameterGroupCommand}
294
203
  */
295
204
  createClusterParameterGroup(args: CreateClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterParameterGroupCommandOutput>;
296
205
  createClusterParameterGroup(args: CreateClusterParameterGroupCommandInput, cb: (err: any, data?: CreateClusterParameterGroupCommandOutput) => void): void;
297
206
  createClusterParameterGroup(args: CreateClusterParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterParameterGroupCommandOutput) => void): void;
298
207
  /**
299
- * @public
300
- * <p>Creates a new Amazon Redshift security group. You use security groups to control access
301
- * to non-VPC clusters.</p>
302
- * <p>
303
- * For information about managing security groups, go to
304
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html">Amazon Redshift Cluster Security Groups</a> in the
305
- * <i>Amazon Redshift Cluster Management Guide</i>.</p>
208
+ * @see {@link CreateClusterSecurityGroupCommand}
306
209
  */
307
210
  createClusterSecurityGroup(args: CreateClusterSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterSecurityGroupCommandOutput>;
308
211
  createClusterSecurityGroup(args: CreateClusterSecurityGroupCommandInput, cb: (err: any, data?: CreateClusterSecurityGroupCommandOutput) => void): void;
309
212
  createClusterSecurityGroup(args: CreateClusterSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterSecurityGroupCommandOutput) => void): void;
310
213
  /**
311
- * @public
312
- * <p>Creates a manual snapshot of the specified cluster. The cluster must be in the
313
- * <code>available</code> state. </p>
314
- * <p>
315
- * For more information about working with snapshots, go to
316
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html">Amazon Redshift Snapshots</a>
317
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
214
+ * @see {@link CreateClusterSnapshotCommand}
318
215
  */
319
216
  createClusterSnapshot(args: CreateClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterSnapshotCommandOutput>;
320
217
  createClusterSnapshot(args: CreateClusterSnapshotCommandInput, cb: (err: any, data?: CreateClusterSnapshotCommandOutput) => void): void;
321
218
  createClusterSnapshot(args: CreateClusterSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterSnapshotCommandOutput) => void): void;
322
219
  /**
323
- * @public
324
- * <p>Creates a new Amazon Redshift subnet group. You must provide a list of one or more
325
- * subnets in your existing Amazon Virtual Private Cloud (Amazon VPC) when creating
326
- * Amazon Redshift subnet group.</p>
327
- * <p>
328
- * For information about subnet groups, go to
329
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-cluster-subnet-groups.html">Amazon Redshift Cluster Subnet Groups</a> in the
330
- * <i>Amazon Redshift Cluster Management Guide</i>.</p>
220
+ * @see {@link CreateClusterSubnetGroupCommand}
331
221
  */
332
222
  createClusterSubnetGroup(args: CreateClusterSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterSubnetGroupCommandOutput>;
333
223
  createClusterSubnetGroup(args: CreateClusterSubnetGroupCommandInput, cb: (err: any, data?: CreateClusterSubnetGroupCommandOutput) => void): void;
334
224
  createClusterSubnetGroup(args: CreateClusterSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterSubnetGroupCommandOutput) => void): void;
335
225
  /**
336
- * @public
337
- * <p>Creates a Redshift-managed VPC endpoint.</p>
226
+ * @see {@link CreateEndpointAccessCommand}
338
227
  */
339
228
  createEndpointAccess(args: CreateEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<CreateEndpointAccessCommandOutput>;
340
229
  createEndpointAccess(args: CreateEndpointAccessCommandInput, cb: (err: any, data?: CreateEndpointAccessCommandOutput) => void): void;
341
230
  createEndpointAccess(args: CreateEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEndpointAccessCommandOutput) => void): void;
342
231
  /**
343
- * @public
344
- * <p>Creates an Amazon Redshift event notification subscription. This action requires an ARN
345
- * (Amazon Resource Name) of an Amazon SNS topic created by either the Amazon Redshift console,
346
- * the Amazon SNS console, or the Amazon SNS API. To obtain an ARN with Amazon SNS, you
347
- * must create a topic in Amazon SNS and subscribe to the topic. The ARN is displayed in
348
- * the SNS console.</p>
349
- * <p>You can specify the source type, and lists of Amazon Redshift source IDs, event
350
- * categories, and event severities. Notifications will be sent for all events you want
351
- * that match those criteria. For example, you can specify source type = cluster, source ID
352
- * = my-cluster-1 and mycluster2, event categories = Availability, Backup, and severity =
353
- * ERROR. The subscription will only send notifications for those ERROR events in the
354
- * Availability and Backup categories for the specified clusters.</p>
355
- * <p>If you specify both the source type and source IDs, such as source type = cluster
356
- * and source identifier = my-cluster-1, notifications will be sent for all the cluster
357
- * events for my-cluster-1. If you specify a source type but do not specify a source
358
- * identifier, you will receive notice of the events for the objects of that type in your
359
- * Amazon Web Services account. If you do not specify either the SourceType nor the SourceIdentifier, you
360
- * will be notified of events generated from all Amazon Redshift sources belonging to your Amazon Web Services account. You must specify a source type if you specify a source ID.</p>
232
+ * @see {@link CreateEventSubscriptionCommand}
361
233
  */
362
234
  createEventSubscription(args: CreateEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventSubscriptionCommandOutput>;
363
235
  createEventSubscription(args: CreateEventSubscriptionCommandInput, cb: (err: any, data?: CreateEventSubscriptionCommandOutput) => void): void;
364
236
  createEventSubscription(args: CreateEventSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventSubscriptionCommandOutput) => void): void;
365
237
  /**
366
- * @public
367
- * <p>Creates an HSM client certificate that an Amazon Redshift cluster will use to connect to
368
- * the client's HSM in order to store and retrieve the keys used to encrypt the cluster
369
- * databases.</p>
370
- * <p>The command returns a public key, which you must store in the HSM. In addition to
371
- * creating the HSM certificate, you must create an Amazon Redshift HSM configuration that
372
- * provides a cluster the information needed to store and use encryption keys in the HSM.
373
- * For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html#working-with-HSM">Hardware Security Modules</a>
374
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
238
+ * @see {@link CreateHsmClientCertificateCommand}
375
239
  */
376
240
  createHsmClientCertificate(args: CreateHsmClientCertificateCommandInput, options?: __HttpHandlerOptions): Promise<CreateHsmClientCertificateCommandOutput>;
377
241
  createHsmClientCertificate(args: CreateHsmClientCertificateCommandInput, cb: (err: any, data?: CreateHsmClientCertificateCommandOutput) => void): void;
378
242
  createHsmClientCertificate(args: CreateHsmClientCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHsmClientCertificateCommandOutput) => void): void;
379
243
  /**
380
- * @public
381
- * <p>Creates an HSM configuration that contains the information required by an Amazon Redshift
382
- * cluster to store and use database encryption keys in a Hardware Security Module (HSM).
383
- * After creating the HSM configuration, you can specify it as a parameter when creating a
384
- * cluster. The cluster will then store its encryption keys in the HSM.</p>
385
- * <p>In addition to creating an HSM configuration, you must also create an HSM client
386
- * certificate. For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-HSM.html">Hardware Security Modules</a>
387
- * in the Amazon Redshift Cluster Management Guide.</p>
244
+ * @see {@link CreateHsmConfigurationCommand}
388
245
  */
389
246
  createHsmConfiguration(args: CreateHsmConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateHsmConfigurationCommandOutput>;
390
247
  createHsmConfiguration(args: CreateHsmConfigurationCommandInput, cb: (err: any, data?: CreateHsmConfigurationCommandOutput) => void): void;
391
248
  createHsmConfiguration(args: CreateHsmConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHsmConfigurationCommandOutput) => void): void;
392
249
  /**
393
- * @public
394
- * <p>Creates a scheduled action. A scheduled action contains a schedule and an Amazon Redshift API action.
395
- * For example, you can create a schedule of when to run the <code>ResizeCluster</code> API operation.
396
- * </p>
250
+ * @see {@link CreateScheduledActionCommand}
397
251
  */
398
252
  createScheduledAction(args: CreateScheduledActionCommandInput, options?: __HttpHandlerOptions): Promise<CreateScheduledActionCommandOutput>;
399
253
  createScheduledAction(args: CreateScheduledActionCommandInput, cb: (err: any, data?: CreateScheduledActionCommandOutput) => void): void;
400
254
  createScheduledAction(args: CreateScheduledActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScheduledActionCommandOutput) => void): void;
401
255
  /**
402
- * @public
403
- * <p>Creates a snapshot copy grant that permits Amazon Redshift to use an encrypted symmetric key
404
- * from Key Management Service (KMS) to encrypt copied snapshots in a
405
- * destination region.</p>
406
- * <p>
407
- * For more information about managing snapshot copy grants, go to
408
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html">Amazon Redshift Database Encryption</a>
409
- * in the <i>Amazon Redshift Cluster Management Guide</i>.
410
- * </p>
256
+ * @see {@link CreateSnapshotCopyGrantCommand}
411
257
  */
412
258
  createSnapshotCopyGrant(args: CreateSnapshotCopyGrantCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotCopyGrantCommandOutput>;
413
259
  createSnapshotCopyGrant(args: CreateSnapshotCopyGrantCommandInput, cb: (err: any, data?: CreateSnapshotCopyGrantCommandOutput) => void): void;
414
260
  createSnapshotCopyGrant(args: CreateSnapshotCopyGrantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCopyGrantCommandOutput) => void): void;
415
261
  /**
416
- * @public
417
- * <p>Create a snapshot schedule that can be associated to a cluster and which overrides the default system backup schedule. </p>
262
+ * @see {@link CreateSnapshotScheduleCommand}
418
263
  */
419
264
  createSnapshotSchedule(args: CreateSnapshotScheduleCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotScheduleCommandOutput>;
420
265
  createSnapshotSchedule(args: CreateSnapshotScheduleCommandInput, cb: (err: any, data?: CreateSnapshotScheduleCommandOutput) => void): void;
421
266
  createSnapshotSchedule(args: CreateSnapshotScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotScheduleCommandOutput) => void): void;
422
267
  /**
423
- * @public
424
- * <p>Adds tags to a cluster.</p>
425
- * <p>A resource can have up to 50 tags. If you try to create more than 50 tags for a
426
- * resource, you will receive an error and the attempt will fail.</p>
427
- * <p>If you specify a key that already exists for the resource, the value for that key
428
- * will be updated with the new value.</p>
268
+ * @see {@link CreateTagsCommand}
429
269
  */
430
270
  createTags(args: CreateTagsCommandInput, options?: __HttpHandlerOptions): Promise<CreateTagsCommandOutput>;
431
271
  createTags(args: CreateTagsCommandInput, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
432
272
  createTags(args: CreateTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTagsCommandOutput) => void): void;
433
273
  /**
434
- * @public
435
- * <p>Creates a usage limit for a specified Amazon Redshift feature on a cluster.
436
- * The usage limit is identified by the returned usage limit identifier.</p>
274
+ * @see {@link CreateUsageLimitCommand}
437
275
  */
438
276
  createUsageLimit(args: CreateUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<CreateUsageLimitCommandOutput>;
439
277
  createUsageLimit(args: CreateUsageLimitCommandInput, cb: (err: any, data?: CreateUsageLimitCommandOutput) => void): void;
440
278
  createUsageLimit(args: CreateUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUsageLimitCommandOutput) => void): void;
441
279
  /**
442
- * @public
443
- * <p>From a datashare producer account, removes authorization from the specified datashare. </p>
280
+ * @see {@link DeauthorizeDataShareCommand}
444
281
  */
445
282
  deauthorizeDataShare(args: DeauthorizeDataShareCommandInput, options?: __HttpHandlerOptions): Promise<DeauthorizeDataShareCommandOutput>;
446
283
  deauthorizeDataShare(args: DeauthorizeDataShareCommandInput, cb: (err: any, data?: DeauthorizeDataShareCommandOutput) => void): void;
447
284
  deauthorizeDataShare(args: DeauthorizeDataShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeauthorizeDataShareCommandOutput) => void): void;
448
285
  /**
449
- * @public
450
- * <p>Deletes an authentication profile.</p>
286
+ * @see {@link DeleteAuthenticationProfileCommand}
451
287
  */
452
288
  deleteAuthenticationProfile(args: DeleteAuthenticationProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAuthenticationProfileCommandOutput>;
453
289
  deleteAuthenticationProfile(args: DeleteAuthenticationProfileCommandInput, cb: (err: any, data?: DeleteAuthenticationProfileCommandOutput) => void): void;
454
290
  deleteAuthenticationProfile(args: DeleteAuthenticationProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAuthenticationProfileCommandOutput) => void): void;
455
291
  /**
456
- * @public
457
- * <p>Deletes a previously provisioned cluster without its final snapshot being created. A successful response from the web
458
- * service indicates that the request was received correctly. Use <a>DescribeClusters</a> to monitor the status of the deletion. The delete
459
- * operation cannot be canceled or reverted once submitted.
460
- * For more information about managing clusters, go to
461
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
462
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
463
- * <p>If you want to shut down the cluster and retain it for future use, set
464
- * <i>SkipFinalClusterSnapshot</i> to <code>false</code> and specify a
465
- * name for <i>FinalClusterSnapshotIdentifier</i>. You can later restore this
466
- * snapshot to resume using the cluster. If a final cluster snapshot is requested, the
467
- * status of the cluster will be "final-snapshot" while the snapshot is being taken, then
468
- * it's "deleting" once Amazon Redshift begins deleting the cluster. </p>
469
- * <p>
470
- * For more information about managing clusters, go to
471
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
472
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
292
+ * @see {@link DeleteClusterCommand}
473
293
  */
474
294
  deleteCluster(args: DeleteClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterCommandOutput>;
475
295
  deleteCluster(args: DeleteClusterCommandInput, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
476
296
  deleteCluster(args: DeleteClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
477
297
  /**
478
- * @public
479
- * <p>Deletes a specified Amazon Redshift parameter group.</p>
480
- * <note>
481
- * <p>You cannot delete a parameter group if it is associated with a
482
- * cluster.</p>
483
- * </note>
298
+ * @see {@link DeleteClusterParameterGroupCommand}
484
299
  */
485
300
  deleteClusterParameterGroup(args: DeleteClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterParameterGroupCommandOutput>;
486
301
  deleteClusterParameterGroup(args: DeleteClusterParameterGroupCommandInput, cb: (err: any, data?: DeleteClusterParameterGroupCommandOutput) => void): void;
487
302
  deleteClusterParameterGroup(args: DeleteClusterParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterParameterGroupCommandOutput) => void): void;
488
303
  /**
489
- * @public
490
- * <p>Deletes an Amazon Redshift security group.</p>
491
- * <note>
492
- * <p>You cannot delete a security group that is associated with any clusters. You
493
- * cannot delete the default security group.</p>
494
- * </note>
495
- * <p>
496
- * For information about managing security groups, go to
497
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html">Amazon Redshift Cluster Security Groups</a> in the
498
- * <i>Amazon Redshift Cluster Management Guide</i>.</p>
304
+ * @see {@link DeleteClusterSecurityGroupCommand}
499
305
  */
500
306
  deleteClusterSecurityGroup(args: DeleteClusterSecurityGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterSecurityGroupCommandOutput>;
501
307
  deleteClusterSecurityGroup(args: DeleteClusterSecurityGroupCommandInput, cb: (err: any, data?: DeleteClusterSecurityGroupCommandOutput) => void): void;
502
308
  deleteClusterSecurityGroup(args: DeleteClusterSecurityGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterSecurityGroupCommandOutput) => void): void;
503
309
  /**
504
- * @public
505
- * <p>Deletes the specified manual snapshot. The snapshot must be in the
506
- * <code>available</code> state, with no other users authorized to access the snapshot. </p>
507
- * <p>Unlike automated snapshots, manual snapshots are retained even after you delete
508
- * your cluster. Amazon Redshift does not delete your manual snapshots. You must delete manual
509
- * snapshot explicitly to avoid getting charged. If other accounts are authorized to access
510
- * the snapshot, you must revoke all of the authorizations before you can delete the
511
- * snapshot.</p>
310
+ * @see {@link DeleteClusterSnapshotCommand}
512
311
  */
513
312
  deleteClusterSnapshot(args: DeleteClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterSnapshotCommandOutput>;
514
313
  deleteClusterSnapshot(args: DeleteClusterSnapshotCommandInput, cb: (err: any, data?: DeleteClusterSnapshotCommandOutput) => void): void;
515
314
  deleteClusterSnapshot(args: DeleteClusterSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterSnapshotCommandOutput) => void): void;
516
315
  /**
517
- * @public
518
- * <p>Deletes the specified cluster subnet group.</p>
316
+ * @see {@link DeleteClusterSubnetGroupCommand}
519
317
  */
520
318
  deleteClusterSubnetGroup(args: DeleteClusterSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterSubnetGroupCommandOutput>;
521
319
  deleteClusterSubnetGroup(args: DeleteClusterSubnetGroupCommandInput, cb: (err: any, data?: DeleteClusterSubnetGroupCommandOutput) => void): void;
522
320
  deleteClusterSubnetGroup(args: DeleteClusterSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterSubnetGroupCommandOutput) => void): void;
523
321
  /**
524
- * @public
525
- * <p>Deletes a Redshift-managed VPC endpoint.</p>
322
+ * @see {@link DeleteEndpointAccessCommand}
526
323
  */
527
324
  deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointAccessCommandOutput>;
528
325
  deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, cb: (err: any, data?: DeleteEndpointAccessCommandOutput) => void): void;
529
326
  deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointAccessCommandOutput) => void): void;
530
327
  /**
531
- * @public
532
- * <p>Deletes an Amazon Redshift event notification subscription.</p>
328
+ * @see {@link DeleteEventSubscriptionCommand}
533
329
  */
534
330
  deleteEventSubscription(args: DeleteEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventSubscriptionCommandOutput>;
535
331
  deleteEventSubscription(args: DeleteEventSubscriptionCommandInput, cb: (err: any, data?: DeleteEventSubscriptionCommandOutput) => void): void;
536
332
  deleteEventSubscription(args: DeleteEventSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventSubscriptionCommandOutput) => void): void;
537
333
  /**
538
- * @public
539
- * <p>Deletes the specified HSM client certificate.</p>
334
+ * @see {@link DeleteHsmClientCertificateCommand}
540
335
  */
541
336
  deleteHsmClientCertificate(args: DeleteHsmClientCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHsmClientCertificateCommandOutput>;
542
337
  deleteHsmClientCertificate(args: DeleteHsmClientCertificateCommandInput, cb: (err: any, data?: DeleteHsmClientCertificateCommandOutput) => void): void;
543
338
  deleteHsmClientCertificate(args: DeleteHsmClientCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHsmClientCertificateCommandOutput) => void): void;
544
339
  /**
545
- * @public
546
- * <p>Deletes the specified Amazon Redshift HSM configuration.</p>
340
+ * @see {@link DeleteHsmConfigurationCommand}
547
341
  */
548
342
  deleteHsmConfiguration(args: DeleteHsmConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHsmConfigurationCommandOutput>;
549
343
  deleteHsmConfiguration(args: DeleteHsmConfigurationCommandInput, cb: (err: any, data?: DeleteHsmConfigurationCommandOutput) => void): void;
550
344
  deleteHsmConfiguration(args: DeleteHsmConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHsmConfigurationCommandOutput) => void): void;
551
345
  /**
552
- * @public
553
- * <p>Deletes a partner integration from a cluster. Data can still flow to the cluster until the integration is deleted at the partner's website.</p>
346
+ * @see {@link DeletePartnerCommand}
554
347
  */
555
348
  deletePartner(args: DeletePartnerCommandInput, options?: __HttpHandlerOptions): Promise<DeletePartnerCommandOutput>;
556
349
  deletePartner(args: DeletePartnerCommandInput, cb: (err: any, data?: DeletePartnerCommandOutput) => void): void;
557
350
  deletePartner(args: DeletePartnerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePartnerCommandOutput) => void): void;
558
351
  /**
559
- * @public
560
- * <p>Deletes a scheduled action.
561
- * </p>
352
+ * @see {@link DeleteScheduledActionCommand}
562
353
  */
563
354
  deleteScheduledAction(args: DeleteScheduledActionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScheduledActionCommandOutput>;
564
355
  deleteScheduledAction(args: DeleteScheduledActionCommandInput, cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void): void;
565
356
  deleteScheduledAction(args: DeleteScheduledActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduledActionCommandOutput) => void): void;
566
357
  /**
567
- * @public
568
- * <p>Deletes the specified snapshot copy grant.</p>
358
+ * @see {@link DeleteSnapshotCopyGrantCommand}
569
359
  */
570
360
  deleteSnapshotCopyGrant(args: DeleteSnapshotCopyGrantCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotCopyGrantCommandOutput>;
571
361
  deleteSnapshotCopyGrant(args: DeleteSnapshotCopyGrantCommandInput, cb: (err: any, data?: DeleteSnapshotCopyGrantCommandOutput) => void): void;
572
362
  deleteSnapshotCopyGrant(args: DeleteSnapshotCopyGrantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCopyGrantCommandOutput) => void): void;
573
363
  /**
574
- * @public
575
- * <p>Deletes a snapshot schedule.</p>
364
+ * @see {@link DeleteSnapshotScheduleCommand}
576
365
  */
577
366
  deleteSnapshotSchedule(args: DeleteSnapshotScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotScheduleCommandOutput>;
578
367
  deleteSnapshotSchedule(args: DeleteSnapshotScheduleCommandInput, cb: (err: any, data?: DeleteSnapshotScheduleCommandOutput) => void): void;
579
368
  deleteSnapshotSchedule(args: DeleteSnapshotScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotScheduleCommandOutput) => void): void;
580
369
  /**
581
- * @public
582
- * <p>Deletes tags from a resource. You must provide the ARN of the resource
583
- * from which you want to delete the tag or tags.</p>
370
+ * @see {@link DeleteTagsCommand}
584
371
  */
585
372
  deleteTags(args: DeleteTagsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTagsCommandOutput>;
586
373
  deleteTags(args: DeleteTagsCommandInput, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
587
374
  deleteTags(args: DeleteTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTagsCommandOutput) => void): void;
588
375
  /**
589
- * @public
590
- * <p>Deletes a usage limit from a cluster.</p>
376
+ * @see {@link DeleteUsageLimitCommand}
591
377
  */
592
378
  deleteUsageLimit(args: DeleteUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUsageLimitCommandOutput>;
593
379
  deleteUsageLimit(args: DeleteUsageLimitCommandInput, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
594
380
  deleteUsageLimit(args: DeleteUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
595
381
  /**
596
- * @public
597
- * <p>Returns a list of attributes attached to an account</p>
382
+ * @see {@link DescribeAccountAttributesCommand}
598
383
  */
599
384
  describeAccountAttributes(args: DescribeAccountAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountAttributesCommandOutput>;
600
385
  describeAccountAttributes(args: DescribeAccountAttributesCommandInput, cb: (err: any, data?: DescribeAccountAttributesCommandOutput) => void): void;
601
386
  describeAccountAttributes(args: DescribeAccountAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountAttributesCommandOutput) => void): void;
602
387
  /**
603
- * @public
604
- * <p>Describes an authentication profile.</p>
388
+ * @see {@link DescribeAuthenticationProfilesCommand}
605
389
  */
606
390
  describeAuthenticationProfiles(args: DescribeAuthenticationProfilesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAuthenticationProfilesCommandOutput>;
607
391
  describeAuthenticationProfiles(args: DescribeAuthenticationProfilesCommandInput, cb: (err: any, data?: DescribeAuthenticationProfilesCommandOutput) => void): void;
608
392
  describeAuthenticationProfiles(args: DescribeAuthenticationProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAuthenticationProfilesCommandOutput) => void): void;
609
393
  /**
610
- * @public
611
- * <p>Returns an array of <code>ClusterDbRevision</code> objects.</p>
394
+ * @see {@link DescribeClusterDbRevisionsCommand}
612
395
  */
613
396
  describeClusterDbRevisions(args: DescribeClusterDbRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterDbRevisionsCommandOutput>;
614
397
  describeClusterDbRevisions(args: DescribeClusterDbRevisionsCommandInput, cb: (err: any, data?: DescribeClusterDbRevisionsCommandOutput) => void): void;
615
398
  describeClusterDbRevisions(args: DescribeClusterDbRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterDbRevisionsCommandOutput) => void): void;
616
399
  /**
617
- * @public
618
- * <p>Returns a list of Amazon Redshift parameter groups, including parameter groups you
619
- * created and the default parameter group. For each parameter group, the response includes
620
- * the parameter group name, description, and parameter group family name. You can
621
- * optionally specify a name to retrieve the description of a specific parameter
622
- * group.</p>
623
- * <p>
624
- * For more information about parameters and parameter groups, go to
625
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon Redshift Parameter Groups</a>
626
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
627
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
628
- * all parameter groups that match any combination of the specified keys and values. For
629
- * example, if you have <code>owner</code> and <code>environment</code> for tag keys, and
630
- * <code>admin</code> and <code>test</code> for tag values, all parameter groups that
631
- * have any combination of those values are returned.</p>
632
- * <p>If both tag keys and values are omitted from the request, parameter groups are
633
- * returned regardless of whether they have tag keys or values associated with
634
- * them.</p>
400
+ * @see {@link DescribeClusterParameterGroupsCommand}
635
401
  */
636
402
  describeClusterParameterGroups(args: DescribeClusterParameterGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterParameterGroupsCommandOutput>;
637
403
  describeClusterParameterGroups(args: DescribeClusterParameterGroupsCommandInput, cb: (err: any, data?: DescribeClusterParameterGroupsCommandOutput) => void): void;
638
404
  describeClusterParameterGroups(args: DescribeClusterParameterGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterParameterGroupsCommandOutput) => void): void;
639
405
  /**
640
- * @public
641
- * <p>Returns a detailed list of parameters contained within the specified Amazon Redshift
642
- * parameter group. For each parameter the response includes information such as parameter
643
- * name, description, data type, value, whether the parameter value is modifiable, and so
644
- * on.</p>
645
- * <p>You can specify <i>source</i> filter to retrieve parameters of only
646
- * specific type. For example, to retrieve parameters that were modified by a user action
647
- * such as from <a>ModifyClusterParameterGroup</a>, you can specify
648
- * <i>source</i> equal to <i>user</i>.</p>
649
- * <p>
650
- * For more information about parameters and parameter groups, go to
651
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon Redshift Parameter Groups</a>
652
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
406
+ * @see {@link DescribeClusterParametersCommand}
653
407
  */
654
408
  describeClusterParameters(args: DescribeClusterParametersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterParametersCommandOutput>;
655
409
  describeClusterParameters(args: DescribeClusterParametersCommandInput, cb: (err: any, data?: DescribeClusterParametersCommandOutput) => void): void;
656
410
  describeClusterParameters(args: DescribeClusterParametersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterParametersCommandOutput) => void): void;
657
411
  /**
658
- * @public
659
- * <p>Returns properties of provisioned clusters including general cluster properties,
660
- * cluster database properties, maintenance and backup properties, and security and access
661
- * properties. This operation supports pagination.
662
- * For more information about managing clusters, go to
663
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
664
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
665
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
666
- * all clusters that match any combination of the specified keys and values. For example,
667
- * if you have <code>owner</code> and <code>environment</code> for tag keys, and
668
- * <code>admin</code> and <code>test</code> for tag values, all clusters that have any
669
- * combination of those values are returned.</p>
670
- * <p>If both tag keys and values are omitted from the request, clusters are returned
671
- * regardless of whether they have tag keys or values associated with them.</p>
412
+ * @see {@link DescribeClustersCommand}
672
413
  */
673
414
  describeClusters(args: DescribeClustersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClustersCommandOutput>;
674
415
  describeClusters(args: DescribeClustersCommandInput, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
675
416
  describeClusters(args: DescribeClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
676
417
  /**
677
- * @public
678
- * <p>Returns information about Amazon Redshift security groups. If the name of a security
679
- * group is specified, the response will contain only information about only that security
680
- * group.</p>
681
- * <p>
682
- * For information about managing security groups, go to
683
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html">Amazon Redshift Cluster Security Groups</a> in the
684
- * <i>Amazon Redshift Cluster Management Guide</i>.</p>
685
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
686
- * all security groups that match any combination of the specified keys and values. For
687
- * example, if you have <code>owner</code> and <code>environment</code> for tag keys, and
688
- * <code>admin</code> and <code>test</code> for tag values, all security groups that
689
- * have any combination of those values are returned.</p>
690
- * <p>If both tag keys and values are omitted from the request, security groups are
691
- * returned regardless of whether they have tag keys or values associated with
692
- * them.</p>
418
+ * @see {@link DescribeClusterSecurityGroupsCommand}
693
419
  */
694
420
  describeClusterSecurityGroups(args: DescribeClusterSecurityGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterSecurityGroupsCommandOutput>;
695
421
  describeClusterSecurityGroups(args: DescribeClusterSecurityGroupsCommandInput, cb: (err: any, data?: DescribeClusterSecurityGroupsCommandOutput) => void): void;
696
422
  describeClusterSecurityGroups(args: DescribeClusterSecurityGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterSecurityGroupsCommandOutput) => void): void;
697
423
  /**
698
- * @public
699
- * <p>Returns one or more snapshot objects, which contain metadata about your cluster
700
- * snapshots. By default, this operation returns information about all snapshots of all
701
- * clusters that are owned by your Amazon Web Services account. No information is returned for
702
- * snapshots owned by inactive Amazon Web Services accounts.</p>
703
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
704
- * all snapshots that match any combination of the specified keys and values. For example,
705
- * if you have <code>owner</code> and <code>environment</code> for tag keys, and
706
- * <code>admin</code> and <code>test</code> for tag values, all snapshots that have any
707
- * combination of those values are returned. Only snapshots that you own are returned in
708
- * the response; shared snapshots are not returned with the tag key and tag value request
709
- * parameters.</p>
710
- * <p>If both tag keys and values are omitted from the request, snapshots are returned
711
- * regardless of whether they have tag keys or values associated with them.</p>
424
+ * @see {@link DescribeClusterSnapshotsCommand}
712
425
  */
713
426
  describeClusterSnapshots(args: DescribeClusterSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterSnapshotsCommandOutput>;
714
427
  describeClusterSnapshots(args: DescribeClusterSnapshotsCommandInput, cb: (err: any, data?: DescribeClusterSnapshotsCommandOutput) => void): void;
715
428
  describeClusterSnapshots(args: DescribeClusterSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterSnapshotsCommandOutput) => void): void;
716
429
  /**
717
- * @public
718
- * <p>Returns one or more cluster subnet group objects, which contain metadata about your
719
- * cluster subnet groups. By default, this operation returns information about all cluster
720
- * subnet groups that are defined in your Amazon Web Services account.</p>
721
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
722
- * all subnet groups that match any combination of the specified keys and values. For
723
- * example, if you have <code>owner</code> and <code>environment</code> for tag keys, and
724
- * <code>admin</code> and <code>test</code> for tag values, all subnet groups that have
725
- * any combination of those values are returned.</p>
726
- * <p>If both tag keys and values are omitted from the request, subnet groups are
727
- * returned regardless of whether they have tag keys or values associated with
728
- * them.</p>
430
+ * @see {@link DescribeClusterSubnetGroupsCommand}
729
431
  */
730
432
  describeClusterSubnetGroups(args: DescribeClusterSubnetGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterSubnetGroupsCommandOutput>;
731
433
  describeClusterSubnetGroups(args: DescribeClusterSubnetGroupsCommandInput, cb: (err: any, data?: DescribeClusterSubnetGroupsCommandOutput) => void): void;
732
434
  describeClusterSubnetGroups(args: DescribeClusterSubnetGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterSubnetGroupsCommandOutput) => void): void;
733
435
  /**
734
- * @public
735
- * <p>Returns a list of all the available maintenance tracks.</p>
436
+ * @see {@link DescribeClusterTracksCommand}
736
437
  */
737
438
  describeClusterTracks(args: DescribeClusterTracksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterTracksCommandOutput>;
738
439
  describeClusterTracks(args: DescribeClusterTracksCommandInput, cb: (err: any, data?: DescribeClusterTracksCommandOutput) => void): void;
739
440
  describeClusterTracks(args: DescribeClusterTracksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterTracksCommandOutput) => void): void;
740
441
  /**
741
- * @public
742
- * <p>Returns descriptions of the available Amazon Redshift cluster versions. You can call this
743
- * operation even before creating any clusters to learn more about the Amazon Redshift versions.
744
- *
745
- * For more information about managing clusters, go to
746
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
747
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
442
+ * @see {@link DescribeClusterVersionsCommand}
748
443
  */
749
444
  describeClusterVersions(args: DescribeClusterVersionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterVersionsCommandOutput>;
750
445
  describeClusterVersions(args: DescribeClusterVersionsCommandInput, cb: (err: any, data?: DescribeClusterVersionsCommandOutput) => void): void;
751
446
  describeClusterVersions(args: DescribeClusterVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterVersionsCommandOutput) => void): void;
752
447
  /**
753
- * @public
754
- * <p>Shows the status of any inbound or outbound datashares available in the specified
755
- * account.</p>
448
+ * @see {@link DescribeDataSharesCommand}
756
449
  */
757
450
  describeDataShares(args: DescribeDataSharesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataSharesCommandOutput>;
758
451
  describeDataShares(args: DescribeDataSharesCommandInput, cb: (err: any, data?: DescribeDataSharesCommandOutput) => void): void;
759
452
  describeDataShares(args: DescribeDataSharesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataSharesCommandOutput) => void): void;
760
453
  /**
761
- * @public
762
- * <p>Returns a list of datashares where the account identifier being called is a consumer account identifier.</p>
454
+ * @see {@link DescribeDataSharesForConsumerCommand}
763
455
  */
764
456
  describeDataSharesForConsumer(args: DescribeDataSharesForConsumerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataSharesForConsumerCommandOutput>;
765
457
  describeDataSharesForConsumer(args: DescribeDataSharesForConsumerCommandInput, cb: (err: any, data?: DescribeDataSharesForConsumerCommandOutput) => void): void;
766
458
  describeDataSharesForConsumer(args: DescribeDataSharesForConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataSharesForConsumerCommandOutput) => void): void;
767
459
  /**
768
- * @public
769
- * <p>Returns a list of datashares when the account identifier being called is a producer account identifier.</p>
460
+ * @see {@link DescribeDataSharesForProducerCommand}
770
461
  */
771
462
  describeDataSharesForProducer(args: DescribeDataSharesForProducerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataSharesForProducerCommandOutput>;
772
463
  describeDataSharesForProducer(args: DescribeDataSharesForProducerCommandInput, cb: (err: any, data?: DescribeDataSharesForProducerCommandOutput) => void): void;
773
464
  describeDataSharesForProducer(args: DescribeDataSharesForProducerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataSharesForProducerCommandOutput) => void): void;
774
465
  /**
775
- * @public
776
- * <p>Returns a list of parameter settings for the specified parameter group
777
- * family.</p>
778
- * <p>
779
- * For more information about parameters and parameter groups, go to
780
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon Redshift Parameter Groups</a>
781
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
466
+ * @see {@link DescribeDefaultClusterParametersCommand}
782
467
  */
783
468
  describeDefaultClusterParameters(args: DescribeDefaultClusterParametersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDefaultClusterParametersCommandOutput>;
784
469
  describeDefaultClusterParameters(args: DescribeDefaultClusterParametersCommandInput, cb: (err: any, data?: DescribeDefaultClusterParametersCommandOutput) => void): void;
785
470
  describeDefaultClusterParameters(args: DescribeDefaultClusterParametersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDefaultClusterParametersCommandOutput) => void): void;
786
471
  /**
787
- * @public
788
- * <p>Describes a Redshift-managed VPC endpoint.</p>
472
+ * @see {@link DescribeEndpointAccessCommand}
789
473
  */
790
474
  describeEndpointAccess(args: DescribeEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointAccessCommandOutput>;
791
475
  describeEndpointAccess(args: DescribeEndpointAccessCommandInput, cb: (err: any, data?: DescribeEndpointAccessCommandOutput) => void): void;
792
476
  describeEndpointAccess(args: DescribeEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointAccessCommandOutput) => void): void;
793
477
  /**
794
- * @public
795
- * <p>Describes an endpoint authorization.</p>
478
+ * @see {@link DescribeEndpointAuthorizationCommand}
796
479
  */
797
480
  describeEndpointAuthorization(args: DescribeEndpointAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointAuthorizationCommandOutput>;
798
481
  describeEndpointAuthorization(args: DescribeEndpointAuthorizationCommandInput, cb: (err: any, data?: DescribeEndpointAuthorizationCommandOutput) => void): void;
799
482
  describeEndpointAuthorization(args: DescribeEndpointAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointAuthorizationCommandOutput) => void): void;
800
483
  /**
801
- * @public
802
- * <p>Displays a list of event categories for all event source types, or for a specified
803
- * source type. For a list of the event categories and source types, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-event-notifications.html">Amazon Redshift Event
804
- * Notifications</a>.</p>
484
+ * @see {@link DescribeEventCategoriesCommand}
805
485
  */
806
486
  describeEventCategories(args: DescribeEventCategoriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventCategoriesCommandOutput>;
807
487
  describeEventCategories(args: DescribeEventCategoriesCommandInput, cb: (err: any, data?: DescribeEventCategoriesCommandOutput) => void): void;
808
488
  describeEventCategories(args: DescribeEventCategoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventCategoriesCommandOutput) => void): void;
809
489
  /**
810
- * @public
811
- * <p>Returns events related to clusters, security groups, snapshots, and parameter
812
- * groups for the past 14 days. Events specific to a particular cluster, security group,
813
- * snapshot or parameter group can be obtained by providing the name as a parameter. By
814
- * default, the past hour of events are returned.</p>
490
+ * @see {@link DescribeEventsCommand}
815
491
  */
816
492
  describeEvents(args: DescribeEventsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventsCommandOutput>;
817
493
  describeEvents(args: DescribeEventsCommandInput, cb: (err: any, data?: DescribeEventsCommandOutput) => void): void;
818
494
  describeEvents(args: DescribeEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventsCommandOutput) => void): void;
819
495
  /**
820
- * @public
821
- * <p>Lists descriptions of all the Amazon Redshift event notification subscriptions for a
822
- * customer account. If you specify a subscription name, lists the description for that
823
- * subscription.</p>
824
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
825
- * all event notification subscriptions that match any combination of the specified keys
826
- * and values. For example, if you have <code>owner</code> and <code>environment</code> for
827
- * tag keys, and <code>admin</code> and <code>test</code> for tag values, all subscriptions
828
- * that have any combination of those values are returned.</p>
829
- * <p>If both tag keys and values are omitted from the request, subscriptions are
830
- * returned regardless of whether they have tag keys or values associated with
831
- * them.</p>
496
+ * @see {@link DescribeEventSubscriptionsCommand}
832
497
  */
833
498
  describeEventSubscriptions(args: DescribeEventSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventSubscriptionsCommandOutput>;
834
499
  describeEventSubscriptions(args: DescribeEventSubscriptionsCommandInput, cb: (err: any, data?: DescribeEventSubscriptionsCommandOutput) => void): void;
835
500
  describeEventSubscriptions(args: DescribeEventSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventSubscriptionsCommandOutput) => void): void;
836
501
  /**
837
- * @public
838
- * <p>Returns information about the specified HSM client certificate. If no certificate
839
- * ID is specified, returns information about all the HSM certificates owned by your Amazon Web Services account.</p>
840
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
841
- * all HSM client certificates that match any combination of the specified keys and values.
842
- * For example, if you have <code>owner</code> and <code>environment</code> for tag keys,
843
- * and <code>admin</code> and <code>test</code> for tag values, all HSM client certificates
844
- * that have any combination of those values are returned.</p>
845
- * <p>If both tag keys and values are omitted from the request, HSM client certificates
846
- * are returned regardless of whether they have tag keys or values associated with
847
- * them.</p>
502
+ * @see {@link DescribeHsmClientCertificatesCommand}
848
503
  */
849
504
  describeHsmClientCertificates(args: DescribeHsmClientCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHsmClientCertificatesCommandOutput>;
850
505
  describeHsmClientCertificates(args: DescribeHsmClientCertificatesCommandInput, cb: (err: any, data?: DescribeHsmClientCertificatesCommandOutput) => void): void;
851
506
  describeHsmClientCertificates(args: DescribeHsmClientCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHsmClientCertificatesCommandOutput) => void): void;
852
507
  /**
853
- * @public
854
- * <p>Returns information about the specified Amazon Redshift HSM configuration. If no
855
- * configuration ID is specified, returns information about all the HSM configurations
856
- * owned by your Amazon Web Services account.</p>
857
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
858
- * all HSM connections that match any combination of the specified keys and values. For
859
- * example, if you have <code>owner</code> and <code>environment</code> for tag keys, and
860
- * <code>admin</code> and <code>test</code> for tag values, all HSM connections that
861
- * have any combination of those values are returned.</p>
862
- * <p>If both tag keys and values are omitted from the request, HSM connections are
863
- * returned regardless of whether they have tag keys or values associated with
864
- * them.</p>
508
+ * @see {@link DescribeHsmConfigurationsCommand}
865
509
  */
866
510
  describeHsmConfigurations(args: DescribeHsmConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHsmConfigurationsCommandOutput>;
867
511
  describeHsmConfigurations(args: DescribeHsmConfigurationsCommandInput, cb: (err: any, data?: DescribeHsmConfigurationsCommandOutput) => void): void;
868
512
  describeHsmConfigurations(args: DescribeHsmConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHsmConfigurationsCommandOutput) => void): void;
869
513
  /**
870
- * @public
871
- * <p>Describes whether information, such as queries and connection attempts, is being
872
- * logged for the specified Amazon Redshift cluster.</p>
514
+ * @see {@link DescribeLoggingStatusCommand}
873
515
  */
874
516
  describeLoggingStatus(args: DescribeLoggingStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoggingStatusCommandOutput>;
875
517
  describeLoggingStatus(args: DescribeLoggingStatusCommandInput, cb: (err: any, data?: DescribeLoggingStatusCommandOutput) => void): void;
876
518
  describeLoggingStatus(args: DescribeLoggingStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoggingStatusCommandOutput) => void): void;
877
519
  /**
878
- * @public
879
- * <p>Returns properties of possible node configurations such as node type, number of nodes, and
880
- * disk usage for the specified action type.</p>
520
+ * @see {@link DescribeNodeConfigurationOptionsCommand}
881
521
  */
882
522
  describeNodeConfigurationOptions(args: DescribeNodeConfigurationOptionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNodeConfigurationOptionsCommandOutput>;
883
523
  describeNodeConfigurationOptions(args: DescribeNodeConfigurationOptionsCommandInput, cb: (err: any, data?: DescribeNodeConfigurationOptionsCommandOutput) => void): void;
884
524
  describeNodeConfigurationOptions(args: DescribeNodeConfigurationOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNodeConfigurationOptionsCommandOutput) => void): void;
885
525
  /**
886
- * @public
887
- * <p>Returns a list of orderable cluster options. Before you create a new cluster you
888
- * can use this operation to find what options are available, such as the EC2 Availability
889
- * Zones (AZ) in the specific Amazon Web Services Region that you can specify, and the node types you can
890
- * request. The node types differ by available storage, memory, CPU and price. With the
891
- * cost involved you might want to obtain a list of cluster options in the specific region
892
- * and specify values when creating a cluster.
893
- * For more information about managing clusters, go to
894
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
895
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
526
+ * @see {@link DescribeOrderableClusterOptionsCommand}
896
527
  */
897
528
  describeOrderableClusterOptions(args: DescribeOrderableClusterOptionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOrderableClusterOptionsCommandOutput>;
898
529
  describeOrderableClusterOptions(args: DescribeOrderableClusterOptionsCommandInput, cb: (err: any, data?: DescribeOrderableClusterOptionsCommandOutput) => void): void;
899
530
  describeOrderableClusterOptions(args: DescribeOrderableClusterOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOrderableClusterOptionsCommandOutput) => void): void;
900
531
  /**
901
- * @public
902
- * <p>Returns information about the partner integrations defined for a cluster.</p>
532
+ * @see {@link DescribePartnersCommand}
903
533
  */
904
534
  describePartners(args: DescribePartnersCommandInput, options?: __HttpHandlerOptions): Promise<DescribePartnersCommandOutput>;
905
535
  describePartners(args: DescribePartnersCommandInput, cb: (err: any, data?: DescribePartnersCommandOutput) => void): void;
906
536
  describePartners(args: DescribePartnersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePartnersCommandOutput) => void): void;
907
537
  /**
908
- * @public
909
- * <p>Returns exchange status details and associated metadata for a reserved-node
910
- * exchange. Statuses include such values as in progress and requested.</p>
538
+ * @see {@link DescribeReservedNodeExchangeStatusCommand}
911
539
  */
912
540
  describeReservedNodeExchangeStatus(args: DescribeReservedNodeExchangeStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedNodeExchangeStatusCommandOutput>;
913
541
  describeReservedNodeExchangeStatus(args: DescribeReservedNodeExchangeStatusCommandInput, cb: (err: any, data?: DescribeReservedNodeExchangeStatusCommandOutput) => void): void;
914
542
  describeReservedNodeExchangeStatus(args: DescribeReservedNodeExchangeStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedNodeExchangeStatusCommandOutput) => void): void;
915
543
  /**
916
- * @public
917
- * <p>Returns a list of the available reserved node offerings by Amazon Redshift with their
918
- * descriptions including the node type, the fixed and recurring costs of reserving the
919
- * node and duration the node will be reserved for you. These descriptions help you
920
- * determine which reserve node offering you want to purchase. You then use the unique
921
- * offering ID in you call to <a>PurchaseReservedNodeOffering</a> to reserve one
922
- * or more nodes for your Amazon Redshift cluster. </p>
923
- * <p>
924
- * For more information about reserved node offerings, go to
925
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html">Purchasing Reserved Nodes</a>
926
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
544
+ * @see {@link DescribeReservedNodeOfferingsCommand}
927
545
  */
928
546
  describeReservedNodeOfferings(args: DescribeReservedNodeOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedNodeOfferingsCommandOutput>;
929
547
  describeReservedNodeOfferings(args: DescribeReservedNodeOfferingsCommandInput, cb: (err: any, data?: DescribeReservedNodeOfferingsCommandOutput) => void): void;
930
548
  describeReservedNodeOfferings(args: DescribeReservedNodeOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedNodeOfferingsCommandOutput) => void): void;
931
549
  /**
932
- * @public
933
- * <p>Returns the descriptions of the reserved nodes.</p>
550
+ * @see {@link DescribeReservedNodesCommand}
934
551
  */
935
552
  describeReservedNodes(args: DescribeReservedNodesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedNodesCommandOutput>;
936
553
  describeReservedNodes(args: DescribeReservedNodesCommandInput, cb: (err: any, data?: DescribeReservedNodesCommandOutput) => void): void;
937
554
  describeReservedNodes(args: DescribeReservedNodesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedNodesCommandOutput) => void): void;
938
555
  /**
939
- * @public
940
- * <p>Returns information about the last resize operation for the specified cluster. If
941
- * no resize operation has ever been initiated for the specified cluster, a <code>HTTP
942
- * 404</code> error is returned. If a resize operation was initiated and completed, the
943
- * status of the resize remains as <code>SUCCEEDED</code> until the next resize. </p>
944
- * <p>A resize operation can be requested using <a>ModifyCluster</a> and
945
- * specifying a different number or type of nodes for the cluster. </p>
556
+ * @see {@link DescribeResizeCommand}
946
557
  */
947
558
  describeResize(args: DescribeResizeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeResizeCommandOutput>;
948
559
  describeResize(args: DescribeResizeCommandInput, cb: (err: any, data?: DescribeResizeCommandOutput) => void): void;
949
560
  describeResize(args: DescribeResizeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeResizeCommandOutput) => void): void;
950
561
  /**
951
- * @public
952
- * <p>Describes properties of scheduled actions.
953
- * </p>
562
+ * @see {@link DescribeScheduledActionsCommand}
954
563
  */
955
564
  describeScheduledActions(args: DescribeScheduledActionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduledActionsCommandOutput>;
956
565
  describeScheduledActions(args: DescribeScheduledActionsCommandInput, cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void): void;
957
566
  describeScheduledActions(args: DescribeScheduledActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduledActionsCommandOutput) => void): void;
958
567
  /**
959
- * @public
960
- * <p>Returns a list of snapshot copy grants owned by the Amazon Web Services account in the destination
961
- * region.</p>
962
- * <p>
963
- * For more information about managing snapshot copy grants, go to
964
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-db-encryption.html">Amazon Redshift Database Encryption</a>
965
- * in the <i>Amazon Redshift Cluster Management Guide</i>.
966
- * </p>
568
+ * @see {@link DescribeSnapshotCopyGrantsCommand}
967
569
  */
968
570
  describeSnapshotCopyGrants(args: DescribeSnapshotCopyGrantsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotCopyGrantsCommandOutput>;
969
571
  describeSnapshotCopyGrants(args: DescribeSnapshotCopyGrantsCommandInput, cb: (err: any, data?: DescribeSnapshotCopyGrantsCommandOutput) => void): void;
970
572
  describeSnapshotCopyGrants(args: DescribeSnapshotCopyGrantsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotCopyGrantsCommandOutput) => void): void;
971
573
  /**
972
- * @public
973
- * <p>Returns a list of snapshot schedules. </p>
574
+ * @see {@link DescribeSnapshotSchedulesCommand}
974
575
  */
975
576
  describeSnapshotSchedules(args: DescribeSnapshotSchedulesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotSchedulesCommandOutput>;
976
577
  describeSnapshotSchedules(args: DescribeSnapshotSchedulesCommandInput, cb: (err: any, data?: DescribeSnapshotSchedulesCommandOutput) => void): void;
977
578
  describeSnapshotSchedules(args: DescribeSnapshotSchedulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotSchedulesCommandOutput) => void): void;
978
579
  /**
979
- * @public
980
- * <p>Returns account level backups storage size and provisional storage.</p>
580
+ * @see {@link DescribeStorageCommand}
981
581
  */
982
582
  describeStorage(args: DescribeStorageCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageCommandOutput>;
983
583
  describeStorage(args: DescribeStorageCommandInput, cb: (err: any, data?: DescribeStorageCommandOutput) => void): void;
984
584
  describeStorage(args: DescribeStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageCommandOutput) => void): void;
985
585
  /**
986
- * @public
987
- * <p>Lists the status of one or more table restore requests made using the <a>RestoreTableFromClusterSnapshot</a> API action. If you don't specify a value
988
- * for the <code>TableRestoreRequestId</code> parameter, then
989
- * <code>DescribeTableRestoreStatus</code> returns the status of all table restore
990
- * requests ordered by the date and time of the request in ascending order. Otherwise
991
- * <code>DescribeTableRestoreStatus</code> returns the status of the table specified by
992
- * <code>TableRestoreRequestId</code>.</p>
586
+ * @see {@link DescribeTableRestoreStatusCommand}
993
587
  */
994
588
  describeTableRestoreStatus(args: DescribeTableRestoreStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTableRestoreStatusCommandOutput>;
995
589
  describeTableRestoreStatus(args: DescribeTableRestoreStatusCommandInput, cb: (err: any, data?: DescribeTableRestoreStatusCommandOutput) => void): void;
996
590
  describeTableRestoreStatus(args: DescribeTableRestoreStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTableRestoreStatusCommandOutput) => void): void;
997
591
  /**
998
- * @public
999
- * <p>Returns a list of tags. You can return tags from a specific resource by specifying
1000
- * an ARN, or you can return all tags for a given type of resource, such as clusters,
1001
- * snapshots, and so on.</p>
1002
- * <p>The following are limitations for <code>DescribeTags</code>: </p>
1003
- * <ul>
1004
- * <li>
1005
- * <p>You cannot specify an ARN and a resource-type value together in the same
1006
- * request.</p>
1007
- * </li>
1008
- * <li>
1009
- * <p>You cannot use the <code>MaxRecords</code> and <code>Marker</code>
1010
- * parameters together with the ARN parameter.</p>
1011
- * </li>
1012
- * <li>
1013
- * <p>The <code>MaxRecords</code> parameter can be a range from 10 to 50 results
1014
- * to return in a request.</p>
1015
- * </li>
1016
- * </ul>
1017
- * <p>If you specify both tag keys and tag values in the same request, Amazon Redshift returns
1018
- * all resources that match any combination of the specified keys and values. For example,
1019
- * if you have <code>owner</code> and <code>environment</code> for tag keys, and
1020
- * <code>admin</code> and <code>test</code> for tag values, all resources that have any
1021
- * combination of those values are returned.</p>
1022
- * <p>If both tag keys and values are omitted from the request, resources are returned
1023
- * regardless of whether they have tag keys or values associated with them.</p>
592
+ * @see {@link DescribeTagsCommand}
1024
593
  */
1025
594
  describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
1026
595
  describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
1027
596
  describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
1028
597
  /**
1029
- * @public
1030
- * <p>Shows usage limits on a cluster.
1031
- * Results are filtered based on the combination of input usage limit identifier, cluster identifier, and feature type parameters:</p>
1032
- * <ul>
1033
- * <li>
1034
- * <p>If usage limit identifier, cluster identifier, and feature type are not provided,
1035
- * then all usage limit objects for the current account in the current region are returned.</p>
1036
- * </li>
1037
- * <li>
1038
- * <p>If usage limit identifier is provided,
1039
- * then the corresponding usage limit object is returned.</p>
1040
- * </li>
1041
- * <li>
1042
- * <p>If cluster identifier is provided,
1043
- * then all usage limit objects for the specified cluster are returned.</p>
1044
- * </li>
1045
- * <li>
1046
- * <p>If cluster identifier and feature type are provided,
1047
- * then all usage limit objects for the combination of cluster and feature are returned.</p>
1048
- * </li>
1049
- * </ul>
598
+ * @see {@link DescribeUsageLimitsCommand}
1050
599
  */
1051
600
  describeUsageLimits(args: DescribeUsageLimitsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUsageLimitsCommandOutput>;
1052
601
  describeUsageLimits(args: DescribeUsageLimitsCommandInput, cb: (err: any, data?: DescribeUsageLimitsCommandOutput) => void): void;
1053
602
  describeUsageLimits(args: DescribeUsageLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUsageLimitsCommandOutput) => void): void;
1054
603
  /**
1055
- * @public
1056
- * <p>Stops logging information, such as queries and connection attempts, for the
1057
- * specified Amazon Redshift cluster.</p>
604
+ * @see {@link DisableLoggingCommand}
1058
605
  */
1059
606
  disableLogging(args: DisableLoggingCommandInput, options?: __HttpHandlerOptions): Promise<DisableLoggingCommandOutput>;
1060
607
  disableLogging(args: DisableLoggingCommandInput, cb: (err: any, data?: DisableLoggingCommandOutput) => void): void;
1061
608
  disableLogging(args: DisableLoggingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableLoggingCommandOutput) => void): void;
1062
609
  /**
1063
- * @public
1064
- * <p>Disables the automatic copying of snapshots from one region to another region for a
1065
- * specified cluster.</p>
1066
- * <p>If your cluster and its snapshots are encrypted using an encrypted symmetric key
1067
- * from Key Management Service, use <a>DeleteSnapshotCopyGrant</a> to delete the grant that
1068
- * grants Amazon Redshift permission to the key in the destination region. </p>
610
+ * @see {@link DisableSnapshotCopyCommand}
1069
611
  */
1070
612
  disableSnapshotCopy(args: DisableSnapshotCopyCommandInput, options?: __HttpHandlerOptions): Promise<DisableSnapshotCopyCommandOutput>;
1071
613
  disableSnapshotCopy(args: DisableSnapshotCopyCommandInput, cb: (err: any, data?: DisableSnapshotCopyCommandOutput) => void): void;
1072
614
  disableSnapshotCopy(args: DisableSnapshotCopyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableSnapshotCopyCommandOutput) => void): void;
1073
615
  /**
1074
- * @public
1075
- * <p>From a datashare consumer account, remove association for the specified datashare.
1076
- * </p>
616
+ * @see {@link DisassociateDataShareConsumerCommand}
1077
617
  */
1078
618
  disassociateDataShareConsumer(args: DisassociateDataShareConsumerCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateDataShareConsumerCommandOutput>;
1079
619
  disassociateDataShareConsumer(args: DisassociateDataShareConsumerCommandInput, cb: (err: any, data?: DisassociateDataShareConsumerCommandOutput) => void): void;
1080
620
  disassociateDataShareConsumer(args: DisassociateDataShareConsumerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateDataShareConsumerCommandOutput) => void): void;
1081
621
  /**
1082
- * @public
1083
- * <p>Starts logging information, such as queries and connection attempts, for the
1084
- * specified Amazon Redshift cluster.</p>
622
+ * @see {@link EnableLoggingCommand}
1085
623
  */
1086
624
  enableLogging(args: EnableLoggingCommandInput, options?: __HttpHandlerOptions): Promise<EnableLoggingCommandOutput>;
1087
625
  enableLogging(args: EnableLoggingCommandInput, cb: (err: any, data?: EnableLoggingCommandOutput) => void): void;
1088
626
  enableLogging(args: EnableLoggingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableLoggingCommandOutput) => void): void;
1089
627
  /**
1090
- * @public
1091
- * <p>Enables the automatic copy of snapshots from one region to another region for a
1092
- * specified cluster.</p>
628
+ * @see {@link EnableSnapshotCopyCommand}
1093
629
  */
1094
630
  enableSnapshotCopy(args: EnableSnapshotCopyCommandInput, options?: __HttpHandlerOptions): Promise<EnableSnapshotCopyCommandOutput>;
1095
631
  enableSnapshotCopy(args: EnableSnapshotCopyCommandInput, cb: (err: any, data?: EnableSnapshotCopyCommandOutput) => void): void;
1096
632
  enableSnapshotCopy(args: EnableSnapshotCopyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableSnapshotCopyCommandOutput) => void): void;
1097
633
  /**
1098
- * @public
1099
- * <p>Returns a database user name and temporary password with temporary authorization to
1100
- * log on to an Amazon Redshift database. The action returns the database user name
1101
- * prefixed with <code>IAM:</code> if <code>AutoCreate</code> is <code>False</code> or
1102
- * <code>IAMA:</code> if <code>AutoCreate</code> is <code>True</code>. You can
1103
- * optionally specify one or more database user groups that the user will join at log on.
1104
- * By default, the temporary credentials expire in 900 seconds. You can optionally specify
1105
- * a duration between 900 seconds (15 minutes) and 3600 seconds (60 minutes). For more
1106
- * information, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/generating-user-credentials.html">Using IAM Authentication
1107
- * to Generate Database User Credentials</a> in the Amazon Redshift Cluster Management Guide.</p>
1108
- * <p>The Identity and Access Management (IAM) user or role that runs
1109
- * GetClusterCredentials must have an IAM policy attached that allows access to all
1110
- * necessary actions and resources. For more information about permissions, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-identity-based.html#redshift-policy-resources.getclustercredentials-resources">Resource Policies for GetClusterCredentials</a> in the
1111
- * Amazon Redshift Cluster Management Guide.</p>
1112
- * <p>If the <code>DbGroups</code> parameter is specified, the IAM policy must allow the
1113
- * <code>redshift:JoinGroup</code> action with access to the listed
1114
- * <code>dbgroups</code>. </p>
1115
- * <p>In addition, if the <code>AutoCreate</code> parameter is set to <code>True</code>,
1116
- * then the policy must include the <code>redshift:CreateClusterUser</code>
1117
- * permission.</p>
1118
- * <p>If the <code>DbName</code> parameter is specified, the IAM policy must allow access
1119
- * to the resource <code>dbname</code> for the specified database name. </p>
634
+ * @see {@link GetClusterCredentialsCommand}
1120
635
  */
1121
636
  getClusterCredentials(args: GetClusterCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetClusterCredentialsCommandOutput>;
1122
637
  getClusterCredentials(args: GetClusterCredentialsCommandInput, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
1123
638
  getClusterCredentials(args: GetClusterCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
1124
639
  /**
1125
- * @public
1126
- * <p>Returns a database user name and temporary password with temporary authorization to
1127
- * log in to an Amazon Redshift database.
1128
- * The database user is mapped 1:1 to the source Identity and Access Management (IAM) identity.
1129
- * For more information about IAM identities, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id.html">IAM Identities (users, user groups, and roles)</a> in the
1130
- * Amazon Web Services Identity and Access Management User Guide.</p>
1131
- * <p>The Identity and Access Management (IAM) identity that runs
1132
- * this operation must have an IAM policy attached that allows access to all
1133
- * necessary actions and resources.
1134
- * For more information about permissions, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-identity-based.html">Using identity-based policies (IAM policies)</a> in the
1135
- * Amazon Redshift Cluster Management Guide. </p>
640
+ * @see {@link GetClusterCredentialsWithIAMCommand}
1136
641
  */
1137
642
  getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, options?: __HttpHandlerOptions): Promise<GetClusterCredentialsWithIAMCommandOutput>;
1138
643
  getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, cb: (err: any, data?: GetClusterCredentialsWithIAMCommandOutput) => void): void;
1139
644
  getClusterCredentialsWithIAM(args: GetClusterCredentialsWithIAMCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClusterCredentialsWithIAMCommandOutput) => void): void;
1140
645
  /**
1141
- * @public
1142
- * <p>Gets the configuration options for the reserved-node exchange. These options
1143
- * include information about the source reserved node and target reserved node offering.
1144
- * Details include the node type, the price, the node count, and the offering type.</p>
646
+ * @see {@link GetReservedNodeExchangeConfigurationOptionsCommand}
1145
647
  */
1146
648
  getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, options?: __HttpHandlerOptions): Promise<GetReservedNodeExchangeConfigurationOptionsCommandOutput>;
1147
649
  getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, cb: (err: any, data?: GetReservedNodeExchangeConfigurationOptionsCommandOutput) => void): void;
1148
650
  getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservedNodeExchangeConfigurationOptionsCommandOutput) => void): void;
1149
651
  /**
1150
- * @public
1151
- * <p>Returns an array of DC2 ReservedNodeOfferings that matches the payment type, term,
1152
- * and usage price of the given DC1 reserved node.</p>
652
+ * @see {@link GetReservedNodeExchangeOfferingsCommand}
1153
653
  */
1154
654
  getReservedNodeExchangeOfferings(args: GetReservedNodeExchangeOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<GetReservedNodeExchangeOfferingsCommandOutput>;
1155
655
  getReservedNodeExchangeOfferings(args: GetReservedNodeExchangeOfferingsCommandInput, cb: (err: any, data?: GetReservedNodeExchangeOfferingsCommandOutput) => void): void;
1156
656
  getReservedNodeExchangeOfferings(args: GetReservedNodeExchangeOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservedNodeExchangeOfferingsCommandOutput) => void): void;
1157
657
  /**
1158
- * @public
1159
- * <p>This operation is retired. Calling this operation does not change AQUA configuration. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator). </p>
658
+ * @see {@link ModifyAquaConfigurationCommand}
1160
659
  */
1161
660
  modifyAquaConfiguration(args: ModifyAquaConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyAquaConfigurationCommandOutput>;
1162
661
  modifyAquaConfiguration(args: ModifyAquaConfigurationCommandInput, cb: (err: any, data?: ModifyAquaConfigurationCommandOutput) => void): void;
1163
662
  modifyAquaConfiguration(args: ModifyAquaConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyAquaConfigurationCommandOutput) => void): void;
1164
663
  /**
1165
- * @public
1166
- * <p>Modifies an authentication profile.</p>
664
+ * @see {@link ModifyAuthenticationProfileCommand}
1167
665
  */
1168
666
  modifyAuthenticationProfile(args: ModifyAuthenticationProfileCommandInput, options?: __HttpHandlerOptions): Promise<ModifyAuthenticationProfileCommandOutput>;
1169
667
  modifyAuthenticationProfile(args: ModifyAuthenticationProfileCommandInput, cb: (err: any, data?: ModifyAuthenticationProfileCommandOutput) => void): void;
1170
668
  modifyAuthenticationProfile(args: ModifyAuthenticationProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyAuthenticationProfileCommandOutput) => void): void;
1171
669
  /**
1172
- * @public
1173
- * <p>Modifies the settings for a cluster.</p>
1174
- * <p>You can also change node type and the number of nodes to scale up or down the
1175
- * cluster. When resizing a cluster, you must specify both the number of nodes and the node
1176
- * type even if one of the parameters does not change.</p>
1177
- * <p>You can add another security or
1178
- * parameter group, or change the admin user password. Resetting a cluster password or modifying the security groups associated with a cluster do not need a reboot. However, modifying a parameter group requires a reboot for parameters to take effect.
1179
- * For more information about managing clusters, go to
1180
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
1181
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
670
+ * @see {@link ModifyClusterCommand}
1182
671
  */
1183
672
  modifyCluster(args: ModifyClusterCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterCommandOutput>;
1184
673
  modifyCluster(args: ModifyClusterCommandInput, cb: (err: any, data?: ModifyClusterCommandOutput) => void): void;
1185
674
  modifyCluster(args: ModifyClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterCommandOutput) => void): void;
1186
675
  /**
1187
- * @public
1188
- * <p>Modifies the database revision of a cluster. The database revision is a unique
1189
- * revision of the database running in a cluster.</p>
676
+ * @see {@link ModifyClusterDbRevisionCommand}
1190
677
  */
1191
678
  modifyClusterDbRevision(args: ModifyClusterDbRevisionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterDbRevisionCommandOutput>;
1192
679
  modifyClusterDbRevision(args: ModifyClusterDbRevisionCommandInput, cb: (err: any, data?: ModifyClusterDbRevisionCommandOutput) => void): void;
1193
680
  modifyClusterDbRevision(args: ModifyClusterDbRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterDbRevisionCommandOutput) => void): void;
1194
681
  /**
1195
- * @public
1196
- * <p>Modifies the list of Identity and Access Management (IAM) roles that can be
1197
- * used by the cluster to access other Amazon Web Services services.</p>
1198
- * <p>The maximum number of IAM roles that you can associate is subject to a quota.
1199
- * For more information, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html">Quotas and limits</a>
1200
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
682
+ * @see {@link ModifyClusterIamRolesCommand}
1201
683
  */
1202
684
  modifyClusterIamRoles(args: ModifyClusterIamRolesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterIamRolesCommandOutput>;
1203
685
  modifyClusterIamRoles(args: ModifyClusterIamRolesCommandInput, cb: (err: any, data?: ModifyClusterIamRolesCommandOutput) => void): void;
1204
686
  modifyClusterIamRoles(args: ModifyClusterIamRolesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterIamRolesCommandOutput) => void): void;
1205
687
  /**
1206
- * @public
1207
- * <p>Modifies the maintenance settings of a cluster.</p>
688
+ * @see {@link ModifyClusterMaintenanceCommand}
1208
689
  */
1209
690
  modifyClusterMaintenance(args: ModifyClusterMaintenanceCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterMaintenanceCommandOutput>;
1210
691
  modifyClusterMaintenance(args: ModifyClusterMaintenanceCommandInput, cb: (err: any, data?: ModifyClusterMaintenanceCommandOutput) => void): void;
1211
692
  modifyClusterMaintenance(args: ModifyClusterMaintenanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterMaintenanceCommandOutput) => void): void;
1212
693
  /**
1213
- * @public
1214
- * <p>Modifies the parameters of a parameter group. For the parameters parameter, it can't contain ASCII characters.</p>
1215
- * <p>
1216
- * For more information about parameters and parameter groups, go to
1217
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html">Amazon Redshift Parameter Groups</a>
1218
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
694
+ * @see {@link ModifyClusterParameterGroupCommand}
1219
695
  */
1220
696
  modifyClusterParameterGroup(args: ModifyClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterParameterGroupCommandOutput>;
1221
697
  modifyClusterParameterGroup(args: ModifyClusterParameterGroupCommandInput, cb: (err: any, data?: ModifyClusterParameterGroupCommandOutput) => void): void;
1222
698
  modifyClusterParameterGroup(args: ModifyClusterParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterParameterGroupCommandOutput) => void): void;
1223
699
  /**
1224
- * @public
1225
- * <p>Modifies the settings for a snapshot.</p>
1226
- * <p>This exanmple modifies the manual retention period setting for a cluster snapshot.</p>
700
+ * @see {@link ModifyClusterSnapshotCommand}
1227
701
  */
1228
702
  modifyClusterSnapshot(args: ModifyClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterSnapshotCommandOutput>;
1229
703
  modifyClusterSnapshot(args: ModifyClusterSnapshotCommandInput, cb: (err: any, data?: ModifyClusterSnapshotCommandOutput) => void): void;
1230
704
  modifyClusterSnapshot(args: ModifyClusterSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterSnapshotCommandOutput) => void): void;
1231
705
  /**
1232
- * @public
1233
- * <p>Modifies a snapshot schedule for a cluster.</p>
706
+ * @see {@link ModifyClusterSnapshotScheduleCommand}
1234
707
  */
1235
708
  modifyClusterSnapshotSchedule(args: ModifyClusterSnapshotScheduleCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterSnapshotScheduleCommandOutput>;
1236
709
  modifyClusterSnapshotSchedule(args: ModifyClusterSnapshotScheduleCommandInput, cb: (err: any, data?: ModifyClusterSnapshotScheduleCommandOutput) => void): void;
1237
710
  modifyClusterSnapshotSchedule(args: ModifyClusterSnapshotScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterSnapshotScheduleCommandOutput) => void): void;
1238
711
  /**
1239
- * @public
1240
- * <p>Modifies a cluster subnet group to include the specified list of VPC subnets. The
1241
- * operation replaces the existing list of subnets with the new list of subnets.</p>
712
+ * @see {@link ModifyClusterSubnetGroupCommand}
1242
713
  */
1243
714
  modifyClusterSubnetGroup(args: ModifyClusterSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterSubnetGroupCommandOutput>;
1244
715
  modifyClusterSubnetGroup(args: ModifyClusterSubnetGroupCommandInput, cb: (err: any, data?: ModifyClusterSubnetGroupCommandOutput) => void): void;
1245
716
  modifyClusterSubnetGroup(args: ModifyClusterSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterSubnetGroupCommandOutput) => void): void;
1246
717
  /**
1247
- * @public
1248
- * <p>Modifies a Redshift-managed VPC endpoint.</p>
718
+ * @see {@link ModifyEndpointAccessCommand}
1249
719
  */
1250
720
  modifyEndpointAccess(args: ModifyEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<ModifyEndpointAccessCommandOutput>;
1251
721
  modifyEndpointAccess(args: ModifyEndpointAccessCommandInput, cb: (err: any, data?: ModifyEndpointAccessCommandOutput) => void): void;
1252
722
  modifyEndpointAccess(args: ModifyEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyEndpointAccessCommandOutput) => void): void;
1253
723
  /**
1254
- * @public
1255
- * <p>Modifies an existing Amazon Redshift event notification subscription.</p>
724
+ * @see {@link ModifyEventSubscriptionCommand}
1256
725
  */
1257
726
  modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyEventSubscriptionCommandOutput>;
1258
727
  modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, cb: (err: any, data?: ModifyEventSubscriptionCommandOutput) => void): void;
1259
728
  modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyEventSubscriptionCommandOutput) => void): void;
1260
729
  /**
1261
- * @public
1262
- * <p>Modifies a scheduled action.
1263
- * </p>
730
+ * @see {@link ModifyScheduledActionCommand}
1264
731
  */
1265
732
  modifyScheduledAction(args: ModifyScheduledActionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyScheduledActionCommandOutput>;
1266
733
  modifyScheduledAction(args: ModifyScheduledActionCommandInput, cb: (err: any, data?: ModifyScheduledActionCommandOutput) => void): void;
1267
734
  modifyScheduledAction(args: ModifyScheduledActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyScheduledActionCommandOutput) => void): void;
1268
735
  /**
1269
- * @public
1270
- * <p>Modifies the number of days to retain snapshots in the destination Amazon Web Services Region after
1271
- * they are copied from the source Amazon Web Services Region. By default, this operation only changes the
1272
- * retention period of copied automated snapshots. The retention periods for both new and
1273
- * existing copied automated snapshots are updated with the new retention period. You can
1274
- * set the manual option to change only the retention periods of copied manual snapshots.
1275
- * If you set this option, only newly copied manual snapshots have the new retention
1276
- * period. </p>
736
+ * @see {@link ModifySnapshotCopyRetentionPeriodCommand}
1277
737
  */
1278
738
  modifySnapshotCopyRetentionPeriod(args: ModifySnapshotCopyRetentionPeriodCommandInput, options?: __HttpHandlerOptions): Promise<ModifySnapshotCopyRetentionPeriodCommandOutput>;
1279
739
  modifySnapshotCopyRetentionPeriod(args: ModifySnapshotCopyRetentionPeriodCommandInput, cb: (err: any, data?: ModifySnapshotCopyRetentionPeriodCommandOutput) => void): void;
1280
740
  modifySnapshotCopyRetentionPeriod(args: ModifySnapshotCopyRetentionPeriodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySnapshotCopyRetentionPeriodCommandOutput) => void): void;
1281
741
  /**
1282
- * @public
1283
- * <p>Modifies a snapshot schedule. Any schedule associated with a cluster is modified
1284
- * asynchronously.</p>
742
+ * @see {@link ModifySnapshotScheduleCommand}
1285
743
  */
1286
744
  modifySnapshotSchedule(args: ModifySnapshotScheduleCommandInput, options?: __HttpHandlerOptions): Promise<ModifySnapshotScheduleCommandOutput>;
1287
745
  modifySnapshotSchedule(args: ModifySnapshotScheduleCommandInput, cb: (err: any, data?: ModifySnapshotScheduleCommandOutput) => void): void;
1288
746
  modifySnapshotSchedule(args: ModifySnapshotScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySnapshotScheduleCommandOutput) => void): void;
1289
747
  /**
1290
- * @public
1291
- * <p>Modifies a usage limit in a cluster.
1292
- * You can't modify the feature type or period of a usage limit.</p>
748
+ * @see {@link ModifyUsageLimitCommand}
1293
749
  */
1294
750
  modifyUsageLimit(args: ModifyUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<ModifyUsageLimitCommandOutput>;
1295
751
  modifyUsageLimit(args: ModifyUsageLimitCommandInput, cb: (err: any, data?: ModifyUsageLimitCommandOutput) => void): void;
1296
752
  modifyUsageLimit(args: ModifyUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyUsageLimitCommandOutput) => void): void;
1297
753
  /**
1298
- * @public
1299
- * <p>Pauses a cluster.</p>
754
+ * @see {@link PauseClusterCommand}
1300
755
  */
1301
756
  pauseCluster(args: PauseClusterCommandInput, options?: __HttpHandlerOptions): Promise<PauseClusterCommandOutput>;
1302
757
  pauseCluster(args: PauseClusterCommandInput, cb: (err: any, data?: PauseClusterCommandOutput) => void): void;
1303
758
  pauseCluster(args: PauseClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseClusterCommandOutput) => void): void;
1304
759
  /**
1305
- * @public
1306
- * <p>Allows you to purchase reserved nodes. Amazon Redshift offers a predefined set of
1307
- * reserved node offerings. You can purchase one or more of the offerings. You can call the
1308
- * <a>DescribeReservedNodeOfferings</a> API to obtain the available reserved
1309
- * node offerings. You can call this API by providing a specific reserved node offering and
1310
- * the number of nodes you want to reserve. </p>
1311
- * <p>
1312
- * For more information about reserved node offerings, go to
1313
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/purchase-reserved-node-instance.html">Purchasing Reserved Nodes</a>
1314
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
760
+ * @see {@link PurchaseReservedNodeOfferingCommand}
1315
761
  */
1316
762
  purchaseReservedNodeOffering(args: PurchaseReservedNodeOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseReservedNodeOfferingCommandOutput>;
1317
763
  purchaseReservedNodeOffering(args: PurchaseReservedNodeOfferingCommandInput, cb: (err: any, data?: PurchaseReservedNodeOfferingCommandOutput) => void): void;
1318
764
  purchaseReservedNodeOffering(args: PurchaseReservedNodeOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseReservedNodeOfferingCommandOutput) => void): void;
1319
765
  /**
1320
- * @public
1321
- * <p>Reboots a cluster. This action is taken as soon as possible. It results in a
1322
- * momentary outage to the cluster, during which the cluster status is set to
1323
- * <code>rebooting</code>. A cluster event is created when the reboot is completed. Any
1324
- * pending cluster modifications (see <a>ModifyCluster</a>) are applied at this
1325
- * reboot.
1326
- * For more information about managing clusters, go to
1327
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html">Amazon Redshift Clusters</a>
1328
- * in the <i>Amazon Redshift Cluster Management Guide</i>. </p>
766
+ * @see {@link RebootClusterCommand}
1329
767
  */
1330
768
  rebootCluster(args: RebootClusterCommandInput, options?: __HttpHandlerOptions): Promise<RebootClusterCommandOutput>;
1331
769
  rebootCluster(args: RebootClusterCommandInput, cb: (err: any, data?: RebootClusterCommandOutput) => void): void;
1332
770
  rebootCluster(args: RebootClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootClusterCommandOutput) => void): void;
1333
771
  /**
1334
- * @public
1335
- * <p>From a datashare consumer account, rejects the specified datashare.</p>
772
+ * @see {@link RejectDataShareCommand}
1336
773
  */
1337
774
  rejectDataShare(args: RejectDataShareCommandInput, options?: __HttpHandlerOptions): Promise<RejectDataShareCommandOutput>;
1338
775
  rejectDataShare(args: RejectDataShareCommandInput, cb: (err: any, data?: RejectDataShareCommandOutput) => void): void;
1339
776
  rejectDataShare(args: RejectDataShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectDataShareCommandOutput) => void): void;
1340
777
  /**
1341
- * @public
1342
- * <p>Sets one or more parameters of the specified parameter group to their default
1343
- * values and sets the source values of the parameters to "engine-default". To reset the
1344
- * entire parameter group specify the <i>ResetAllParameters</i> parameter.
1345
- * For parameter changes to take effect you must reboot any associated clusters. </p>
778
+ * @see {@link ResetClusterParameterGroupCommand}
1346
779
  */
1347
780
  resetClusterParameterGroup(args: ResetClusterParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<ResetClusterParameterGroupCommandOutput>;
1348
781
  resetClusterParameterGroup(args: ResetClusterParameterGroupCommandInput, cb: (err: any, data?: ResetClusterParameterGroupCommandOutput) => void): void;
1349
782
  resetClusterParameterGroup(args: ResetClusterParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetClusterParameterGroupCommandOutput) => void): void;
1350
783
  /**
1351
- * @public
1352
- * <p>Changes the size of the cluster. You can change the cluster's type, or change the
1353
- * number or type of nodes. The default behavior is to use the elastic resize method. With
1354
- * an elastic resize, your cluster is available for read and write operations more quickly
1355
- * than with the classic resize method. </p>
1356
- * <p>Elastic resize operations have the following restrictions:</p>
1357
- * <ul>
1358
- * <li>
1359
- * <p>You can only resize clusters of the following types:</p>
1360
- * <ul>
1361
- * <li>
1362
- * <p>dc1.large (if your cluster is in a VPC)</p>
1363
- * </li>
1364
- * <li>
1365
- * <p>dc1.8xlarge (if your cluster is in a VPC)</p>
1366
- * </li>
1367
- * <li>
1368
- * <p>dc2.large</p>
1369
- * </li>
1370
- * <li>
1371
- * <p>dc2.8xlarge</p>
1372
- * </li>
1373
- * <li>
1374
- * <p>ds2.xlarge</p>
1375
- * </li>
1376
- * <li>
1377
- * <p>ds2.8xlarge</p>
1378
- * </li>
1379
- * <li>
1380
- * <p>ra3.xlplus</p>
1381
- * </li>
1382
- * <li>
1383
- * <p>ra3.4xlarge</p>
1384
- * </li>
1385
- * <li>
1386
- * <p>ra3.16xlarge</p>
1387
- * </li>
1388
- * </ul>
1389
- * </li>
1390
- * <li>
1391
- * <p>The type of nodes that you add must match the node type for the
1392
- * cluster.</p>
1393
- * </li>
1394
- * </ul>
784
+ * @see {@link ResizeClusterCommand}
1395
785
  */
1396
786
  resizeCluster(args: ResizeClusterCommandInput, options?: __HttpHandlerOptions): Promise<ResizeClusterCommandOutput>;
1397
787
  resizeCluster(args: ResizeClusterCommandInput, cb: (err: any, data?: ResizeClusterCommandOutput) => void): void;
1398
788
  resizeCluster(args: ResizeClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResizeClusterCommandOutput) => void): void;
1399
789
  /**
1400
- * @public
1401
- * <p>Creates a new cluster from a snapshot. By default, Amazon Redshift creates the resulting
1402
- * cluster with the same configuration as the original cluster from which the snapshot was
1403
- * created, except that the new cluster is created with the default cluster security and
1404
- * parameter groups. After Amazon Redshift creates the cluster, you can use the <a>ModifyCluster</a> API to associate a different security group and different
1405
- * parameter group with the restored cluster. If you are using a DS node type, you can also
1406
- * choose to change to another DS node type of the same size during restore.</p>
1407
- * <p>If you restore a cluster into a VPC, you must provide a cluster subnet group where
1408
- * you want the cluster restored.</p>
1409
- * <p>
1410
- * For more information about working with snapshots, go to
1411
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html">Amazon Redshift Snapshots</a>
1412
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
790
+ * @see {@link RestoreFromClusterSnapshotCommand}
1413
791
  */
1414
792
  restoreFromClusterSnapshot(args: RestoreFromClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreFromClusterSnapshotCommandOutput>;
1415
793
  restoreFromClusterSnapshot(args: RestoreFromClusterSnapshotCommandInput, cb: (err: any, data?: RestoreFromClusterSnapshotCommandOutput) => void): void;
1416
794
  restoreFromClusterSnapshot(args: RestoreFromClusterSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreFromClusterSnapshotCommandOutput) => void): void;
1417
795
  /**
1418
- * @public
1419
- * <p>Creates a new table from a table in an Amazon Redshift cluster snapshot. You must
1420
- * create the new table within the Amazon Redshift cluster that the snapshot was taken
1421
- * from.</p>
1422
- * <p>You cannot use <code>RestoreTableFromClusterSnapshot</code> to restore a table with
1423
- * the same name as an existing table in an Amazon Redshift cluster. That is, you cannot
1424
- * overwrite an existing table in a cluster with a restored table. If you want to replace
1425
- * your original table with a new, restored table, then rename or drop your original table
1426
- * before you call <code>RestoreTableFromClusterSnapshot</code>. When you have renamed your
1427
- * original table, then you can pass the original name of the table as the
1428
- * <code>NewTableName</code> parameter value in the call to
1429
- * <code>RestoreTableFromClusterSnapshot</code>. This way, you can replace the original
1430
- * table with the table created from the snapshot.</p>
1431
- * <p>You can't use this operation to restore tables with
1432
- * <a href="https://docs.aws.amazon.com/redshift/latest/dg/t_Sorting_data.html#t_Sorting_data-interleaved">interleaved sort keys</a>.</p>
796
+ * @see {@link RestoreTableFromClusterSnapshotCommand}
1433
797
  */
1434
798
  restoreTableFromClusterSnapshot(args: RestoreTableFromClusterSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreTableFromClusterSnapshotCommandOutput>;
1435
799
  restoreTableFromClusterSnapshot(args: RestoreTableFromClusterSnapshotCommandInput, cb: (err: any, data?: RestoreTableFromClusterSnapshotCommandOutput) => void): void;
1436
800
  restoreTableFromClusterSnapshot(args: RestoreTableFromClusterSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreTableFromClusterSnapshotCommandOutput) => void): void;
1437
801
  /**
1438
- * @public
1439
- * <p>Resumes a paused cluster.</p>
802
+ * @see {@link ResumeClusterCommand}
1440
803
  */
1441
804
  resumeCluster(args: ResumeClusterCommandInput, options?: __HttpHandlerOptions): Promise<ResumeClusterCommandOutput>;
1442
805
  resumeCluster(args: ResumeClusterCommandInput, cb: (err: any, data?: ResumeClusterCommandOutput) => void): void;
1443
806
  resumeCluster(args: ResumeClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeClusterCommandOutput) => void): void;
1444
807
  /**
1445
- * @public
1446
- * <p>Revokes an ingress rule in an Amazon Redshift security group for a previously authorized
1447
- * IP range or Amazon EC2 security group. To add an ingress rule, see <a>AuthorizeClusterSecurityGroupIngress</a>.
1448
- * For information about managing security groups, go to
1449
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-security-groups.html">Amazon Redshift Cluster Security Groups</a> in the
1450
- * <i>Amazon Redshift Cluster Management Guide</i>. </p>
808
+ * @see {@link RevokeClusterSecurityGroupIngressCommand}
1451
809
  */
1452
810
  revokeClusterSecurityGroupIngress(args: RevokeClusterSecurityGroupIngressCommandInput, options?: __HttpHandlerOptions): Promise<RevokeClusterSecurityGroupIngressCommandOutput>;
1453
811
  revokeClusterSecurityGroupIngress(args: RevokeClusterSecurityGroupIngressCommandInput, cb: (err: any, data?: RevokeClusterSecurityGroupIngressCommandOutput) => void): void;
1454
812
  revokeClusterSecurityGroupIngress(args: RevokeClusterSecurityGroupIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeClusterSecurityGroupIngressCommandOutput) => void): void;
1455
813
  /**
1456
- * @public
1457
- * <p>Revokes access to a cluster.</p>
814
+ * @see {@link RevokeEndpointAccessCommand}
1458
815
  */
1459
816
  revokeEndpointAccess(args: RevokeEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<RevokeEndpointAccessCommandOutput>;
1460
817
  revokeEndpointAccess(args: RevokeEndpointAccessCommandInput, cb: (err: any, data?: RevokeEndpointAccessCommandOutput) => void): void;
1461
818
  revokeEndpointAccess(args: RevokeEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeEndpointAccessCommandOutput) => void): void;
1462
819
  /**
1463
- * @public
1464
- * <p>Removes the ability of the specified Amazon Web Services account to restore the specified
1465
- * snapshot. If the account is currently restoring the snapshot, the restore will run to
1466
- * completion.</p>
1467
- * <p>
1468
- * For more information about working with snapshots, go to
1469
- * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-snapshots.html">Amazon Redshift Snapshots</a>
1470
- * in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
820
+ * @see {@link RevokeSnapshotAccessCommand}
1471
821
  */
1472
822
  revokeSnapshotAccess(args: RevokeSnapshotAccessCommandInput, options?: __HttpHandlerOptions): Promise<RevokeSnapshotAccessCommandOutput>;
1473
823
  revokeSnapshotAccess(args: RevokeSnapshotAccessCommandInput, cb: (err: any, data?: RevokeSnapshotAccessCommandOutput) => void): void;
1474
824
  revokeSnapshotAccess(args: RevokeSnapshotAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeSnapshotAccessCommandOutput) => void): void;
1475
825
  /**
1476
- * @public
1477
- * <p>Rotates the encryption keys for a cluster.</p>
826
+ * @see {@link RotateEncryptionKeyCommand}
1478
827
  */
1479
828
  rotateEncryptionKey(args: RotateEncryptionKeyCommandInput, options?: __HttpHandlerOptions): Promise<RotateEncryptionKeyCommandOutput>;
1480
829
  rotateEncryptionKey(args: RotateEncryptionKeyCommandInput, cb: (err: any, data?: RotateEncryptionKeyCommandOutput) => void): void;
1481
830
  rotateEncryptionKey(args: RotateEncryptionKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RotateEncryptionKeyCommandOutput) => void): void;
1482
831
  /**
1483
- * @public
1484
- * <p>Updates the status of a partner integration.</p>
832
+ * @see {@link UpdatePartnerStatusCommand}
1485
833
  */
1486
834
  updatePartnerStatus(args: UpdatePartnerStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePartnerStatusCommandOutput>;
1487
835
  updatePartnerStatus(args: UpdatePartnerStatusCommandInput, cb: (err: any, data?: UpdatePartnerStatusCommandOutput) => void): void;
1488
836
  updatePartnerStatus(args: UpdatePartnerStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePartnerStatusCommandOutput) => void): void;
1489
837
  }
838
+ /**
839
+ * @public
840
+ * <fullname>Amazon Redshift</fullname>
841
+ * <p>
842
+ * <b>Overview</b>
843
+ * </p>
844
+ * <p>This is an interface reference for Amazon Redshift. It contains documentation for one of
845
+ * the programming or command line interfaces you can use to manage Amazon Redshift clusters.
846
+ * Note that Amazon Redshift is asynchronous, which means that some interfaces may require
847
+ * techniques, such as polling or asynchronous callback handlers, to determine when a
848
+ * command has been applied. In this reference, the parameter descriptions indicate whether
849
+ * a change is applied immediately, on the next instance reboot, or during the next
850
+ * maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to
851
+ * <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html">Using the
852
+ * Amazon Redshift Management Interfaces</a>.</p>
853
+ * <p>Amazon Redshift manages all the work of setting up, operating, and scaling a data
854
+ * warehouse: provisioning capacity, monitoring and backing up the cluster, and applying
855
+ * patches and upgrades to the Amazon Redshift engine. You can focus on using your data to
856
+ * acquire new insights for your business and customers.</p>
857
+ * <p>If you are a first-time user of Amazon Redshift, we recommend that you begin by reading
858
+ * the <a href="https://docs.aws.amazon.com/redshift/latest/gsg/getting-started.html">Amazon Redshift Getting Started Guide</a>.</p>
859
+ * <p>If you are a database developer, the <a href="https://docs.aws.amazon.com/redshift/latest/dg/welcome.html">Amazon Redshift Database Developer Guide</a> explains how to design,
860
+ * build, query, and maintain the databases that make up your data warehouse. </p>
861
+ */
862
+ export declare class Redshift extends RedshiftClient implements Redshift {
863
+ }