@aws-sdk/client-redshift-serverless 3.296.0 → 3.297.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.
- package/dist-types/RedshiftServerless.d.ts +41 -0
- package/dist-types/RedshiftServerlessClient.d.ts +24 -4
- package/dist-types/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/CreateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/GetCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/GetEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/GetRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/ListEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
- package/dist-types/commands/ListSnapshotsCommand.d.ts +16 -0
- package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListUsageLimitsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkgroupsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkgroupCommand.d.ts +16 -0
- package/dist-types/models/RedshiftServerlessServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +289 -4
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSnapshotsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -41,6 +41,7 @@ import { UpdateUsageLimitCommandInput, UpdateUsageLimitCommandOutput } from "./c
|
|
|
41
41
|
import { UpdateWorkgroupCommandInput, UpdateWorkgroupCommandOutput } from "./commands/UpdateWorkgroupCommand";
|
|
42
42
|
import { RedshiftServerlessClient } from "./RedshiftServerlessClient";
|
|
43
43
|
/**
|
|
44
|
+
* @public
|
|
44
45
|
* <p>This is an interface reference for Amazon Redshift Serverless.
|
|
45
46
|
* It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift Serverless.
|
|
46
47
|
* </p>
|
|
@@ -56,6 +57,7 @@ import { RedshiftServerlessClient } from "./RedshiftServerlessClient";
|
|
|
56
57
|
*/
|
|
57
58
|
export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
58
59
|
/**
|
|
60
|
+
* @public
|
|
59
61
|
* <p>Converts a recovery point to a snapshot. For more information about recovery points and snapshots,
|
|
60
62
|
* see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-snapshots-recovery.html">Working with snapshots and recovery points</a>.</p>
|
|
61
63
|
*/
|
|
@@ -63,18 +65,21 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
63
65
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, cb: (err: any, data?: ConvertRecoveryPointToSnapshotCommandOutput) => void): void;
|
|
64
66
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConvertRecoveryPointToSnapshotCommandOutput) => void): void;
|
|
65
67
|
/**
|
|
68
|
+
* @public
|
|
66
69
|
* <p>Creates an Amazon Redshift Serverless managed VPC endpoint.</p>
|
|
67
70
|
*/
|
|
68
71
|
createEndpointAccess(args: CreateEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<CreateEndpointAccessCommandOutput>;
|
|
69
72
|
createEndpointAccess(args: CreateEndpointAccessCommandInput, cb: (err: any, data?: CreateEndpointAccessCommandOutput) => void): void;
|
|
70
73
|
createEndpointAccess(args: CreateEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEndpointAccessCommandOutput) => void): void;
|
|
71
74
|
/**
|
|
75
|
+
* @public
|
|
72
76
|
* <p>Creates a namespace in Amazon Redshift Serverless.</p>
|
|
73
77
|
*/
|
|
74
78
|
createNamespace(args: CreateNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateNamespaceCommandOutput>;
|
|
75
79
|
createNamespace(args: CreateNamespaceCommandInput, cb: (err: any, data?: CreateNamespaceCommandOutput) => void): void;
|
|
76
80
|
createNamespace(args: CreateNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNamespaceCommandOutput) => void): void;
|
|
77
81
|
/**
|
|
82
|
+
* @public
|
|
78
83
|
* <p>Creates a snapshot of all databases in a namespace.
|
|
79
84
|
* For more information about snapshots, see
|
|
80
85
|
* <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-snapshots-recovery.html">
|
|
@@ -84,6 +89,7 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
84
89
|
createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
85
90
|
createSnapshot(args: CreateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
86
91
|
/**
|
|
92
|
+
* @public
|
|
87
93
|
* <p>Creates a usage limit for a specified Amazon Redshift Serverless usage type. The usage limit is identified by the returned usage limit identifier.
|
|
88
94
|
* </p>
|
|
89
95
|
*/
|
|
@@ -91,18 +97,21 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
91
97
|
createUsageLimit(args: CreateUsageLimitCommandInput, cb: (err: any, data?: CreateUsageLimitCommandOutput) => void): void;
|
|
92
98
|
createUsageLimit(args: CreateUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUsageLimitCommandOutput) => void): void;
|
|
93
99
|
/**
|
|
100
|
+
* @public
|
|
94
101
|
* <p>Creates an workgroup in Amazon Redshift Serverless.</p>
|
|
95
102
|
*/
|
|
96
103
|
createWorkgroup(args: CreateWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkgroupCommandOutput>;
|
|
97
104
|
createWorkgroup(args: CreateWorkgroupCommandInput, cb: (err: any, data?: CreateWorkgroupCommandOutput) => void): void;
|
|
98
105
|
createWorkgroup(args: CreateWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkgroupCommandOutput) => void): void;
|
|
99
106
|
/**
|
|
107
|
+
* @public
|
|
100
108
|
* <p>Deletes an Amazon Redshift Serverless managed VPC endpoint.</p>
|
|
101
109
|
*/
|
|
102
110
|
deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointAccessCommandOutput>;
|
|
103
111
|
deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, cb: (err: any, data?: DeleteEndpointAccessCommandOutput) => void): void;
|
|
104
112
|
deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointAccessCommandOutput) => void): void;
|
|
105
113
|
/**
|
|
114
|
+
* @public
|
|
106
115
|
* <p>Deletes a namespace from Amazon Redshift Serverless.
|
|
107
116
|
* Before you delete the namespace, you can create a final snapshot that has all of the data within the namespace.</p>
|
|
108
117
|
*/
|
|
@@ -110,30 +119,35 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
110
119
|
deleteNamespace(args: DeleteNamespaceCommandInput, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
111
120
|
deleteNamespace(args: DeleteNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
112
121
|
/**
|
|
122
|
+
* @public
|
|
113
123
|
* <p>Deletes the specified resource policy.</p>
|
|
114
124
|
*/
|
|
115
125
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
|
|
116
126
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
117
127
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
118
128
|
/**
|
|
129
|
+
* @public
|
|
119
130
|
* <p>Deletes a snapshot from Amazon Redshift Serverless.</p>
|
|
120
131
|
*/
|
|
121
132
|
deleteSnapshot(args: DeleteSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotCommandOutput>;
|
|
122
133
|
deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
123
134
|
deleteSnapshot(args: DeleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
124
135
|
/**
|
|
136
|
+
* @public
|
|
125
137
|
* <p>Deletes a usage limit from Amazon Redshift Serverless.</p>
|
|
126
138
|
*/
|
|
127
139
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUsageLimitCommandOutput>;
|
|
128
140
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
|
|
129
141
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
|
|
130
142
|
/**
|
|
143
|
+
* @public
|
|
131
144
|
* <p>Deletes a workgroup.</p>
|
|
132
145
|
*/
|
|
133
146
|
deleteWorkgroup(args: DeleteWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkgroupCommandOutput>;
|
|
134
147
|
deleteWorkgroup(args: DeleteWorkgroupCommandInput, cb: (err: any, data?: DeleteWorkgroupCommandOutput) => void): void;
|
|
135
148
|
deleteWorkgroup(args: DeleteWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkgroupCommandOutput) => void): void;
|
|
136
149
|
/**
|
|
150
|
+
* @public
|
|
137
151
|
* <p>Returns a database user name and temporary password with
|
|
138
152
|
* temporary authorization to log in to Amazon Redshift Serverless.</p>
|
|
139
153
|
* <p>By default, the temporary credentials expire in 900 seconds.
|
|
@@ -150,120 +164,140 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
150
164
|
getCredentials(args: GetCredentialsCommandInput, cb: (err: any, data?: GetCredentialsCommandOutput) => void): void;
|
|
151
165
|
getCredentials(args: GetCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCredentialsCommandOutput) => void): void;
|
|
152
166
|
/**
|
|
167
|
+
* @public
|
|
153
168
|
* <p>Returns information, such as the name, about a VPC endpoint.</p>
|
|
154
169
|
*/
|
|
155
170
|
getEndpointAccess(args: GetEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<GetEndpointAccessCommandOutput>;
|
|
156
171
|
getEndpointAccess(args: GetEndpointAccessCommandInput, cb: (err: any, data?: GetEndpointAccessCommandOutput) => void): void;
|
|
157
172
|
getEndpointAccess(args: GetEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEndpointAccessCommandOutput) => void): void;
|
|
158
173
|
/**
|
|
174
|
+
* @public
|
|
159
175
|
* <p>Returns information about a namespace in Amazon Redshift Serverless.</p>
|
|
160
176
|
*/
|
|
161
177
|
getNamespace(args: GetNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<GetNamespaceCommandOutput>;
|
|
162
178
|
getNamespace(args: GetNamespaceCommandInput, cb: (err: any, data?: GetNamespaceCommandOutput) => void): void;
|
|
163
179
|
getNamespace(args: GetNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNamespaceCommandOutput) => void): void;
|
|
164
180
|
/**
|
|
181
|
+
* @public
|
|
165
182
|
* <p>Returns information about a recovery point.</p>
|
|
166
183
|
*/
|
|
167
184
|
getRecoveryPoint(args: GetRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryPointCommandOutput>;
|
|
168
185
|
getRecoveryPoint(args: GetRecoveryPointCommandInput, cb: (err: any, data?: GetRecoveryPointCommandOutput) => void): void;
|
|
169
186
|
getRecoveryPoint(args: GetRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryPointCommandOutput) => void): void;
|
|
170
187
|
/**
|
|
188
|
+
* @public
|
|
171
189
|
* <p>Returns a resource policy.</p>
|
|
172
190
|
*/
|
|
173
191
|
getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
|
|
174
192
|
getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
175
193
|
getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
176
194
|
/**
|
|
195
|
+
* @public
|
|
177
196
|
* <p>Returns information about a specific snapshot.</p>
|
|
178
197
|
*/
|
|
179
198
|
getSnapshot(args: GetSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<GetSnapshotCommandOutput>;
|
|
180
199
|
getSnapshot(args: GetSnapshotCommandInput, cb: (err: any, data?: GetSnapshotCommandOutput) => void): void;
|
|
181
200
|
getSnapshot(args: GetSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSnapshotCommandOutput) => void): void;
|
|
182
201
|
/**
|
|
202
|
+
* @public
|
|
183
203
|
* <p>Returns information about a <code>TableRestoreStatus</code> object.</p>
|
|
184
204
|
*/
|
|
185
205
|
getTableRestoreStatus(args: GetTableRestoreStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetTableRestoreStatusCommandOutput>;
|
|
186
206
|
getTableRestoreStatus(args: GetTableRestoreStatusCommandInput, cb: (err: any, data?: GetTableRestoreStatusCommandOutput) => void): void;
|
|
187
207
|
getTableRestoreStatus(args: GetTableRestoreStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableRestoreStatusCommandOutput) => void): void;
|
|
188
208
|
/**
|
|
209
|
+
* @public
|
|
189
210
|
* <p>Returns information about a usage limit.</p>
|
|
190
211
|
*/
|
|
191
212
|
getUsageLimit(args: GetUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<GetUsageLimitCommandOutput>;
|
|
192
213
|
getUsageLimit(args: GetUsageLimitCommandInput, cb: (err: any, data?: GetUsageLimitCommandOutput) => void): void;
|
|
193
214
|
getUsageLimit(args: GetUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsageLimitCommandOutput) => void): void;
|
|
194
215
|
/**
|
|
216
|
+
* @public
|
|
195
217
|
* <p>Returns information about a specific workgroup.</p>
|
|
196
218
|
*/
|
|
197
219
|
getWorkgroup(args: GetWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkgroupCommandOutput>;
|
|
198
220
|
getWorkgroup(args: GetWorkgroupCommandInput, cb: (err: any, data?: GetWorkgroupCommandOutput) => void): void;
|
|
199
221
|
getWorkgroup(args: GetWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkgroupCommandOutput) => void): void;
|
|
200
222
|
/**
|
|
223
|
+
* @public
|
|
201
224
|
* <p>Returns an array of <code>EndpointAccess</code> objects and relevant information.</p>
|
|
202
225
|
*/
|
|
203
226
|
listEndpointAccess(args: ListEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<ListEndpointAccessCommandOutput>;
|
|
204
227
|
listEndpointAccess(args: ListEndpointAccessCommandInput, cb: (err: any, data?: ListEndpointAccessCommandOutput) => void): void;
|
|
205
228
|
listEndpointAccess(args: ListEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEndpointAccessCommandOutput) => void): void;
|
|
206
229
|
/**
|
|
230
|
+
* @public
|
|
207
231
|
* <p>Returns information about a list of specified namespaces.</p>
|
|
208
232
|
*/
|
|
209
233
|
listNamespaces(args: ListNamespacesCommandInput, options?: __HttpHandlerOptions): Promise<ListNamespacesCommandOutput>;
|
|
210
234
|
listNamespaces(args: ListNamespacesCommandInput, cb: (err: any, data?: ListNamespacesCommandOutput) => void): void;
|
|
211
235
|
listNamespaces(args: ListNamespacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNamespacesCommandOutput) => void): void;
|
|
212
236
|
/**
|
|
237
|
+
* @public
|
|
213
238
|
* <p>Returns an array of recovery points.</p>
|
|
214
239
|
*/
|
|
215
240
|
listRecoveryPoints(args: ListRecoveryPointsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryPointsCommandOutput>;
|
|
216
241
|
listRecoveryPoints(args: ListRecoveryPointsCommandInput, cb: (err: any, data?: ListRecoveryPointsCommandOutput) => void): void;
|
|
217
242
|
listRecoveryPoints(args: ListRecoveryPointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryPointsCommandOutput) => void): void;
|
|
218
243
|
/**
|
|
244
|
+
* @public
|
|
219
245
|
* <p>Returns a list of snapshots.</p>
|
|
220
246
|
*/
|
|
221
247
|
listSnapshots(args: ListSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<ListSnapshotsCommandOutput>;
|
|
222
248
|
listSnapshots(args: ListSnapshotsCommandInput, cb: (err: any, data?: ListSnapshotsCommandOutput) => void): void;
|
|
223
249
|
listSnapshots(args: ListSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSnapshotsCommandOutput) => void): void;
|
|
224
250
|
/**
|
|
251
|
+
* @public
|
|
225
252
|
* <p>Returns information about an array of <code>TableRestoreStatus</code> objects.</p>
|
|
226
253
|
*/
|
|
227
254
|
listTableRestoreStatus(args: ListTableRestoreStatusCommandInput, options?: __HttpHandlerOptions): Promise<ListTableRestoreStatusCommandOutput>;
|
|
228
255
|
listTableRestoreStatus(args: ListTableRestoreStatusCommandInput, cb: (err: any, data?: ListTableRestoreStatusCommandOutput) => void): void;
|
|
229
256
|
listTableRestoreStatus(args: ListTableRestoreStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTableRestoreStatusCommandOutput) => void): void;
|
|
230
257
|
/**
|
|
258
|
+
* @public
|
|
231
259
|
* <p>Lists the tags assigned to a resource.</p>
|
|
232
260
|
*/
|
|
233
261
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
234
262
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
235
263
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
236
264
|
/**
|
|
265
|
+
* @public
|
|
237
266
|
* <p>Lists all usage limits within Amazon Redshift Serverless.</p>
|
|
238
267
|
*/
|
|
239
268
|
listUsageLimits(args: ListUsageLimitsCommandInput, options?: __HttpHandlerOptions): Promise<ListUsageLimitsCommandOutput>;
|
|
240
269
|
listUsageLimits(args: ListUsageLimitsCommandInput, cb: (err: any, data?: ListUsageLimitsCommandOutput) => void): void;
|
|
241
270
|
listUsageLimits(args: ListUsageLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsageLimitsCommandOutput) => void): void;
|
|
242
271
|
/**
|
|
272
|
+
* @public
|
|
243
273
|
* <p>Returns information about a list of specified workgroups.</p>
|
|
244
274
|
*/
|
|
245
275
|
listWorkgroups(args: ListWorkgroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkgroupsCommandOutput>;
|
|
246
276
|
listWorkgroups(args: ListWorkgroupsCommandInput, cb: (err: any, data?: ListWorkgroupsCommandOutput) => void): void;
|
|
247
277
|
listWorkgroups(args: ListWorkgroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkgroupsCommandOutput) => void): void;
|
|
248
278
|
/**
|
|
279
|
+
* @public
|
|
249
280
|
* <p>Creates or updates a resource policy. Currently, you can use policies to share snapshots across Amazon Web Services accounts.</p>
|
|
250
281
|
*/
|
|
251
282
|
putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
|
|
252
283
|
putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
253
284
|
putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
254
285
|
/**
|
|
286
|
+
* @public
|
|
255
287
|
* <p>Restore the data from a recovery point.</p>
|
|
256
288
|
*/
|
|
257
289
|
restoreFromRecoveryPoint(args: RestoreFromRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<RestoreFromRecoveryPointCommandOutput>;
|
|
258
290
|
restoreFromRecoveryPoint(args: RestoreFromRecoveryPointCommandInput, cb: (err: any, data?: RestoreFromRecoveryPointCommandOutput) => void): void;
|
|
259
291
|
restoreFromRecoveryPoint(args: RestoreFromRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreFromRecoveryPointCommandOutput) => void): void;
|
|
260
292
|
/**
|
|
293
|
+
* @public
|
|
261
294
|
* <p>Restores a namespace from a snapshot.</p>
|
|
262
295
|
*/
|
|
263
296
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreFromSnapshotCommandOutput>;
|
|
264
297
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
265
298
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
266
299
|
/**
|
|
300
|
+
* @public
|
|
267
301
|
* <p>Restores a table from a snapshot to your Amazon Redshift Serverless instance. You can't use this operation to
|
|
268
302
|
* restore tables with <a href="https://docs.aws.amazon.com/redshift/latest/dg/t_Sorting_data.html#t_Sorting_data-interleaved">interleaved sort keys</a>.</p>
|
|
269
303
|
*/
|
|
@@ -271,24 +305,28 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
271
305
|
restoreTableFromSnapshot(args: RestoreTableFromSnapshotCommandInput, cb: (err: any, data?: RestoreTableFromSnapshotCommandOutput) => void): void;
|
|
272
306
|
restoreTableFromSnapshot(args: RestoreTableFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreTableFromSnapshotCommandOutput) => void): void;
|
|
273
307
|
/**
|
|
308
|
+
* @public
|
|
274
309
|
* <p>Assigns one or more tags to a resource.</p>
|
|
275
310
|
*/
|
|
276
311
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
277
312
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
278
313
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
279
314
|
/**
|
|
315
|
+
* @public
|
|
280
316
|
* <p>Removes a tag or set of tags from a resource.</p>
|
|
281
317
|
*/
|
|
282
318
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
283
319
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
284
320
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
285
321
|
/**
|
|
322
|
+
* @public
|
|
286
323
|
* <p>Updates an Amazon Redshift Serverless managed endpoint.</p>
|
|
287
324
|
*/
|
|
288
325
|
updateEndpointAccess(args: UpdateEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEndpointAccessCommandOutput>;
|
|
289
326
|
updateEndpointAccess(args: UpdateEndpointAccessCommandInput, cb: (err: any, data?: UpdateEndpointAccessCommandOutput) => void): void;
|
|
290
327
|
updateEndpointAccess(args: UpdateEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEndpointAccessCommandOutput) => void): void;
|
|
291
328
|
/**
|
|
329
|
+
* @public
|
|
292
330
|
* <p>Updates a namespace with the specified settings. Unless required, you can't update multiple parameters in one request. For example,
|
|
293
331
|
* you must specify both <code>adminUsername</code> and <code>adminUserPassword</code> to update either field, but you can't update both <code>kmsKeyId</code>
|
|
294
332
|
* and <code>logExports</code> in a single request.</p>
|
|
@@ -297,18 +335,21 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
297
335
|
updateNamespace(args: UpdateNamespaceCommandInput, cb: (err: any, data?: UpdateNamespaceCommandOutput) => void): void;
|
|
298
336
|
updateNamespace(args: UpdateNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNamespaceCommandOutput) => void): void;
|
|
299
337
|
/**
|
|
338
|
+
* @public
|
|
300
339
|
* <p>Updates a snapshot.</p>
|
|
301
340
|
*/
|
|
302
341
|
updateSnapshot(args: UpdateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSnapshotCommandOutput>;
|
|
303
342
|
updateSnapshot(args: UpdateSnapshotCommandInput, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
|
|
304
343
|
updateSnapshot(args: UpdateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
|
|
305
344
|
/**
|
|
345
|
+
* @public
|
|
306
346
|
* <p>Update a usage limit in Amazon Redshift Serverless. You can't update the usage type or period of a usage limit.</p>
|
|
307
347
|
*/
|
|
308
348
|
updateUsageLimit(args: UpdateUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUsageLimitCommandOutput>;
|
|
309
349
|
updateUsageLimit(args: UpdateUsageLimitCommandInput, cb: (err: any, data?: UpdateUsageLimitCommandOutput) => void): void;
|
|
310
350
|
updateUsageLimit(args: UpdateUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUsageLimitCommandOutput) => void): void;
|
|
311
351
|
/**
|
|
352
|
+
* @public
|
|
312
353
|
* <p>Updates a workgroup with the specified configuration settings. You can't update multiple parameters in one request. For example,
|
|
313
354
|
* you can update <code>baseCapacity</code> or <code>port</code> in a single request, but you can't update both in the same request.</p>
|
|
314
355
|
*/
|
|
@@ -48,15 +48,24 @@ import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./comma
|
|
|
48
48
|
import { UpdateUsageLimitCommandInput, UpdateUsageLimitCommandOutput } from "./commands/UpdateUsageLimitCommand";
|
|
49
49
|
import { UpdateWorkgroupCommandInput, UpdateWorkgroupCommandOutput } from "./commands/UpdateWorkgroupCommand";
|
|
50
50
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
51
54
|
export type ServiceInputTypes = ConvertRecoveryPointToSnapshotCommandInput | CreateEndpointAccessCommandInput | CreateNamespaceCommandInput | CreateSnapshotCommandInput | CreateUsageLimitCommandInput | CreateWorkgroupCommandInput | DeleteEndpointAccessCommandInput | DeleteNamespaceCommandInput | DeleteResourcePolicyCommandInput | DeleteSnapshotCommandInput | DeleteUsageLimitCommandInput | DeleteWorkgroupCommandInput | GetCredentialsCommandInput | GetEndpointAccessCommandInput | GetNamespaceCommandInput | GetRecoveryPointCommandInput | GetResourcePolicyCommandInput | GetSnapshotCommandInput | GetTableRestoreStatusCommandInput | GetUsageLimitCommandInput | GetWorkgroupCommandInput | ListEndpointAccessCommandInput | ListNamespacesCommandInput | ListRecoveryPointsCommandInput | ListSnapshotsCommandInput | ListTableRestoreStatusCommandInput | ListTagsForResourceCommandInput | ListUsageLimitsCommandInput | ListWorkgroupsCommandInput | PutResourcePolicyCommandInput | RestoreFromRecoveryPointCommandInput | RestoreFromSnapshotCommandInput | RestoreTableFromSnapshotCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEndpointAccessCommandInput | UpdateNamespaceCommandInput | UpdateSnapshotCommandInput | UpdateUsageLimitCommandInput | UpdateWorkgroupCommandInput;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
52
58
|
export type ServiceOutputTypes = ConvertRecoveryPointToSnapshotCommandOutput | CreateEndpointAccessCommandOutput | CreateNamespaceCommandOutput | CreateSnapshotCommandOutput | CreateUsageLimitCommandOutput | CreateWorkgroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteNamespaceCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSnapshotCommandOutput | DeleteUsageLimitCommandOutput | DeleteWorkgroupCommandOutput | GetCredentialsCommandOutput | GetEndpointAccessCommandOutput | GetNamespaceCommandOutput | GetRecoveryPointCommandOutput | GetResourcePolicyCommandOutput | GetSnapshotCommandOutput | GetTableRestoreStatusCommandOutput | GetUsageLimitCommandOutput | GetWorkgroupCommandOutput | ListEndpointAccessCommandOutput | ListNamespacesCommandOutput | ListRecoveryPointsCommandOutput | ListSnapshotsCommandOutput | ListTableRestoreStatusCommandOutput | ListTagsForResourceCommandOutput | ListUsageLimitsCommandOutput | ListWorkgroupsCommandOutput | PutResourcePolicyCommandOutput | RestoreFromRecoveryPointCommandOutput | RestoreFromSnapshotCommandOutput | RestoreTableFromSnapshotCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEndpointAccessCommandOutput | UpdateNamespaceCommandOutput | UpdateSnapshotCommandOutput | UpdateUsageLimitCommandOutput | UpdateWorkgroupCommandOutput;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
53
62
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
54
63
|
/**
|
|
55
64
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
56
65
|
*/
|
|
57
66
|
requestHandler?: __HttpHandler;
|
|
58
67
|
/**
|
|
59
|
-
* A constructor for a class implementing the {@link
|
|
68
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
60
69
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
61
70
|
* @internal
|
|
62
71
|
*/
|
|
@@ -146,23 +155,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
146
155
|
*/
|
|
147
156
|
logger?: __Logger;
|
|
148
157
|
/**
|
|
149
|
-
* The {@link
|
|
158
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
150
159
|
*/
|
|
151
160
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
152
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
153
165
|
type RedshiftServerlessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
154
166
|
/**
|
|
155
|
-
*
|
|
167
|
+
* @public
|
|
168
|
+
*
|
|
169
|
+
* The configuration interface of RedshiftServerlessClient class constructor that set the region, credentials and other options.
|
|
156
170
|
*/
|
|
157
171
|
export interface RedshiftServerlessClientConfig extends RedshiftServerlessClientConfigType {
|
|
158
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
159
176
|
type RedshiftServerlessClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
160
177
|
/**
|
|
161
|
-
*
|
|
178
|
+
* @public
|
|
179
|
+
*
|
|
180
|
+
* The resolved configuration interface of RedshiftServerlessClient class. This is resolved and normalized from the {@link RedshiftServerlessClientConfig | constructor configuration interface}.
|
|
162
181
|
*/
|
|
163
182
|
export interface RedshiftServerlessClientResolvedConfig extends RedshiftServerlessClientResolvedConfigType {
|
|
164
183
|
}
|
|
165
184
|
/**
|
|
185
|
+
* @public
|
|
166
186
|
* <p>This is an interface reference for Amazon Redshift Serverless.
|
|
167
187
|
* It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift Serverless.
|
|
168
188
|
* </p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConvertRecoveryPointToSnapshotRequest, ConvertRecoveryPointToSnapshotResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ConvertRecoveryPointToSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ConvertRecoveryPointToSnapshotCommandInput extends ConvertRecoveryPointToSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ConvertRecoveryPointToSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ConvertRecoveryPointToSnapshotCommandOutput extends ConvertRecoveryPointToSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Converts a recovery point to a snapshot. For more information about recovery points and snapshots,
|
|
18
23
|
* see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-snapshots-recovery.html">Working with snapshots and recovery points</a>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ConvertRecoveryPointToSnapshotCommandOutput extends ConvertReco
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ConvertRecoveryPointToSnapshotCommandInput - {@link ConvertRecoveryPointToSnapshotCommandInput}
|
|
35
|
+
* @returns {@link ConvertRecoveryPointToSnapshotCommandOutput}
|
|
29
36
|
* @see {@link ConvertRecoveryPointToSnapshotCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ConvertRecoveryPointToSnapshotCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ConvertRecoveryPointToSnapshotCommandOutput extends ConvertReco
|
|
|
53
60
|
export declare class ConvertRecoveryPointToSnapshotCommand extends $Command<ConvertRecoveryPointToSnapshotCommandInput, ConvertRecoveryPointToSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
54
61
|
readonly input: ConvertRecoveryPointToSnapshotCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ConvertRecoveryPointToSnapshotCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ConvertRecoveryPointToSnapshotCommandInput, ConvertRecoveryPointToSnapshotCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateEndpointAccessRequest, CreateEndpointAccessResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateEndpointAccessCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateEndpointAccessCommandInput extends CreateEndpointAccessRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateEndpointAccessCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateEndpointAccessCommandOutput extends CreateEndpointAccessResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Amazon Redshift Serverless managed VPC endpoint.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateEndpointAccessCommandOutput extends CreateEndpointAccessR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateEndpointAccessCommandInput - {@link CreateEndpointAccessCommandInput}
|
|
34
|
+
* @returns {@link CreateEndpointAccessCommandOutput}
|
|
28
35
|
* @see {@link CreateEndpointAccessCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateEndpointAccessCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateEndpointAccessCommandOutput extends CreateEndpointAccessR
|
|
|
52
59
|
export declare class CreateEndpointAccessCommand extends $Command<CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateEndpointAccessCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateEndpointAccessCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEndpointAccessCommandInput, CreateEndpointAccessCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateNamespaceRequest, CreateNamespaceResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateNamespaceCommandInput extends CreateNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a namespace in Amazon Redshift Serverless.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateNamespaceCommandInput - {@link CreateNamespaceCommandInput}
|
|
34
|
+
* @returns {@link CreateNamespaceCommandOutput}
|
|
28
35
|
* @see {@link CreateNamespaceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateNamespaceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _
|
|
|
46
53
|
export declare class CreateNamespaceCommand extends $Command<CreateNamespaceCommandInput, CreateNamespaceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateNamespaceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateNamespaceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNamespaceCommandInput, CreateNamespaceCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSnapshotCommandInput extends CreateSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a snapshot of all databases in a namespace.
|
|
18
23
|
* For more information about snapshots, see
|
|
19
24
|
* <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-snapshots-recovery.html">
|
|
@@ -28,6 +33,8 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateSnapshotCommandInput - {@link CreateSnapshotCommandInput}
|
|
37
|
+
* @returns {@link CreateSnapshotCommandOutput}
|
|
31
38
|
* @see {@link CreateSnapshotCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateSnapshotCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
55
62
|
export declare class CreateSnapshotCommand extends $Command<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateSnapshotCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateSnapshotCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSnapshotCommandInput, CreateSnapshotCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateUsageLimitRequest, CreateUsageLimitResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateUsageLimitCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateUsageLimitCommandInput extends CreateUsageLimitRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateUsageLimitCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateUsageLimitCommandOutput extends CreateUsageLimitResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a usage limit for a specified Amazon Redshift Serverless usage type. The usage limit is identified by the returned usage limit identifier.
|
|
18
23
|
* </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateUsageLimitCommandOutput extends CreateUsageLimitResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateUsageLimitCommandInput - {@link CreateUsageLimitCommandInput}
|
|
35
|
+
* @returns {@link CreateUsageLimitCommandOutput}
|
|
29
36
|
* @see {@link CreateUsageLimitCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateUsageLimitCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface CreateUsageLimitCommandOutput extends CreateUsageLimitResponse,
|
|
|
50
57
|
export declare class CreateUsageLimitCommand extends $Command<CreateUsageLimitCommandInput, CreateUsageLimitCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
51
58
|
readonly input: CreateUsageLimitCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: CreateUsageLimitCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateUsageLimitCommandInput, CreateUsageLimitCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|