@aws-sdk/client-redshift 3.687.0 → 3.692.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-cjs/index.js +91 -0
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/protocols/Aws_query.js +83 -1
- package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +14 -0
- package/dist-types/commands/DescribeClusterParametersCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClustersCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +7 -0
- package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +602 -645
- package/dist-types/models/models_1.d.ts +588 -492
- package/dist-types/ts3.4/commands/DescribeClusterParametersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +578 -561
- package/dist-types/ts3.4/models/models_1.d.ts +507 -492
- package/package.json +36 -36
|
@@ -1,6 +1,102 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ActionType, AquaConfiguration, AquaConfigurationStatus, AuthorizedTokenIssuer, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup, DataShare, DataShareStatusForConsumer, DataShareStatusForProducer, DefaultClusterParameters, EndpointAccess, EndpointAuthorization, EventSubscription, HsmClientCertificate, HsmConfiguration, Integration, IntegrationError, Parameter, RecurringCharge, RedshiftIdcApplication, ReservedNode, ReservedNodeExchangeStatus, ReservedNodeOfferingType, ScheduledAction, ScheduledActionType, ServiceIntegrationsUnion, Snapshot, SnapshotCopyGrant, SnapshotSchedule, Tag, UsageLimit, UsageLimitBreachAction, UsageLimitFeatureType, ZeroETLIntegrationStatus } from "./models_0";
|
|
3
3
|
import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* <p></p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DescribeClusterParametersMessage {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of a cluster parameter group for which to return details.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
ParameterGroupName: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The parameter types to return. Specify <code>user</code> to show parameters that
|
|
16
|
+
* are different form the default. Similarly, specify <code>engine-default</code> to show
|
|
17
|
+
* parameters that are the same as the default parameter group. </p>
|
|
18
|
+
* <p>Default: All parameter types returned.</p>
|
|
19
|
+
* <p>Valid Values: <code>user</code> | <code>engine-default</code>
|
|
20
|
+
* </p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
Source?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The maximum number of response records to return in each call. If the number of
|
|
26
|
+
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
27
|
+
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
28
|
+
* set of records by retrying the command with the returned marker value. </p>
|
|
29
|
+
* <p>Default: <code>100</code>
|
|
30
|
+
* </p>
|
|
31
|
+
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
MaxRecords?: number | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
37
|
+
* records. When the results of a <a>DescribeClusterParameters</a> request
|
|
38
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
39
|
+
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
40
|
+
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
41
|
+
* retrying the request. </p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
Marker?: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* <p></p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export interface DescribeClustersMessage {
|
|
51
|
+
/**
|
|
52
|
+
* <p>The unique identifier of a cluster whose properties you are requesting. This
|
|
53
|
+
* parameter is case sensitive.</p>
|
|
54
|
+
* <p>The default is that all clusters defined for an account are returned.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
ClusterIdentifier?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The maximum number of response records to return in each call. If the number of
|
|
60
|
+
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
61
|
+
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
62
|
+
* set of records by retrying the command with the returned marker value. </p>
|
|
63
|
+
* <p>Default: <code>100</code>
|
|
64
|
+
* </p>
|
|
65
|
+
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
MaxRecords?: number | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
71
|
+
* records. When the results of a <a>DescribeClusters</a> request exceed the
|
|
72
|
+
* value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
73
|
+
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
74
|
+
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
75
|
+
* retrying the request. </p>
|
|
76
|
+
* <p>Constraints: You can specify either the <b>ClusterIdentifier</b> parameter or the <b>Marker</b> parameter, but not both. </p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
Marker?: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>A tag key or keys for which you want to return all matching clusters that are
|
|
82
|
+
* associated with the specified key or keys. For example, suppose that you have clusters
|
|
83
|
+
* that are tagged with keys called <code>owner</code> and <code>environment</code>. If you
|
|
84
|
+
* specify both of these tag keys in the request, Amazon Redshift returns a response with the
|
|
85
|
+
* clusters that have either or both of these tag keys associated with them.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
TagKeys?: string[] | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* <p>A tag value or values for which you want to return all matching clusters that are
|
|
91
|
+
* associated with the specified tag value or values. For example, suppose that you have
|
|
92
|
+
* clusters that are tagged with values called <code>admin</code> and <code>test</code>. If
|
|
93
|
+
* you specify both of these tag values in the request, Amazon Redshift returns a response with
|
|
94
|
+
* the clusters that have either or both of these tag values associated with
|
|
95
|
+
* them.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
TagValues?: string[] | undefined;
|
|
99
|
+
}
|
|
4
100
|
/**
|
|
5
101
|
* <p></p>
|
|
6
102
|
* @public
|
|
@@ -13,7 +109,7 @@ export interface DescribeClusterSecurityGroupsMessage {
|
|
|
13
109
|
* </p>
|
|
14
110
|
* @public
|
|
15
111
|
*/
|
|
16
|
-
ClusterSecurityGroupName?: string;
|
|
112
|
+
ClusterSecurityGroupName?: string | undefined;
|
|
17
113
|
/**
|
|
18
114
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
19
115
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -24,7 +120,7 @@ export interface DescribeClusterSecurityGroupsMessage {
|
|
|
24
120
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
25
121
|
* @public
|
|
26
122
|
*/
|
|
27
|
-
MaxRecords?: number;
|
|
123
|
+
MaxRecords?: number | undefined;
|
|
28
124
|
/**
|
|
29
125
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
30
126
|
* records. When the results of a <a>DescribeClusterSecurityGroups</a> request
|
|
@@ -35,7 +131,7 @@ export interface DescribeClusterSecurityGroupsMessage {
|
|
|
35
131
|
* <p>Constraints: You must specify either the <b>ClusterSecurityGroupName</b> parameter or the <b>Marker</b> parameter, but not both. </p>
|
|
36
132
|
* @public
|
|
37
133
|
*/
|
|
38
|
-
Marker?: string;
|
|
134
|
+
Marker?: string | undefined;
|
|
39
135
|
/**
|
|
40
136
|
* <p>A tag key or keys for which you want to return all matching cluster security groups
|
|
41
137
|
* that are associated with the specified key or keys. For example, suppose that you have
|
|
@@ -45,7 +141,7 @@ export interface DescribeClusterSecurityGroupsMessage {
|
|
|
45
141
|
* tag keys associated with them.</p>
|
|
46
142
|
* @public
|
|
47
143
|
*/
|
|
48
|
-
TagKeys?: string[];
|
|
144
|
+
TagKeys?: string[] | undefined;
|
|
49
145
|
/**
|
|
50
146
|
* <p>A tag value or values for which you want to return all matching cluster security
|
|
51
147
|
* groups that are associated with the specified tag value or values. For example, suppose
|
|
@@ -55,7 +151,7 @@ export interface DescribeClusterSecurityGroupsMessage {
|
|
|
55
151
|
* associated with them.</p>
|
|
56
152
|
* @public
|
|
57
153
|
*/
|
|
58
|
-
TagValues?: string[];
|
|
154
|
+
TagValues?: string[] | undefined;
|
|
59
155
|
}
|
|
60
156
|
/**
|
|
61
157
|
* @public
|
|
@@ -96,7 +192,7 @@ export interface SnapshotSortingEntity {
|
|
|
96
192
|
* <p>The order for listing the attributes.</p>
|
|
97
193
|
* @public
|
|
98
194
|
*/
|
|
99
|
-
SortOrder?: SortByOrder;
|
|
195
|
+
SortOrder?: SortByOrder | undefined;
|
|
100
196
|
}
|
|
101
197
|
/**
|
|
102
198
|
* <p></p>
|
|
@@ -107,18 +203,18 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
107
203
|
* <p>The identifier of the cluster which generated the requested snapshots.</p>
|
|
108
204
|
* @public
|
|
109
205
|
*/
|
|
110
|
-
ClusterIdentifier?: string;
|
|
206
|
+
ClusterIdentifier?: string | undefined;
|
|
111
207
|
/**
|
|
112
208
|
* <p>The snapshot identifier of the snapshot about which to return
|
|
113
209
|
* information.</p>
|
|
114
210
|
* @public
|
|
115
211
|
*/
|
|
116
|
-
SnapshotIdentifier?: string;
|
|
212
|
+
SnapshotIdentifier?: string | undefined;
|
|
117
213
|
/**
|
|
118
214
|
* <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to describe cluster snapshots.</p>
|
|
119
215
|
* @public
|
|
120
216
|
*/
|
|
121
|
-
SnapshotArn?: string;
|
|
217
|
+
SnapshotArn?: string | undefined;
|
|
122
218
|
/**
|
|
123
219
|
* <p>The type of snapshots for which you are requesting information. By default,
|
|
124
220
|
* snapshots of all types are returned.</p>
|
|
@@ -126,7 +222,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
126
222
|
* </p>
|
|
127
223
|
* @public
|
|
128
224
|
*/
|
|
129
|
-
SnapshotType?: string;
|
|
225
|
+
SnapshotType?: string | undefined;
|
|
130
226
|
/**
|
|
131
227
|
* <p>A value that requests only snapshots created at or after the specified time. The
|
|
132
228
|
* time value is specified in ISO 8601 format. For more information about ISO 8601, go to
|
|
@@ -136,7 +232,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
136
232
|
* </p>
|
|
137
233
|
* @public
|
|
138
234
|
*/
|
|
139
|
-
StartTime?: Date;
|
|
235
|
+
StartTime?: Date | undefined;
|
|
140
236
|
/**
|
|
141
237
|
* <p>A time value that requests only snapshots created at or before the specified time.
|
|
142
238
|
* The time value is specified in ISO 8601 format. For more information about ISO 8601, go
|
|
@@ -147,7 +243,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
147
243
|
* </p>
|
|
148
244
|
* @public
|
|
149
245
|
*/
|
|
150
|
-
EndTime?: Date;
|
|
246
|
+
EndTime?: Date | undefined;
|
|
151
247
|
/**
|
|
152
248
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
153
249
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -158,7 +254,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
158
254
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
159
255
|
* @public
|
|
160
256
|
*/
|
|
161
|
-
MaxRecords?: number;
|
|
257
|
+
MaxRecords?: number | undefined;
|
|
162
258
|
/**
|
|
163
259
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
164
260
|
* records. When the results of a <a>DescribeClusterSnapshots</a> request exceed
|
|
@@ -168,7 +264,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
168
264
|
* retrying the request. </p>
|
|
169
265
|
* @public
|
|
170
266
|
*/
|
|
171
|
-
Marker?: string;
|
|
267
|
+
Marker?: string | undefined;
|
|
172
268
|
/**
|
|
173
269
|
* <p>The Amazon Web Services account used to create or copy the snapshot. Use this field to
|
|
174
270
|
* filter the results to snapshots owned by a particular account. To describe snapshots you
|
|
@@ -176,7 +272,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
176
272
|
* parameter.</p>
|
|
177
273
|
* @public
|
|
178
274
|
*/
|
|
179
|
-
OwnerAccount?: string;
|
|
275
|
+
OwnerAccount?: string | undefined;
|
|
180
276
|
/**
|
|
181
277
|
* <p>A tag key or keys for which you want to return all matching cluster snapshots that
|
|
182
278
|
* are associated with the specified key or keys. For example, suppose that you have
|
|
@@ -186,7 +282,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
186
282
|
* keys associated with them.</p>
|
|
187
283
|
* @public
|
|
188
284
|
*/
|
|
189
|
-
TagKeys?: string[];
|
|
285
|
+
TagKeys?: string[] | undefined;
|
|
190
286
|
/**
|
|
191
287
|
* <p>A tag value or values for which you want to return all matching cluster snapshots
|
|
192
288
|
* that are associated with the specified tag value or values. For example, suppose that
|
|
@@ -196,7 +292,7 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
196
292
|
* associated with them.</p>
|
|
197
293
|
* @public
|
|
198
294
|
*/
|
|
199
|
-
TagValues?: string[];
|
|
295
|
+
TagValues?: string[] | undefined;
|
|
200
296
|
/**
|
|
201
297
|
* <p>A value that indicates whether to return snapshots only for an existing cluster.
|
|
202
298
|
* You can perform table-level restore only by using a snapshot of an existing cluster,
|
|
@@ -224,12 +320,12 @@ export interface DescribeClusterSnapshotsMessage {
|
|
|
224
320
|
* </ul>
|
|
225
321
|
* @public
|
|
226
322
|
*/
|
|
227
|
-
ClusterExists?: boolean;
|
|
323
|
+
ClusterExists?: boolean | undefined;
|
|
228
324
|
/**
|
|
229
325
|
* <p></p>
|
|
230
326
|
* @public
|
|
231
327
|
*/
|
|
232
|
-
SortingEntities?: SnapshotSortingEntity[];
|
|
328
|
+
SortingEntities?: SnapshotSortingEntity[] | undefined;
|
|
233
329
|
}
|
|
234
330
|
/**
|
|
235
331
|
* <p>Contains the output from the <a>DescribeClusterSnapshots</a> action.
|
|
@@ -245,12 +341,12 @@ export interface SnapshotMessage {
|
|
|
245
341
|
* records have been retrieved for the request. </p>
|
|
246
342
|
* @public
|
|
247
343
|
*/
|
|
248
|
-
Marker?: string;
|
|
344
|
+
Marker?: string | undefined;
|
|
249
345
|
/**
|
|
250
346
|
* <p>A list of <a>Snapshot</a> instances. </p>
|
|
251
347
|
* @public
|
|
252
348
|
*/
|
|
253
|
-
Snapshots?: Snapshot[];
|
|
349
|
+
Snapshots?: Snapshot[] | undefined;
|
|
254
350
|
}
|
|
255
351
|
/**
|
|
256
352
|
* <p></p>
|
|
@@ -261,7 +357,7 @@ export interface DescribeClusterSubnetGroupsMessage {
|
|
|
261
357
|
* <p>The name of the cluster subnet group for which information is requested.</p>
|
|
262
358
|
* @public
|
|
263
359
|
*/
|
|
264
|
-
ClusterSubnetGroupName?: string;
|
|
360
|
+
ClusterSubnetGroupName?: string | undefined;
|
|
265
361
|
/**
|
|
266
362
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
267
363
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -272,7 +368,7 @@ export interface DescribeClusterSubnetGroupsMessage {
|
|
|
272
368
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
273
369
|
* @public
|
|
274
370
|
*/
|
|
275
|
-
MaxRecords?: number;
|
|
371
|
+
MaxRecords?: number | undefined;
|
|
276
372
|
/**
|
|
277
373
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
278
374
|
* records. When the results of a <a>DescribeClusterSubnetGroups</a> request
|
|
@@ -282,7 +378,7 @@ export interface DescribeClusterSubnetGroupsMessage {
|
|
|
282
378
|
* retrying the request. </p>
|
|
283
379
|
* @public
|
|
284
380
|
*/
|
|
285
|
-
Marker?: string;
|
|
381
|
+
Marker?: string | undefined;
|
|
286
382
|
/**
|
|
287
383
|
* <p>A tag key or keys for which you want to return all matching cluster subnet groups
|
|
288
384
|
* that are associated with the specified key or keys. For example, suppose that you have
|
|
@@ -292,7 +388,7 @@ export interface DescribeClusterSubnetGroupsMessage {
|
|
|
292
388
|
* tag keys associated with them.</p>
|
|
293
389
|
* @public
|
|
294
390
|
*/
|
|
295
|
-
TagKeys?: string[];
|
|
391
|
+
TagKeys?: string[] | undefined;
|
|
296
392
|
/**
|
|
297
393
|
* <p>A tag value or values for which you want to return all matching cluster subnet
|
|
298
394
|
* groups that are associated with the specified tag value or values. For example, suppose
|
|
@@ -302,7 +398,7 @@ export interface DescribeClusterSubnetGroupsMessage {
|
|
|
302
398
|
* associated with them.</p>
|
|
303
399
|
* @public
|
|
304
400
|
*/
|
|
305
|
-
TagValues?: string[];
|
|
401
|
+
TagValues?: string[] | undefined;
|
|
306
402
|
}
|
|
307
403
|
/**
|
|
308
404
|
* @public
|
|
@@ -312,12 +408,12 @@ export interface DescribeClusterTracksMessage {
|
|
|
312
408
|
* <p>The name of the maintenance track. </p>
|
|
313
409
|
* @public
|
|
314
410
|
*/
|
|
315
|
-
MaintenanceTrackName?: string;
|
|
411
|
+
MaintenanceTrackName?: string | undefined;
|
|
316
412
|
/**
|
|
317
413
|
* <p>An integer value for the maximum number of maintenance tracks to return.</p>
|
|
318
414
|
* @public
|
|
319
415
|
*/
|
|
320
|
-
MaxRecords?: number;
|
|
416
|
+
MaxRecords?: number | undefined;
|
|
321
417
|
/**
|
|
322
418
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
323
419
|
* records. When the results of a <code>DescribeClusterTracks</code> request exceed the
|
|
@@ -327,7 +423,7 @@ export interface DescribeClusterTracksMessage {
|
|
|
327
423
|
* retrying the request. </p>
|
|
328
424
|
* @public
|
|
329
425
|
*/
|
|
330
|
-
Marker?: string;
|
|
426
|
+
Marker?: string | undefined;
|
|
331
427
|
}
|
|
332
428
|
/**
|
|
333
429
|
* <p>Describes the operations that are allowed on a maintenance track.</p>
|
|
@@ -338,7 +434,7 @@ export interface SupportedOperation {
|
|
|
338
434
|
* <p>A list of the supported operations.</p>
|
|
339
435
|
* @public
|
|
340
436
|
*/
|
|
341
|
-
OperationName?: string;
|
|
437
|
+
OperationName?: string | undefined;
|
|
342
438
|
}
|
|
343
439
|
/**
|
|
344
440
|
* <p>A maintenance track that you can switch the current track to.</p>
|
|
@@ -349,17 +445,17 @@ export interface UpdateTarget {
|
|
|
349
445
|
* <p>The name of the new maintenance track.</p>
|
|
350
446
|
* @public
|
|
351
447
|
*/
|
|
352
|
-
MaintenanceTrackName?: string;
|
|
448
|
+
MaintenanceTrackName?: string | undefined;
|
|
353
449
|
/**
|
|
354
450
|
* <p>The cluster version for the new maintenance track.</p>
|
|
355
451
|
* @public
|
|
356
452
|
*/
|
|
357
|
-
DatabaseVersion?: string;
|
|
453
|
+
DatabaseVersion?: string | undefined;
|
|
358
454
|
/**
|
|
359
455
|
* <p>A list of operations supported by the maintenance track.</p>
|
|
360
456
|
* @public
|
|
361
457
|
*/
|
|
362
|
-
SupportedOperations?: SupportedOperation[];
|
|
458
|
+
SupportedOperations?: SupportedOperation[] | undefined;
|
|
363
459
|
}
|
|
364
460
|
/**
|
|
365
461
|
* <p>Defines a maintenance track that determines which Amazon Redshift version to apply
|
|
@@ -375,18 +471,18 @@ export interface MaintenanceTrack {
|
|
|
375
471
|
* <code>trailing</code>.</p>
|
|
376
472
|
* @public
|
|
377
473
|
*/
|
|
378
|
-
MaintenanceTrackName?: string;
|
|
474
|
+
MaintenanceTrackName?: string | undefined;
|
|
379
475
|
/**
|
|
380
476
|
* <p>The version number for the cluster release.</p>
|
|
381
477
|
* @public
|
|
382
478
|
*/
|
|
383
|
-
DatabaseVersion?: string;
|
|
479
|
+
DatabaseVersion?: string | undefined;
|
|
384
480
|
/**
|
|
385
481
|
* <p>An array of <a>UpdateTarget</a> objects to update with the maintenance
|
|
386
482
|
* track. </p>
|
|
387
483
|
* @public
|
|
388
484
|
*/
|
|
389
|
-
UpdateTargets?: UpdateTarget[];
|
|
485
|
+
UpdateTargets?: UpdateTarget[] | undefined;
|
|
390
486
|
}
|
|
391
487
|
/**
|
|
392
488
|
* @public
|
|
@@ -397,14 +493,14 @@ export interface TrackListMessage {
|
|
|
397
493
|
* operation. </p>
|
|
398
494
|
* @public
|
|
399
495
|
*/
|
|
400
|
-
MaintenanceTracks?: MaintenanceTrack[];
|
|
496
|
+
MaintenanceTracks?: MaintenanceTrack[] | undefined;
|
|
401
497
|
/**
|
|
402
498
|
* <p>The starting point to return a set of response tracklist records. You can retrieve the
|
|
403
499
|
* next set of response records by providing the returned marker value in the
|
|
404
500
|
* <code>Marker</code> parameter and retrying the request.</p>
|
|
405
501
|
* @public
|
|
406
502
|
*/
|
|
407
|
-
Marker?: string;
|
|
503
|
+
Marker?: string | undefined;
|
|
408
504
|
}
|
|
409
505
|
/**
|
|
410
506
|
* <p></p>
|
|
@@ -417,7 +513,7 @@ export interface DescribeClusterVersionsMessage {
|
|
|
417
513
|
* </p>
|
|
418
514
|
* @public
|
|
419
515
|
*/
|
|
420
|
-
ClusterVersion?: string;
|
|
516
|
+
ClusterVersion?: string | undefined;
|
|
421
517
|
/**
|
|
422
518
|
* <p>The name of a specific cluster parameter group family to return details
|
|
423
519
|
* for.</p>
|
|
@@ -435,7 +531,7 @@ export interface DescribeClusterVersionsMessage {
|
|
|
435
531
|
* </ul>
|
|
436
532
|
* @public
|
|
437
533
|
*/
|
|
438
|
-
ClusterParameterGroupFamily?: string;
|
|
534
|
+
ClusterParameterGroupFamily?: string | undefined;
|
|
439
535
|
/**
|
|
440
536
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
441
537
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -446,7 +542,7 @@ export interface DescribeClusterVersionsMessage {
|
|
|
446
542
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
447
543
|
* @public
|
|
448
544
|
*/
|
|
449
|
-
MaxRecords?: number;
|
|
545
|
+
MaxRecords?: number | undefined;
|
|
450
546
|
/**
|
|
451
547
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
452
548
|
* records. When the results of a <a>DescribeClusterVersions</a> request exceed
|
|
@@ -456,7 +552,7 @@ export interface DescribeClusterVersionsMessage {
|
|
|
456
552
|
* retrying the request. </p>
|
|
457
553
|
* @public
|
|
458
554
|
*/
|
|
459
|
-
Marker?: string;
|
|
555
|
+
Marker?: string | undefined;
|
|
460
556
|
}
|
|
461
557
|
/**
|
|
462
558
|
* @public
|
|
@@ -466,22 +562,22 @@ export interface DescribeCustomDomainAssociationsMessage {
|
|
|
466
562
|
* <p>The custom domain name for the custom domain association.</p>
|
|
467
563
|
* @public
|
|
468
564
|
*/
|
|
469
|
-
CustomDomainName?: string;
|
|
565
|
+
CustomDomainName?: string | undefined;
|
|
470
566
|
/**
|
|
471
567
|
* <p>The certificate Amazon Resource Name (ARN) for the custom domain association.</p>
|
|
472
568
|
* @public
|
|
473
569
|
*/
|
|
474
|
-
CustomDomainCertificateArn?: string;
|
|
570
|
+
CustomDomainCertificateArn?: string | undefined;
|
|
475
571
|
/**
|
|
476
572
|
* <p>The maximum records setting for the associated custom domain.</p>
|
|
477
573
|
* @public
|
|
478
574
|
*/
|
|
479
|
-
MaxRecords?: number;
|
|
575
|
+
MaxRecords?: number | undefined;
|
|
480
576
|
/**
|
|
481
577
|
* <p>The marker for the custom domain association.</p>
|
|
482
578
|
* @public
|
|
483
579
|
*/
|
|
484
|
-
Marker?: string;
|
|
580
|
+
Marker?: string | undefined;
|
|
485
581
|
}
|
|
486
582
|
/**
|
|
487
583
|
* @public
|
|
@@ -491,7 +587,7 @@ export interface DescribeDataSharesMessage {
|
|
|
491
587
|
* <p>The Amazon resource name (ARN) of the datashare to describe details of.</p>
|
|
492
588
|
* @public
|
|
493
589
|
*/
|
|
494
|
-
DataShareArn?: string;
|
|
590
|
+
DataShareArn?: string | undefined;
|
|
495
591
|
/**
|
|
496
592
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
497
593
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -499,12 +595,12 @@ export interface DescribeDataSharesMessage {
|
|
|
499
595
|
* set of records by retrying the command with the returned marker value. </p>
|
|
500
596
|
* @public
|
|
501
597
|
*/
|
|
502
|
-
MaxRecords?: number;
|
|
598
|
+
MaxRecords?: number | undefined;
|
|
503
599
|
/**
|
|
504
600
|
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
|
|
505
601
|
* @public
|
|
506
602
|
*/
|
|
507
|
-
Marker?: string;
|
|
603
|
+
Marker?: string | undefined;
|
|
508
604
|
}
|
|
509
605
|
/**
|
|
510
606
|
* @public
|
|
@@ -514,12 +610,12 @@ export interface DescribeDataSharesResult {
|
|
|
514
610
|
* <p>The results returned from describing datashares.</p>
|
|
515
611
|
* @public
|
|
516
612
|
*/
|
|
517
|
-
DataShares?: DataShare[];
|
|
613
|
+
DataShares?: DataShare[] | undefined;
|
|
518
614
|
/**
|
|
519
615
|
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
|
|
520
616
|
* @public
|
|
521
617
|
*/
|
|
522
|
-
Marker?: string;
|
|
618
|
+
Marker?: string | undefined;
|
|
523
619
|
}
|
|
524
620
|
/**
|
|
525
621
|
* @public
|
|
@@ -529,13 +625,13 @@ export interface DescribeDataSharesForConsumerMessage {
|
|
|
529
625
|
* <p>The Amazon Resource Name (ARN) of the consumer namespace that returns in the list of datashares.</p>
|
|
530
626
|
* @public
|
|
531
627
|
*/
|
|
532
|
-
ConsumerArn?: string;
|
|
628
|
+
ConsumerArn?: string | undefined;
|
|
533
629
|
/**
|
|
534
630
|
* <p>An identifier giving the status of a datashare in the consumer cluster. If this field is specified, Amazon
|
|
535
631
|
* Redshift returns the list of datashares that have the specified status.</p>
|
|
536
632
|
* @public
|
|
537
633
|
*/
|
|
538
|
-
Status?: DataShareStatusForConsumer;
|
|
634
|
+
Status?: DataShareStatusForConsumer | undefined;
|
|
539
635
|
/**
|
|
540
636
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
541
637
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -543,7 +639,7 @@ export interface DescribeDataSharesForConsumerMessage {
|
|
|
543
639
|
* set of records by retrying the command with the returned marker value. </p>
|
|
544
640
|
* @public
|
|
545
641
|
*/
|
|
546
|
-
MaxRecords?: number;
|
|
642
|
+
MaxRecords?: number | undefined;
|
|
547
643
|
/**
|
|
548
644
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
549
645
|
* records. When the results of a <a>DescribeDataSharesForConsumer</a> request
|
|
@@ -553,7 +649,7 @@ export interface DescribeDataSharesForConsumerMessage {
|
|
|
553
649
|
* retrying the request. </p>
|
|
554
650
|
* @public
|
|
555
651
|
*/
|
|
556
|
-
Marker?: string;
|
|
652
|
+
Marker?: string | undefined;
|
|
557
653
|
}
|
|
558
654
|
/**
|
|
559
655
|
* @public
|
|
@@ -563,7 +659,7 @@ export interface DescribeDataSharesForConsumerResult {
|
|
|
563
659
|
* <p>Shows the results of datashares available for consumers.</p>
|
|
564
660
|
* @public
|
|
565
661
|
*/
|
|
566
|
-
DataShares?: DataShare[];
|
|
662
|
+
DataShares?: DataShare[] | undefined;
|
|
567
663
|
/**
|
|
568
664
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
569
665
|
* records. When the results of a <a>DescribeDataSharesForConsumer</a> request
|
|
@@ -573,7 +669,7 @@ export interface DescribeDataSharesForConsumerResult {
|
|
|
573
669
|
* retrying the request. </p>
|
|
574
670
|
* @public
|
|
575
671
|
*/
|
|
576
|
-
Marker?: string;
|
|
672
|
+
Marker?: string | undefined;
|
|
577
673
|
}
|
|
578
674
|
/**
|
|
579
675
|
* @public
|
|
@@ -583,13 +679,13 @@ export interface DescribeDataSharesForProducerMessage {
|
|
|
583
679
|
* <p>The Amazon Resource Name (ARN) of the producer namespace that returns in the list of datashares.</p>
|
|
584
680
|
* @public
|
|
585
681
|
*/
|
|
586
|
-
ProducerArn?: string;
|
|
682
|
+
ProducerArn?: string | undefined;
|
|
587
683
|
/**
|
|
588
684
|
* <p>An identifier giving the status of a datashare in the producer. If this field is specified, Amazon
|
|
589
685
|
* Redshift returns the list of datashares that have the specified status.</p>
|
|
590
686
|
* @public
|
|
591
687
|
*/
|
|
592
|
-
Status?: DataShareStatusForProducer;
|
|
688
|
+
Status?: DataShareStatusForProducer | undefined;
|
|
593
689
|
/**
|
|
594
690
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
595
691
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -597,7 +693,7 @@ export interface DescribeDataSharesForProducerMessage {
|
|
|
597
693
|
* set of records by retrying the command with the returned marker value. </p>
|
|
598
694
|
* @public
|
|
599
695
|
*/
|
|
600
|
-
MaxRecords?: number;
|
|
696
|
+
MaxRecords?: number | undefined;
|
|
601
697
|
/**
|
|
602
698
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
603
699
|
* records. When the results of a <a>DescribeDataSharesForProducer</a> request
|
|
@@ -607,7 +703,7 @@ export interface DescribeDataSharesForProducerMessage {
|
|
|
607
703
|
* retrying the request. </p>
|
|
608
704
|
* @public
|
|
609
705
|
*/
|
|
610
|
-
Marker?: string;
|
|
706
|
+
Marker?: string | undefined;
|
|
611
707
|
}
|
|
612
708
|
/**
|
|
613
709
|
* @public
|
|
@@ -617,7 +713,7 @@ export interface DescribeDataSharesForProducerResult {
|
|
|
617
713
|
* <p>Shows the results of datashares available for producers.</p>
|
|
618
714
|
* @public
|
|
619
715
|
*/
|
|
620
|
-
DataShares?: DataShare[];
|
|
716
|
+
DataShares?: DataShare[] | undefined;
|
|
621
717
|
/**
|
|
622
718
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
623
719
|
* records. When the results of a <a>DescribeDataSharesForProducer</a> request
|
|
@@ -627,7 +723,7 @@ export interface DescribeDataSharesForProducerResult {
|
|
|
627
723
|
* retrying the request. </p>
|
|
628
724
|
* @public
|
|
629
725
|
*/
|
|
630
|
-
Marker?: string;
|
|
726
|
+
Marker?: string | undefined;
|
|
631
727
|
}
|
|
632
728
|
/**
|
|
633
729
|
* <p></p>
|
|
@@ -649,7 +745,7 @@ export interface DescribeDefaultClusterParametersMessage {
|
|
|
649
745
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
650
746
|
* @public
|
|
651
747
|
*/
|
|
652
|
-
MaxRecords?: number;
|
|
748
|
+
MaxRecords?: number | undefined;
|
|
653
749
|
/**
|
|
654
750
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
655
751
|
* records. When the results of a <a>DescribeDefaultClusterParameters</a>
|
|
@@ -659,7 +755,7 @@ export interface DescribeDefaultClusterParametersMessage {
|
|
|
659
755
|
* retrying the request. </p>
|
|
660
756
|
* @public
|
|
661
757
|
*/
|
|
662
|
-
Marker?: string;
|
|
758
|
+
Marker?: string | undefined;
|
|
663
759
|
}
|
|
664
760
|
/**
|
|
665
761
|
* @public
|
|
@@ -669,7 +765,7 @@ export interface DescribeDefaultClusterParametersResult {
|
|
|
669
765
|
* <p>Describes the default cluster parameters for a parameter group family.</p>
|
|
670
766
|
* @public
|
|
671
767
|
*/
|
|
672
|
-
DefaultClusterParameters?: DefaultClusterParameters;
|
|
768
|
+
DefaultClusterParameters?: DefaultClusterParameters | undefined;
|
|
673
769
|
}
|
|
674
770
|
/**
|
|
675
771
|
* @public
|
|
@@ -679,29 +775,29 @@ export interface DescribeEndpointAccessMessage {
|
|
|
679
775
|
* <p>The cluster identifier associated with the described endpoint.</p>
|
|
680
776
|
* @public
|
|
681
777
|
*/
|
|
682
|
-
ClusterIdentifier?: string;
|
|
778
|
+
ClusterIdentifier?: string | undefined;
|
|
683
779
|
/**
|
|
684
780
|
* <p>The Amazon Web Services account ID of the owner of the cluster.</p>
|
|
685
781
|
* @public
|
|
686
782
|
*/
|
|
687
|
-
ResourceOwner?: string;
|
|
783
|
+
ResourceOwner?: string | undefined;
|
|
688
784
|
/**
|
|
689
785
|
* <p>The name of the endpoint to be described.</p>
|
|
690
786
|
* @public
|
|
691
787
|
*/
|
|
692
|
-
EndpointName?: string;
|
|
788
|
+
EndpointName?: string | undefined;
|
|
693
789
|
/**
|
|
694
790
|
* <p>The virtual private cloud (VPC) identifier with access to the cluster.</p>
|
|
695
791
|
* @public
|
|
696
792
|
*/
|
|
697
|
-
VpcId?: string;
|
|
793
|
+
VpcId?: string | undefined;
|
|
698
794
|
/**
|
|
699
795
|
* <p>The maximum number of records to include in the response. If more records exist
|
|
700
796
|
* than the specified <code>MaxRecords</code> value, a pagination token called a <code>Marker</code> is
|
|
701
797
|
* included in the response so that the remaining results can be retrieved.</p>
|
|
702
798
|
* @public
|
|
703
799
|
*/
|
|
704
|
-
MaxRecords?: number;
|
|
800
|
+
MaxRecords?: number | undefined;
|
|
705
801
|
/**
|
|
706
802
|
* <p>An optional pagination token provided by a previous
|
|
707
803
|
* <code>DescribeEndpointAccess</code> request. If this parameter is specified, the
|
|
@@ -709,7 +805,7 @@ export interface DescribeEndpointAccessMessage {
|
|
|
709
805
|
* <code>MaxRecords</code> parameter.</p>
|
|
710
806
|
* @public
|
|
711
807
|
*/
|
|
712
|
-
Marker?: string;
|
|
808
|
+
Marker?: string | undefined;
|
|
713
809
|
}
|
|
714
810
|
/**
|
|
715
811
|
* @public
|
|
@@ -719,7 +815,7 @@ export interface EndpointAccessList {
|
|
|
719
815
|
* <p>The list of endpoints with access to the cluster.</p>
|
|
720
816
|
* @public
|
|
721
817
|
*/
|
|
722
|
-
EndpointAccessList?: EndpointAccess[];
|
|
818
|
+
EndpointAccessList?: EndpointAccess[] | undefined;
|
|
723
819
|
/**
|
|
724
820
|
* <p>An optional pagination token provided by a previous
|
|
725
821
|
* <code>DescribeEndpointAccess</code> request. If this parameter is specified, the
|
|
@@ -727,7 +823,7 @@ export interface EndpointAccessList {
|
|
|
727
823
|
* <code>MaxRecords</code> parameter.</p>
|
|
728
824
|
* @public
|
|
729
825
|
*/
|
|
730
|
-
Marker?: string;
|
|
826
|
+
Marker?: string | undefined;
|
|
731
827
|
}
|
|
732
828
|
/**
|
|
733
829
|
* @public
|
|
@@ -737,27 +833,27 @@ export interface DescribeEndpointAuthorizationMessage {
|
|
|
737
833
|
* <p>The cluster identifier of the cluster to access.</p>
|
|
738
834
|
* @public
|
|
739
835
|
*/
|
|
740
|
-
ClusterIdentifier?: string;
|
|
836
|
+
ClusterIdentifier?: string | undefined;
|
|
741
837
|
/**
|
|
742
838
|
* <p>The Amazon Web Services account ID of either the cluster owner (grantor) or grantee.
|
|
743
839
|
* If <code>Grantee</code> parameter is true, then the <code>Account</code> value is of the grantor.</p>
|
|
744
840
|
* @public
|
|
745
841
|
*/
|
|
746
|
-
Account?: string;
|
|
842
|
+
Account?: string | undefined;
|
|
747
843
|
/**
|
|
748
844
|
* <p>Indicates whether to check authorization from a grantor or grantee point of view.
|
|
749
845
|
* If true, Amazon Redshift returns endpoint authorizations that you've been granted.
|
|
750
846
|
* If false (default), checks authorization from a grantor point of view.</p>
|
|
751
847
|
* @public
|
|
752
848
|
*/
|
|
753
|
-
Grantee?: boolean;
|
|
849
|
+
Grantee?: boolean | undefined;
|
|
754
850
|
/**
|
|
755
851
|
* <p>The maximum number of records to include in the response. If more records exist
|
|
756
852
|
* than the specified <code>MaxRecords</code> value, a pagination token called a <code>Marker</code> is
|
|
757
853
|
* included in the response so that the remaining results can be retrieved.</p>
|
|
758
854
|
* @public
|
|
759
855
|
*/
|
|
760
|
-
MaxRecords?: number;
|
|
856
|
+
MaxRecords?: number | undefined;
|
|
761
857
|
/**
|
|
762
858
|
* <p>An optional pagination token provided by a previous
|
|
763
859
|
* <code>DescribeEndpointAuthorization</code> request. If this parameter is specified, the
|
|
@@ -765,7 +861,7 @@ export interface DescribeEndpointAuthorizationMessage {
|
|
|
765
861
|
* <code>MaxRecords</code> parameter.</p>
|
|
766
862
|
* @public
|
|
767
863
|
*/
|
|
768
|
-
Marker?: string;
|
|
864
|
+
Marker?: string | undefined;
|
|
769
865
|
}
|
|
770
866
|
/**
|
|
771
867
|
* @public
|
|
@@ -775,7 +871,7 @@ export interface EndpointAuthorizationList {
|
|
|
775
871
|
* <p>The authorizations to an endpoint.</p>
|
|
776
872
|
* @public
|
|
777
873
|
*/
|
|
778
|
-
EndpointAuthorizationList?: EndpointAuthorization[];
|
|
874
|
+
EndpointAuthorizationList?: EndpointAuthorization[] | undefined;
|
|
779
875
|
/**
|
|
780
876
|
* <p>An optional pagination token provided by a previous
|
|
781
877
|
* <code>DescribeEndpointAuthorization</code> request. If this parameter is specified, the
|
|
@@ -783,7 +879,7 @@ export interface EndpointAuthorizationList {
|
|
|
783
879
|
* <code>MaxRecords</code> parameter.</p>
|
|
784
880
|
* @public
|
|
785
881
|
*/
|
|
786
|
-
Marker?: string;
|
|
882
|
+
Marker?: string | undefined;
|
|
787
883
|
}
|
|
788
884
|
/**
|
|
789
885
|
* <p></p>
|
|
@@ -796,7 +892,7 @@ export interface DescribeEventCategoriesMessage {
|
|
|
796
892
|
* <p>Valid values: cluster, cluster-snapshot, cluster-parameter-group, cluster-security-group, and scheduled-action.</p>
|
|
797
893
|
* @public
|
|
798
894
|
*/
|
|
799
|
-
SourceType?: string;
|
|
895
|
+
SourceType?: string | undefined;
|
|
800
896
|
}
|
|
801
897
|
/**
|
|
802
898
|
* <p>Describes event information.</p>
|
|
@@ -807,23 +903,23 @@ export interface EventInfoMap {
|
|
|
807
903
|
* <p>The identifier of an Amazon Redshift event.</p>
|
|
808
904
|
* @public
|
|
809
905
|
*/
|
|
810
|
-
EventId?: string;
|
|
906
|
+
EventId?: string | undefined;
|
|
811
907
|
/**
|
|
812
908
|
* <p>The category of an Amazon Redshift event.</p>
|
|
813
909
|
* @public
|
|
814
910
|
*/
|
|
815
|
-
EventCategories?: string[];
|
|
911
|
+
EventCategories?: string[] | undefined;
|
|
816
912
|
/**
|
|
817
913
|
* <p>The description of an Amazon Redshift event.</p>
|
|
818
914
|
* @public
|
|
819
915
|
*/
|
|
820
|
-
EventDescription?: string;
|
|
916
|
+
EventDescription?: string | undefined;
|
|
821
917
|
/**
|
|
822
918
|
* <p>The severity of the event.</p>
|
|
823
919
|
* <p>Values: ERROR, INFO</p>
|
|
824
920
|
* @public
|
|
825
921
|
*/
|
|
826
|
-
Severity?: string;
|
|
922
|
+
Severity?: string | undefined;
|
|
827
923
|
}
|
|
828
924
|
/**
|
|
829
925
|
* <p>Describes event categories.</p>
|
|
@@ -835,12 +931,12 @@ export interface EventCategoriesMap {
|
|
|
835
931
|
* belong to.</p>
|
|
836
932
|
* @public
|
|
837
933
|
*/
|
|
838
|
-
SourceType?: string;
|
|
934
|
+
SourceType?: string | undefined;
|
|
839
935
|
/**
|
|
840
936
|
* <p>The events in the event category.</p>
|
|
841
937
|
* @public
|
|
842
938
|
*/
|
|
843
|
-
Events?: EventInfoMap[];
|
|
939
|
+
Events?: EventInfoMap[] | undefined;
|
|
844
940
|
}
|
|
845
941
|
/**
|
|
846
942
|
* <p></p>
|
|
@@ -851,7 +947,7 @@ export interface EventCategoriesMessage {
|
|
|
851
947
|
* <p>A list of event categories descriptions.</p>
|
|
852
948
|
* @public
|
|
853
949
|
*/
|
|
854
|
-
EventCategoriesMapList?: EventCategoriesMap[];
|
|
950
|
+
EventCategoriesMapList?: EventCategoriesMap[] | undefined;
|
|
855
951
|
}
|
|
856
952
|
/**
|
|
857
953
|
* @public
|
|
@@ -899,7 +995,7 @@ export interface DescribeEventsMessage {
|
|
|
899
995
|
* </ul>
|
|
900
996
|
* @public
|
|
901
997
|
*/
|
|
902
|
-
SourceIdentifier?: string;
|
|
998
|
+
SourceIdentifier?: string | undefined;
|
|
903
999
|
/**
|
|
904
1000
|
* <p>The event source to retrieve events for. If no value is specified, all events are
|
|
905
1001
|
* returned.</p>
|
|
@@ -929,7 +1025,7 @@ export interface DescribeEventsMessage {
|
|
|
929
1025
|
* </ul>
|
|
930
1026
|
* @public
|
|
931
1027
|
*/
|
|
932
|
-
SourceType?: SourceType;
|
|
1028
|
+
SourceType?: SourceType | undefined;
|
|
933
1029
|
/**
|
|
934
1030
|
* <p>The beginning of the time interval to retrieve events for, specified in ISO 8601
|
|
935
1031
|
* format. For more information about ISO 8601, go to the <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia page.</a>
|
|
@@ -938,7 +1034,7 @@ export interface DescribeEventsMessage {
|
|
|
938
1034
|
* </p>
|
|
939
1035
|
* @public
|
|
940
1036
|
*/
|
|
941
|
-
StartTime?: Date;
|
|
1037
|
+
StartTime?: Date | undefined;
|
|
942
1038
|
/**
|
|
943
1039
|
* <p>The end of the time interval for which to retrieve events, specified in ISO 8601
|
|
944
1040
|
* format. For more information about ISO 8601, go to the <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia page.</a>
|
|
@@ -947,7 +1043,7 @@ export interface DescribeEventsMessage {
|
|
|
947
1043
|
* </p>
|
|
948
1044
|
* @public
|
|
949
1045
|
*/
|
|
950
|
-
EndTime?: Date;
|
|
1046
|
+
EndTime?: Date | undefined;
|
|
951
1047
|
/**
|
|
952
1048
|
* <p>The number of minutes prior to the time of the request for which to retrieve
|
|
953
1049
|
* events. For example, if the request is sent at 18:00 and you specify a duration of 60,
|
|
@@ -956,7 +1052,7 @@ export interface DescribeEventsMessage {
|
|
|
956
1052
|
* </p>
|
|
957
1053
|
* @public
|
|
958
1054
|
*/
|
|
959
|
-
Duration?: number;
|
|
1055
|
+
Duration?: number | undefined;
|
|
960
1056
|
/**
|
|
961
1057
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
962
1058
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -967,7 +1063,7 @@ export interface DescribeEventsMessage {
|
|
|
967
1063
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
968
1064
|
* @public
|
|
969
1065
|
*/
|
|
970
|
-
MaxRecords?: number;
|
|
1066
|
+
MaxRecords?: number | undefined;
|
|
971
1067
|
/**
|
|
972
1068
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
973
1069
|
* records. When the results of a <a>DescribeEvents</a> request exceed the value
|
|
@@ -977,7 +1073,7 @@ export interface DescribeEventsMessage {
|
|
|
977
1073
|
* </p>
|
|
978
1074
|
* @public
|
|
979
1075
|
*/
|
|
980
|
-
Marker?: string;
|
|
1076
|
+
Marker?: string | undefined;
|
|
981
1077
|
}
|
|
982
1078
|
/**
|
|
983
1079
|
* <p>Describes an event.</p>
|
|
@@ -988,39 +1084,39 @@ export interface Event {
|
|
|
988
1084
|
* <p>The identifier for the source of the event.</p>
|
|
989
1085
|
* @public
|
|
990
1086
|
*/
|
|
991
|
-
SourceIdentifier?: string;
|
|
1087
|
+
SourceIdentifier?: string | undefined;
|
|
992
1088
|
/**
|
|
993
1089
|
* <p>The source type for this event.</p>
|
|
994
1090
|
* @public
|
|
995
1091
|
*/
|
|
996
|
-
SourceType?: SourceType;
|
|
1092
|
+
SourceType?: SourceType | undefined;
|
|
997
1093
|
/**
|
|
998
1094
|
* <p>The text of this event.</p>
|
|
999
1095
|
* @public
|
|
1000
1096
|
*/
|
|
1001
|
-
Message?: string;
|
|
1097
|
+
Message?: string | undefined;
|
|
1002
1098
|
/**
|
|
1003
1099
|
* <p>A list of the event categories.</p>
|
|
1004
1100
|
* <p>Values: Configuration, Management, Monitoring, Security, Pending</p>
|
|
1005
1101
|
* @public
|
|
1006
1102
|
*/
|
|
1007
|
-
EventCategories?: string[];
|
|
1103
|
+
EventCategories?: string[] | undefined;
|
|
1008
1104
|
/**
|
|
1009
1105
|
* <p>The severity of the event.</p>
|
|
1010
1106
|
* <p>Values: ERROR, INFO</p>
|
|
1011
1107
|
* @public
|
|
1012
1108
|
*/
|
|
1013
|
-
Severity?: string;
|
|
1109
|
+
Severity?: string | undefined;
|
|
1014
1110
|
/**
|
|
1015
1111
|
* <p>The date and time of the event.</p>
|
|
1016
1112
|
* @public
|
|
1017
1113
|
*/
|
|
1018
|
-
Date?: Date;
|
|
1114
|
+
Date?: Date | undefined;
|
|
1019
1115
|
/**
|
|
1020
1116
|
* <p>The identifier of the event.</p>
|
|
1021
1117
|
* @public
|
|
1022
1118
|
*/
|
|
1023
|
-
EventId?: string;
|
|
1119
|
+
EventId?: string | undefined;
|
|
1024
1120
|
}
|
|
1025
1121
|
/**
|
|
1026
1122
|
* <p></p>
|
|
@@ -1035,12 +1131,12 @@ export interface EventsMessage {
|
|
|
1035
1131
|
* records have been retrieved for the request. </p>
|
|
1036
1132
|
* @public
|
|
1037
1133
|
*/
|
|
1038
|
-
Marker?: string;
|
|
1134
|
+
Marker?: string | undefined;
|
|
1039
1135
|
/**
|
|
1040
1136
|
* <p>A list of <code>Event</code> instances. </p>
|
|
1041
1137
|
* @public
|
|
1042
1138
|
*/
|
|
1043
|
-
Events?: Event[];
|
|
1139
|
+
Events?: Event[] | undefined;
|
|
1044
1140
|
}
|
|
1045
1141
|
/**
|
|
1046
1142
|
* <p></p>
|
|
@@ -1052,7 +1148,7 @@ export interface DescribeEventSubscriptionsMessage {
|
|
|
1052
1148
|
* described.</p>
|
|
1053
1149
|
* @public
|
|
1054
1150
|
*/
|
|
1055
|
-
SubscriptionName?: string;
|
|
1151
|
+
SubscriptionName?: string | undefined;
|
|
1056
1152
|
/**
|
|
1057
1153
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1058
1154
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1063,7 +1159,7 @@ export interface DescribeEventSubscriptionsMessage {
|
|
|
1063
1159
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1064
1160
|
* @public
|
|
1065
1161
|
*/
|
|
1066
|
-
MaxRecords?: number;
|
|
1162
|
+
MaxRecords?: number | undefined;
|
|
1067
1163
|
/**
|
|
1068
1164
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
1069
1165
|
* records. When the results of a DescribeEventSubscriptions request exceed the value
|
|
@@ -1073,7 +1169,7 @@ export interface DescribeEventSubscriptionsMessage {
|
|
|
1073
1169
|
* </p>
|
|
1074
1170
|
* @public
|
|
1075
1171
|
*/
|
|
1076
|
-
Marker?: string;
|
|
1172
|
+
Marker?: string | undefined;
|
|
1077
1173
|
/**
|
|
1078
1174
|
* <p>A tag key or keys for which you want to return all matching event notification
|
|
1079
1175
|
* subscriptions that are associated with the specified key or keys. For example, suppose
|
|
@@ -1083,7 +1179,7 @@ export interface DescribeEventSubscriptionsMessage {
|
|
|
1083
1179
|
* tag keys associated with them.</p>
|
|
1084
1180
|
* @public
|
|
1085
1181
|
*/
|
|
1086
|
-
TagKeys?: string[];
|
|
1182
|
+
TagKeys?: string[] | undefined;
|
|
1087
1183
|
/**
|
|
1088
1184
|
* <p>A tag value or values for which you want to return all matching event notification
|
|
1089
1185
|
* subscriptions that are associated with the specified tag value or values. For example,
|
|
@@ -1093,7 +1189,7 @@ export interface DescribeEventSubscriptionsMessage {
|
|
|
1093
1189
|
* both of these tag values associated with them.</p>
|
|
1094
1190
|
* @public
|
|
1095
1191
|
*/
|
|
1096
|
-
TagValues?: string[];
|
|
1192
|
+
TagValues?: string[] | undefined;
|
|
1097
1193
|
}
|
|
1098
1194
|
/**
|
|
1099
1195
|
* <p></p>
|
|
@@ -1108,12 +1204,12 @@ export interface EventSubscriptionsMessage {
|
|
|
1108
1204
|
* records have been retrieved for the request. </p>
|
|
1109
1205
|
* @public
|
|
1110
1206
|
*/
|
|
1111
|
-
Marker?: string;
|
|
1207
|
+
Marker?: string | undefined;
|
|
1112
1208
|
/**
|
|
1113
1209
|
* <p>A list of event subscriptions.</p>
|
|
1114
1210
|
* @public
|
|
1115
1211
|
*/
|
|
1116
|
-
EventSubscriptionsList?: EventSubscription[];
|
|
1212
|
+
EventSubscriptionsList?: EventSubscription[] | undefined;
|
|
1117
1213
|
}
|
|
1118
1214
|
/**
|
|
1119
1215
|
* <p></p>
|
|
@@ -1126,7 +1222,7 @@ export interface DescribeHsmClientCertificatesMessage {
|
|
|
1126
1222
|
* owned by your Amazon Web Services account.</p>
|
|
1127
1223
|
* @public
|
|
1128
1224
|
*/
|
|
1129
|
-
HsmClientCertificateIdentifier?: string;
|
|
1225
|
+
HsmClientCertificateIdentifier?: string | undefined;
|
|
1130
1226
|
/**
|
|
1131
1227
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1132
1228
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1137,7 +1233,7 @@ export interface DescribeHsmClientCertificatesMessage {
|
|
|
1137
1233
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1138
1234
|
* @public
|
|
1139
1235
|
*/
|
|
1140
|
-
MaxRecords?: number;
|
|
1236
|
+
MaxRecords?: number | undefined;
|
|
1141
1237
|
/**
|
|
1142
1238
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
1143
1239
|
* records. When the results of a <a>DescribeHsmClientCertificates</a> request
|
|
@@ -1147,7 +1243,7 @@ export interface DescribeHsmClientCertificatesMessage {
|
|
|
1147
1243
|
* retrying the request. </p>
|
|
1148
1244
|
* @public
|
|
1149
1245
|
*/
|
|
1150
|
-
Marker?: string;
|
|
1246
|
+
Marker?: string | undefined;
|
|
1151
1247
|
/**
|
|
1152
1248
|
* <p>A tag key or keys for which you want to return all matching HSM client certificates
|
|
1153
1249
|
* that are associated with the specified key or keys. For example, suppose that you have
|
|
@@ -1157,7 +1253,7 @@ export interface DescribeHsmClientCertificatesMessage {
|
|
|
1157
1253
|
* of these tag keys associated with them.</p>
|
|
1158
1254
|
* @public
|
|
1159
1255
|
*/
|
|
1160
|
-
TagKeys?: string[];
|
|
1256
|
+
TagKeys?: string[] | undefined;
|
|
1161
1257
|
/**
|
|
1162
1258
|
* <p>A tag value or values for which you want to return all matching HSM client
|
|
1163
1259
|
* certificates that are associated with the specified tag value or values. For example,
|
|
@@ -1167,7 +1263,7 @@ export interface DescribeHsmClientCertificatesMessage {
|
|
|
1167
1263
|
* either or both of these tag values associated with them.</p>
|
|
1168
1264
|
* @public
|
|
1169
1265
|
*/
|
|
1170
|
-
TagValues?: string[];
|
|
1266
|
+
TagValues?: string[] | undefined;
|
|
1171
1267
|
}
|
|
1172
1268
|
/**
|
|
1173
1269
|
* <p></p>
|
|
@@ -1182,13 +1278,13 @@ export interface HsmClientCertificateMessage {
|
|
|
1182
1278
|
* records have been retrieved for the request. </p>
|
|
1183
1279
|
* @public
|
|
1184
1280
|
*/
|
|
1185
|
-
Marker?: string;
|
|
1281
|
+
Marker?: string | undefined;
|
|
1186
1282
|
/**
|
|
1187
1283
|
* <p>A list of the identifiers for one or more HSM client certificates used by Amazon Redshift
|
|
1188
1284
|
* clusters to store and retrieve database encryption keys in an HSM.</p>
|
|
1189
1285
|
* @public
|
|
1190
1286
|
*/
|
|
1191
|
-
HsmClientCertificates?: HsmClientCertificate[];
|
|
1287
|
+
HsmClientCertificates?: HsmClientCertificate[] | undefined;
|
|
1192
1288
|
}
|
|
1193
1289
|
/**
|
|
1194
1290
|
* <p></p>
|
|
@@ -1201,7 +1297,7 @@ export interface DescribeHsmConfigurationsMessage {
|
|
|
1201
1297
|
* your Amazon Web Services account.</p>
|
|
1202
1298
|
* @public
|
|
1203
1299
|
*/
|
|
1204
|
-
HsmConfigurationIdentifier?: string;
|
|
1300
|
+
HsmConfigurationIdentifier?: string | undefined;
|
|
1205
1301
|
/**
|
|
1206
1302
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1207
1303
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1212,7 +1308,7 @@ export interface DescribeHsmConfigurationsMessage {
|
|
|
1212
1308
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1213
1309
|
* @public
|
|
1214
1310
|
*/
|
|
1215
|
-
MaxRecords?: number;
|
|
1311
|
+
MaxRecords?: number | undefined;
|
|
1216
1312
|
/**
|
|
1217
1313
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
1218
1314
|
* records. When the results of a <a>DescribeHsmConfigurations</a> request
|
|
@@ -1222,7 +1318,7 @@ export interface DescribeHsmConfigurationsMessage {
|
|
|
1222
1318
|
* retrying the request. </p>
|
|
1223
1319
|
* @public
|
|
1224
1320
|
*/
|
|
1225
|
-
Marker?: string;
|
|
1321
|
+
Marker?: string | undefined;
|
|
1226
1322
|
/**
|
|
1227
1323
|
* <p>A tag key or keys for which you want to return all matching HSM configurations that
|
|
1228
1324
|
* are associated with the specified key or keys. For example, suppose that you have HSM
|
|
@@ -1232,7 +1328,7 @@ export interface DescribeHsmConfigurationsMessage {
|
|
|
1232
1328
|
* these tag keys associated with them.</p>
|
|
1233
1329
|
* @public
|
|
1234
1330
|
*/
|
|
1235
|
-
TagKeys?: string[];
|
|
1331
|
+
TagKeys?: string[] | undefined;
|
|
1236
1332
|
/**
|
|
1237
1333
|
* <p>A tag value or values for which you want to return all matching HSM configurations
|
|
1238
1334
|
* that are associated with the specified tag value or values. For example, suppose that
|
|
@@ -1242,7 +1338,7 @@ export interface DescribeHsmConfigurationsMessage {
|
|
|
1242
1338
|
* values associated with them.</p>
|
|
1243
1339
|
* @public
|
|
1244
1340
|
*/
|
|
1245
|
-
TagValues?: string[];
|
|
1341
|
+
TagValues?: string[] | undefined;
|
|
1246
1342
|
}
|
|
1247
1343
|
/**
|
|
1248
1344
|
* <p></p>
|
|
@@ -1257,12 +1353,12 @@ export interface HsmConfigurationMessage {
|
|
|
1257
1353
|
* records have been retrieved for the request. </p>
|
|
1258
1354
|
* @public
|
|
1259
1355
|
*/
|
|
1260
|
-
Marker?: string;
|
|
1356
|
+
Marker?: string | undefined;
|
|
1261
1357
|
/**
|
|
1262
1358
|
* <p>A list of <code>HsmConfiguration</code> objects.</p>
|
|
1263
1359
|
* @public
|
|
1264
1360
|
*/
|
|
1265
|
-
HsmConfigurations?: HsmConfiguration[];
|
|
1361
|
+
HsmConfigurations?: HsmConfiguration[] | undefined;
|
|
1266
1362
|
}
|
|
1267
1363
|
/**
|
|
1268
1364
|
* @public
|
|
@@ -1272,12 +1368,12 @@ export interface DescribeInboundIntegrationsMessage {
|
|
|
1272
1368
|
* <p>The Amazon Resource Name (ARN) of the inbound integration.</p>
|
|
1273
1369
|
* @public
|
|
1274
1370
|
*/
|
|
1275
|
-
IntegrationArn?: string;
|
|
1371
|
+
IntegrationArn?: string | undefined;
|
|
1276
1372
|
/**
|
|
1277
1373
|
* <p>The Amazon Resource Name (ARN) of the target of an inbound integration.</p>
|
|
1278
1374
|
* @public
|
|
1279
1375
|
*/
|
|
1280
|
-
TargetArn?: string;
|
|
1376
|
+
TargetArn?: string | undefined;
|
|
1281
1377
|
/**
|
|
1282
1378
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1283
1379
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1288,7 +1384,7 @@ export interface DescribeInboundIntegrationsMessage {
|
|
|
1288
1384
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1289
1385
|
* @public
|
|
1290
1386
|
*/
|
|
1291
|
-
MaxRecords?: number;
|
|
1387
|
+
MaxRecords?: number | undefined;
|
|
1292
1388
|
/**
|
|
1293
1389
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
1294
1390
|
* records. When the results of a <a>DescribeInboundIntegrations</a> request
|
|
@@ -1298,7 +1394,7 @@ export interface DescribeInboundIntegrationsMessage {
|
|
|
1298
1394
|
* retrying the request. </p>
|
|
1299
1395
|
* @public
|
|
1300
1396
|
*/
|
|
1301
|
-
Marker?: string;
|
|
1397
|
+
Marker?: string | undefined;
|
|
1302
1398
|
}
|
|
1303
1399
|
/**
|
|
1304
1400
|
* <p>The content of an inbound integration.</p>
|
|
@@ -1309,32 +1405,32 @@ export interface InboundIntegration {
|
|
|
1309
1405
|
* <p>The Amazon Resource Name (ARN) of an inbound integration.</p>
|
|
1310
1406
|
* @public
|
|
1311
1407
|
*/
|
|
1312
|
-
IntegrationArn?: string;
|
|
1408
|
+
IntegrationArn?: string | undefined;
|
|
1313
1409
|
/**
|
|
1314
1410
|
* <p>The Amazon Resource Name (ARN) of the source of an inbound integration.</p>
|
|
1315
1411
|
* @public
|
|
1316
1412
|
*/
|
|
1317
|
-
SourceArn?: string;
|
|
1413
|
+
SourceArn?: string | undefined;
|
|
1318
1414
|
/**
|
|
1319
1415
|
* <p>The Amazon Resource Name (ARN) of the target of an inbound integration.</p>
|
|
1320
1416
|
* @public
|
|
1321
1417
|
*/
|
|
1322
|
-
TargetArn?: string;
|
|
1418
|
+
TargetArn?: string | undefined;
|
|
1323
1419
|
/**
|
|
1324
1420
|
* <p>The status of an inbound integration.</p>
|
|
1325
1421
|
* @public
|
|
1326
1422
|
*/
|
|
1327
|
-
Status?: ZeroETLIntegrationStatus;
|
|
1423
|
+
Status?: ZeroETLIntegrationStatus | undefined;
|
|
1328
1424
|
/**
|
|
1329
1425
|
* <p>The outstanding errors of an inbound integration. Each item is an "IntegrationError". This is null if there is no error.</p>
|
|
1330
1426
|
* @public
|
|
1331
1427
|
*/
|
|
1332
|
-
Errors?: IntegrationError[];
|
|
1428
|
+
Errors?: IntegrationError[] | undefined;
|
|
1333
1429
|
/**
|
|
1334
1430
|
* <p>The creation time of an inbound integration.</p>
|
|
1335
1431
|
* @public
|
|
1336
1432
|
*/
|
|
1337
|
-
CreateTime?: Date;
|
|
1433
|
+
CreateTime?: Date | undefined;
|
|
1338
1434
|
}
|
|
1339
1435
|
/**
|
|
1340
1436
|
* @public
|
|
@@ -1348,12 +1444,12 @@ export interface InboundIntegrationsMessage {
|
|
|
1348
1444
|
* records have been retrieved for the request. </p>
|
|
1349
1445
|
* @public
|
|
1350
1446
|
*/
|
|
1351
|
-
Marker?: string;
|
|
1447
|
+
Marker?: string | undefined;
|
|
1352
1448
|
/**
|
|
1353
1449
|
* <p>A list of <a>InboundIntegration</a> instances.</p>
|
|
1354
1450
|
* @public
|
|
1355
1451
|
*/
|
|
1356
|
-
InboundIntegrations?: InboundIntegration[];
|
|
1452
|
+
InboundIntegrations?: InboundIntegration[] | undefined;
|
|
1357
1453
|
}
|
|
1358
1454
|
/**
|
|
1359
1455
|
* @public
|
|
@@ -1393,7 +1489,7 @@ export interface DescribeIntegrationsMessage {
|
|
|
1393
1489
|
* <p>The unique identifier of the integration.</p>
|
|
1394
1490
|
* @public
|
|
1395
1491
|
*/
|
|
1396
|
-
IntegrationArn?: string;
|
|
1492
|
+
IntegrationArn?: string | undefined;
|
|
1397
1493
|
/**
|
|
1398
1494
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1399
1495
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1404,19 +1500,19 @@ export interface DescribeIntegrationsMessage {
|
|
|
1404
1500
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1405
1501
|
* @public
|
|
1406
1502
|
*/
|
|
1407
|
-
MaxRecords?: number;
|
|
1503
|
+
MaxRecords?: number | undefined;
|
|
1408
1504
|
/**
|
|
1409
1505
|
* <p>An optional pagination token provided by a previous <code>DescribeIntegrations</code>
|
|
1410
1506
|
* request. If this parameter is specified, the response includes only records beyond the
|
|
1411
1507
|
* marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
1412
1508
|
* @public
|
|
1413
1509
|
*/
|
|
1414
|
-
Marker?: string;
|
|
1510
|
+
Marker?: string | undefined;
|
|
1415
1511
|
/**
|
|
1416
1512
|
* <p>A filter that specifies one or more resources to return.</p>
|
|
1417
1513
|
* @public
|
|
1418
1514
|
*/
|
|
1419
|
-
Filters?: DescribeIntegrationsFilter[];
|
|
1515
|
+
Filters?: DescribeIntegrationsFilter[] | undefined;
|
|
1420
1516
|
}
|
|
1421
1517
|
/**
|
|
1422
1518
|
* @public
|
|
@@ -1428,12 +1524,12 @@ export interface IntegrationsMessage {
|
|
|
1428
1524
|
* If the <code>Marker</code> field is empty, all response records have been retrieved for the request.</p>
|
|
1429
1525
|
* @public
|
|
1430
1526
|
*/
|
|
1431
|
-
Marker?: string;
|
|
1527
|
+
Marker?: string | undefined;
|
|
1432
1528
|
/**
|
|
1433
1529
|
* <p>List of integrations that are described.</p>
|
|
1434
1530
|
* @public
|
|
1435
1531
|
*/
|
|
1436
|
-
Integrations?: Integration[];
|
|
1532
|
+
Integrations?: Integration[] | undefined;
|
|
1437
1533
|
}
|
|
1438
1534
|
/**
|
|
1439
1535
|
* <p></p>
|
|
@@ -1470,43 +1566,43 @@ export interface LoggingStatus {
|
|
|
1470
1566
|
* <code>true</code> if logging is on, <code>false</code> if logging is off.</p>
|
|
1471
1567
|
* @public
|
|
1472
1568
|
*/
|
|
1473
|
-
LoggingEnabled?: boolean;
|
|
1569
|
+
LoggingEnabled?: boolean | undefined;
|
|
1474
1570
|
/**
|
|
1475
1571
|
* <p>The name of the S3 bucket where the log files are stored.</p>
|
|
1476
1572
|
* @public
|
|
1477
1573
|
*/
|
|
1478
|
-
BucketName?: string;
|
|
1574
|
+
BucketName?: string | undefined;
|
|
1479
1575
|
/**
|
|
1480
1576
|
* <p>The prefix applied to the log file names.</p>
|
|
1481
1577
|
* @public
|
|
1482
1578
|
*/
|
|
1483
|
-
S3KeyPrefix?: string;
|
|
1579
|
+
S3KeyPrefix?: string | undefined;
|
|
1484
1580
|
/**
|
|
1485
1581
|
* <p>The last time that logs were delivered.</p>
|
|
1486
1582
|
* @public
|
|
1487
1583
|
*/
|
|
1488
|
-
LastSuccessfulDeliveryTime?: Date;
|
|
1584
|
+
LastSuccessfulDeliveryTime?: Date | undefined;
|
|
1489
1585
|
/**
|
|
1490
1586
|
* <p>The last time when logs failed to be delivered.</p>
|
|
1491
1587
|
* @public
|
|
1492
1588
|
*/
|
|
1493
|
-
LastFailureTime?: Date;
|
|
1589
|
+
LastFailureTime?: Date | undefined;
|
|
1494
1590
|
/**
|
|
1495
1591
|
* <p>The message indicating that logs failed to be delivered.</p>
|
|
1496
1592
|
* @public
|
|
1497
1593
|
*/
|
|
1498
|
-
LastFailureMessage?: string;
|
|
1594
|
+
LastFailureMessage?: string | undefined;
|
|
1499
1595
|
/**
|
|
1500
1596
|
* <p>The log destination type. An enum with possible values of <code>s3</code> and <code>cloudwatch</code>.</p>
|
|
1501
1597
|
* @public
|
|
1502
1598
|
*/
|
|
1503
|
-
LogDestinationType?: LogDestinationType;
|
|
1599
|
+
LogDestinationType?: LogDestinationType | undefined;
|
|
1504
1600
|
/**
|
|
1505
1601
|
* <p>The collection of exported log types. Possible values are <code>connectionlog</code>, <code>useractivitylog</code>, and
|
|
1506
1602
|
* <code>userlog</code>.</p>
|
|
1507
1603
|
* @public
|
|
1508
1604
|
*/
|
|
1509
|
-
LogExports?: string[];
|
|
1605
|
+
LogExports?: string[] | undefined;
|
|
1510
1606
|
}
|
|
1511
1607
|
/**
|
|
1512
1608
|
* @public
|
|
@@ -1548,7 +1644,7 @@ export interface NodeConfigurationOptionsFilter {
|
|
|
1548
1644
|
* <p>The name of the element to filter.</p>
|
|
1549
1645
|
* @public
|
|
1550
1646
|
*/
|
|
1551
|
-
Name?: NodeConfigurationOptionsFilterName;
|
|
1647
|
+
Name?: NodeConfigurationOptionsFilterName | undefined;
|
|
1552
1648
|
/**
|
|
1553
1649
|
* <p>The filter operator.
|
|
1554
1650
|
* If filter Name is NodeType only the 'in' operator is supported.
|
|
@@ -1557,7 +1653,7 @@ export interface NodeConfigurationOptionsFilter {
|
|
|
1557
1653
|
* Provide a list of values for 'in'.</p>
|
|
1558
1654
|
* @public
|
|
1559
1655
|
*/
|
|
1560
|
-
Operator?: OperatorType;
|
|
1656
|
+
Operator?: OperatorType | undefined;
|
|
1561
1657
|
/**
|
|
1562
1658
|
* <p>List of values. Compare Name using Operator to Values.
|
|
1563
1659
|
* If filter Name is NumberOfNodes, then values can range from 0 to 200.
|
|
@@ -1565,7 +1661,7 @@ export interface NodeConfigurationOptionsFilter {
|
|
|
1565
1661
|
* For example, filter NumberOfNodes (name) GT (operator) 3 (values).</p>
|
|
1566
1662
|
* @public
|
|
1567
1663
|
*/
|
|
1568
|
-
Values?: string[];
|
|
1664
|
+
Values?: string[] | undefined;
|
|
1569
1665
|
}
|
|
1570
1666
|
/**
|
|
1571
1667
|
* @public
|
|
@@ -1584,29 +1680,29 @@ export interface DescribeNodeConfigurationOptionsMessage {
|
|
|
1584
1680
|
* <p>The identifier of the cluster to evaluate for possible node configurations.</p>
|
|
1585
1681
|
* @public
|
|
1586
1682
|
*/
|
|
1587
|
-
ClusterIdentifier?: string;
|
|
1683
|
+
ClusterIdentifier?: string | undefined;
|
|
1588
1684
|
/**
|
|
1589
1685
|
* <p>The identifier of the snapshot to evaluate for possible node configurations.</p>
|
|
1590
1686
|
* @public
|
|
1591
1687
|
*/
|
|
1592
|
-
SnapshotIdentifier?: string;
|
|
1688
|
+
SnapshotIdentifier?: string | undefined;
|
|
1593
1689
|
/**
|
|
1594
1690
|
* <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to describe node configuration.</p>
|
|
1595
1691
|
* @public
|
|
1596
1692
|
*/
|
|
1597
|
-
SnapshotArn?: string;
|
|
1693
|
+
SnapshotArn?: string | undefined;
|
|
1598
1694
|
/**
|
|
1599
1695
|
* <p>The Amazon Web Services account used to create or copy the snapshot.
|
|
1600
1696
|
* Required if you are restoring a snapshot you do not own,
|
|
1601
1697
|
* optional if you own the snapshot.</p>
|
|
1602
1698
|
* @public
|
|
1603
1699
|
*/
|
|
1604
|
-
OwnerAccount?: string;
|
|
1700
|
+
OwnerAccount?: string | undefined;
|
|
1605
1701
|
/**
|
|
1606
1702
|
* <p>A set of name, operator, and value items to filter the results.</p>
|
|
1607
1703
|
* @public
|
|
1608
1704
|
*/
|
|
1609
|
-
Filters?: NodeConfigurationOptionsFilter[];
|
|
1705
|
+
Filters?: NodeConfigurationOptionsFilter[] | undefined;
|
|
1610
1706
|
/**
|
|
1611
1707
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
1612
1708
|
* records. When the results of a <a>DescribeNodeConfigurationOptions</a> request
|
|
@@ -1616,7 +1712,7 @@ export interface DescribeNodeConfigurationOptionsMessage {
|
|
|
1616
1712
|
* retrying the request. </p>
|
|
1617
1713
|
* @public
|
|
1618
1714
|
*/
|
|
1619
|
-
Marker?: string;
|
|
1715
|
+
Marker?: string | undefined;
|
|
1620
1716
|
/**
|
|
1621
1717
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1622
1718
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1627,7 +1723,7 @@ export interface DescribeNodeConfigurationOptionsMessage {
|
|
|
1627
1723
|
* <p>Constraints: minimum 100, maximum 500.</p>
|
|
1628
1724
|
* @public
|
|
1629
1725
|
*/
|
|
1630
|
-
MaxRecords?: number;
|
|
1726
|
+
MaxRecords?: number | undefined;
|
|
1631
1727
|
}
|
|
1632
1728
|
/**
|
|
1633
1729
|
* @public
|
|
@@ -1650,22 +1746,22 @@ export interface NodeConfigurationOption {
|
|
|
1650
1746
|
* <p>The node type, such as, "ra3.4xlarge".</p>
|
|
1651
1747
|
* @public
|
|
1652
1748
|
*/
|
|
1653
|
-
NodeType?: string;
|
|
1749
|
+
NodeType?: string | undefined;
|
|
1654
1750
|
/**
|
|
1655
1751
|
* <p>The number of nodes.</p>
|
|
1656
1752
|
* @public
|
|
1657
1753
|
*/
|
|
1658
|
-
NumberOfNodes?: number;
|
|
1754
|
+
NumberOfNodes?: number | undefined;
|
|
1659
1755
|
/**
|
|
1660
1756
|
* <p>The estimated disk utilizaton percentage.</p>
|
|
1661
1757
|
* @public
|
|
1662
1758
|
*/
|
|
1663
|
-
EstimatedDiskUtilizationPercent?: number;
|
|
1759
|
+
EstimatedDiskUtilizationPercent?: number | undefined;
|
|
1664
1760
|
/**
|
|
1665
1761
|
* <p>The category of the node configuration recommendation.</p>
|
|
1666
1762
|
* @public
|
|
1667
1763
|
*/
|
|
1668
|
-
Mode?: Mode;
|
|
1764
|
+
Mode?: Mode | undefined;
|
|
1669
1765
|
}
|
|
1670
1766
|
/**
|
|
1671
1767
|
* @public
|
|
@@ -1675,7 +1771,7 @@ export interface NodeConfigurationOptionsMessage {
|
|
|
1675
1771
|
* <p>A list of valid node configurations.</p>
|
|
1676
1772
|
* @public
|
|
1677
1773
|
*/
|
|
1678
|
-
NodeConfigurationOptionList?: NodeConfigurationOption[];
|
|
1774
|
+
NodeConfigurationOptionList?: NodeConfigurationOption[] | undefined;
|
|
1679
1775
|
/**
|
|
1680
1776
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
1681
1777
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -1684,7 +1780,7 @@ export interface NodeConfigurationOptionsMessage {
|
|
|
1684
1780
|
* records have been retrieved for the request. </p>
|
|
1685
1781
|
* @public
|
|
1686
1782
|
*/
|
|
1687
|
-
Marker?: string;
|
|
1783
|
+
Marker?: string | undefined;
|
|
1688
1784
|
}
|
|
1689
1785
|
/**
|
|
1690
1786
|
* <p></p>
|
|
@@ -1698,13 +1794,13 @@ export interface DescribeOrderableClusterOptionsMessage {
|
|
|
1698
1794
|
* <p>Constraints: Must be one of the version returned from <a>DescribeClusterVersions</a>.</p>
|
|
1699
1795
|
* @public
|
|
1700
1796
|
*/
|
|
1701
|
-
ClusterVersion?: string;
|
|
1797
|
+
ClusterVersion?: string | undefined;
|
|
1702
1798
|
/**
|
|
1703
1799
|
* <p>The node type filter value. Specify this parameter to show only the available
|
|
1704
1800
|
* offerings matching the specified node type.</p>
|
|
1705
1801
|
* @public
|
|
1706
1802
|
*/
|
|
1707
|
-
NodeType?: string;
|
|
1803
|
+
NodeType?: string | undefined;
|
|
1708
1804
|
/**
|
|
1709
1805
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1710
1806
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1715,7 +1811,7 @@ export interface DescribeOrderableClusterOptionsMessage {
|
|
|
1715
1811
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1716
1812
|
* @public
|
|
1717
1813
|
*/
|
|
1718
|
-
MaxRecords?: number;
|
|
1814
|
+
MaxRecords?: number | undefined;
|
|
1719
1815
|
/**
|
|
1720
1816
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
1721
1817
|
* records. When the results of a <a>DescribeOrderableClusterOptions</a> request
|
|
@@ -1725,7 +1821,7 @@ export interface DescribeOrderableClusterOptionsMessage {
|
|
|
1725
1821
|
* retrying the request. </p>
|
|
1726
1822
|
* @public
|
|
1727
1823
|
*/
|
|
1728
|
-
Marker?: string;
|
|
1824
|
+
Marker?: string | undefined;
|
|
1729
1825
|
}
|
|
1730
1826
|
/**
|
|
1731
1827
|
* <p>Describes an orderable cluster option.</p>
|
|
@@ -1736,22 +1832,22 @@ export interface OrderableClusterOption {
|
|
|
1736
1832
|
* <p>The version of the orderable cluster.</p>
|
|
1737
1833
|
* @public
|
|
1738
1834
|
*/
|
|
1739
|
-
ClusterVersion?: string;
|
|
1835
|
+
ClusterVersion?: string | undefined;
|
|
1740
1836
|
/**
|
|
1741
1837
|
* <p>The cluster type, for example <code>multi-node</code>. </p>
|
|
1742
1838
|
* @public
|
|
1743
1839
|
*/
|
|
1744
|
-
ClusterType?: string;
|
|
1840
|
+
ClusterType?: string | undefined;
|
|
1745
1841
|
/**
|
|
1746
1842
|
* <p>The node type for the orderable cluster.</p>
|
|
1747
1843
|
* @public
|
|
1748
1844
|
*/
|
|
1749
|
-
NodeType?: string;
|
|
1845
|
+
NodeType?: string | undefined;
|
|
1750
1846
|
/**
|
|
1751
1847
|
* <p>A list of availability zones for the orderable cluster.</p>
|
|
1752
1848
|
* @public
|
|
1753
1849
|
*/
|
|
1754
|
-
AvailabilityZones?: AvailabilityZone[];
|
|
1850
|
+
AvailabilityZones?: AvailabilityZone[] | undefined;
|
|
1755
1851
|
}
|
|
1756
1852
|
/**
|
|
1757
1853
|
* <p>Contains the output from the <a>DescribeOrderableClusterOptions</a>
|
|
@@ -1764,7 +1860,7 @@ export interface OrderableClusterOptionsMessage {
|
|
|
1764
1860
|
* orderable options for the cluster.</p>
|
|
1765
1861
|
* @public
|
|
1766
1862
|
*/
|
|
1767
|
-
OrderableClusterOptions?: OrderableClusterOption[];
|
|
1863
|
+
OrderableClusterOptions?: OrderableClusterOption[] | undefined;
|
|
1768
1864
|
/**
|
|
1769
1865
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
1770
1866
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -1773,7 +1869,7 @@ export interface OrderableClusterOptionsMessage {
|
|
|
1773
1869
|
* records have been retrieved for the request. </p>
|
|
1774
1870
|
* @public
|
|
1775
1871
|
*/
|
|
1776
|
-
Marker?: string;
|
|
1872
|
+
Marker?: string | undefined;
|
|
1777
1873
|
}
|
|
1778
1874
|
/**
|
|
1779
1875
|
* @public
|
|
@@ -1793,12 +1889,12 @@ export interface DescribePartnersInputMessage {
|
|
|
1793
1889
|
* <p>The name of the database whose partner integration is being described. If database name is not specified, then all databases in the cluster are described.</p>
|
|
1794
1890
|
* @public
|
|
1795
1891
|
*/
|
|
1796
|
-
DatabaseName?: string;
|
|
1892
|
+
DatabaseName?: string | undefined;
|
|
1797
1893
|
/**
|
|
1798
1894
|
* <p>The name of the partner that is being described. If partner name is not specified, then all partner integrations are described.</p>
|
|
1799
1895
|
* @public
|
|
1800
1896
|
*/
|
|
1801
|
-
PartnerName?: string;
|
|
1897
|
+
PartnerName?: string | undefined;
|
|
1802
1898
|
}
|
|
1803
1899
|
/**
|
|
1804
1900
|
* @public
|
|
@@ -1823,32 +1919,32 @@ export interface PartnerIntegrationInfo {
|
|
|
1823
1919
|
* <p>The name of the database that receives data from a partner.</p>
|
|
1824
1920
|
* @public
|
|
1825
1921
|
*/
|
|
1826
|
-
DatabaseName?: string;
|
|
1922
|
+
DatabaseName?: string | undefined;
|
|
1827
1923
|
/**
|
|
1828
1924
|
* <p>The name of the partner.</p>
|
|
1829
1925
|
* @public
|
|
1830
1926
|
*/
|
|
1831
|
-
PartnerName?: string;
|
|
1927
|
+
PartnerName?: string | undefined;
|
|
1832
1928
|
/**
|
|
1833
1929
|
* <p>The partner integration status.</p>
|
|
1834
1930
|
* @public
|
|
1835
1931
|
*/
|
|
1836
|
-
Status?: PartnerIntegrationStatus;
|
|
1932
|
+
Status?: PartnerIntegrationStatus | undefined;
|
|
1837
1933
|
/**
|
|
1838
1934
|
* <p>The status message provided by the partner.</p>
|
|
1839
1935
|
* @public
|
|
1840
1936
|
*/
|
|
1841
|
-
StatusMessage?: string;
|
|
1937
|
+
StatusMessage?: string | undefined;
|
|
1842
1938
|
/**
|
|
1843
1939
|
* <p>The date (UTC) that the partner integration was created.</p>
|
|
1844
1940
|
* @public
|
|
1845
1941
|
*/
|
|
1846
|
-
CreatedAt?: Date;
|
|
1942
|
+
CreatedAt?: Date | undefined;
|
|
1847
1943
|
/**
|
|
1848
1944
|
* <p>The date (UTC) that the partner integration status was last updated by the partner.</p>
|
|
1849
1945
|
* @public
|
|
1850
1946
|
*/
|
|
1851
|
-
UpdatedAt?: Date;
|
|
1947
|
+
UpdatedAt?: Date | undefined;
|
|
1852
1948
|
}
|
|
1853
1949
|
/**
|
|
1854
1950
|
* @public
|
|
@@ -1858,7 +1954,7 @@ export interface DescribePartnersOutputMessage {
|
|
|
1858
1954
|
* <p>A list of partner integrations.</p>
|
|
1859
1955
|
* @public
|
|
1860
1956
|
*/
|
|
1861
|
-
PartnerIntegrationInfoList?: PartnerIntegrationInfo[];
|
|
1957
|
+
PartnerIntegrationInfoList?: PartnerIntegrationInfo[] | undefined;
|
|
1862
1958
|
}
|
|
1863
1959
|
/**
|
|
1864
1960
|
* @public
|
|
@@ -1868,14 +1964,14 @@ export interface DescribeRedshiftIdcApplicationsMessage {
|
|
|
1868
1964
|
* <p>The ARN for the Redshift application that integrates with IAM Identity Center.</p>
|
|
1869
1965
|
* @public
|
|
1870
1966
|
*/
|
|
1871
|
-
RedshiftIdcApplicationArn?: string;
|
|
1967
|
+
RedshiftIdcApplicationArn?: string | undefined;
|
|
1872
1968
|
/**
|
|
1873
1969
|
* <p>The maximum number of response records to return in each call. If the number of remaining response records
|
|
1874
1970
|
* exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve
|
|
1875
1971
|
* the next set of records by retrying the command with the returned marker value.</p>
|
|
1876
1972
|
* @public
|
|
1877
1973
|
*/
|
|
1878
|
-
MaxRecords?: number;
|
|
1974
|
+
MaxRecords?: number | undefined;
|
|
1879
1975
|
/**
|
|
1880
1976
|
* <p>A value that indicates the starting point for the next set of response records in a subsequent request. If a
|
|
1881
1977
|
* value is returned in a response, you can retrieve the next set
|
|
@@ -1885,7 +1981,7 @@ export interface DescribeRedshiftIdcApplicationsMessage {
|
|
|
1885
1981
|
* </p>
|
|
1886
1982
|
* @public
|
|
1887
1983
|
*/
|
|
1888
|
-
Marker?: string;
|
|
1984
|
+
Marker?: string | undefined;
|
|
1889
1985
|
}
|
|
1890
1986
|
/**
|
|
1891
1987
|
* @public
|
|
@@ -1895,7 +1991,7 @@ export interface DescribeRedshiftIdcApplicationsResult {
|
|
|
1895
1991
|
* <p>The list of Amazon Redshift IAM Identity Center applications.</p>
|
|
1896
1992
|
* @public
|
|
1897
1993
|
*/
|
|
1898
|
-
RedshiftIdcApplications?: RedshiftIdcApplication[];
|
|
1994
|
+
RedshiftIdcApplications?: RedshiftIdcApplication[] | undefined;
|
|
1899
1995
|
/**
|
|
1900
1996
|
* <p>A value that indicates the starting point for the next set of response records in a subsequent
|
|
1901
1997
|
* request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -1905,7 +2001,7 @@ export interface DescribeRedshiftIdcApplicationsResult {
|
|
|
1905
2001
|
* </p>
|
|
1906
2002
|
* @public
|
|
1907
2003
|
*/
|
|
1908
|
-
Marker?: string;
|
|
2004
|
+
Marker?: string | undefined;
|
|
1909
2005
|
}
|
|
1910
2006
|
/**
|
|
1911
2007
|
* @public
|
|
@@ -1915,12 +2011,12 @@ export interface DescribeReservedNodeExchangeStatusInputMessage {
|
|
|
1915
2011
|
* <p>The identifier of the source reserved node in a reserved-node exchange request.</p>
|
|
1916
2012
|
* @public
|
|
1917
2013
|
*/
|
|
1918
|
-
ReservedNodeId?: string;
|
|
2014
|
+
ReservedNodeId?: string | undefined;
|
|
1919
2015
|
/**
|
|
1920
2016
|
* <p>The identifier of the reserved-node exchange request.</p>
|
|
1921
2017
|
* @public
|
|
1922
2018
|
*/
|
|
1923
|
-
ReservedNodeExchangeRequestId?: string;
|
|
2019
|
+
ReservedNodeExchangeRequestId?: string | undefined;
|
|
1924
2020
|
/**
|
|
1925
2021
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1926
2022
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1928,7 +2024,7 @@ export interface DescribeReservedNodeExchangeStatusInputMessage {
|
|
|
1928
2024
|
* set of records by retrying the command with the returned marker value.</p>
|
|
1929
2025
|
* @public
|
|
1930
2026
|
*/
|
|
1931
|
-
MaxRecords?: number;
|
|
2027
|
+
MaxRecords?: number | undefined;
|
|
1932
2028
|
/**
|
|
1933
2029
|
* <p>An optional pagination token provided by a previous <code>DescribeReservedNodeExchangeStatus</code> request. If this
|
|
1934
2030
|
* parameter is specified, the response includes only records beyond the marker, up to the value
|
|
@@ -1937,7 +2033,7 @@ export interface DescribeReservedNodeExchangeStatusInputMessage {
|
|
|
1937
2033
|
* retrying the request.</p>
|
|
1938
2034
|
* @public
|
|
1939
2035
|
*/
|
|
1940
|
-
Marker?: string;
|
|
2036
|
+
Marker?: string | undefined;
|
|
1941
2037
|
}
|
|
1942
2038
|
/**
|
|
1943
2039
|
* @public
|
|
@@ -1948,12 +2044,12 @@ export interface DescribeReservedNodeExchangeStatusOutputMessage {
|
|
|
1948
2044
|
* time, source reserved-node identifier, and additional details.</p>
|
|
1949
2045
|
* @public
|
|
1950
2046
|
*/
|
|
1951
|
-
ReservedNodeExchangeStatusDetails?: ReservedNodeExchangeStatus[];
|
|
2047
|
+
ReservedNodeExchangeStatusDetails?: ReservedNodeExchangeStatus[] | undefined;
|
|
1952
2048
|
/**
|
|
1953
2049
|
* <p>A pagination token provided by a previous <code>DescribeReservedNodeExchangeStatus</code> request.</p>
|
|
1954
2050
|
* @public
|
|
1955
2051
|
*/
|
|
1956
|
-
Marker?: string;
|
|
2052
|
+
Marker?: string | undefined;
|
|
1957
2053
|
}
|
|
1958
2054
|
/**
|
|
1959
2055
|
* <p>The reserved-node exchange status wasn't found.</p>
|
|
@@ -1976,7 +2072,7 @@ export interface DescribeReservedNodeOfferingsMessage {
|
|
|
1976
2072
|
* <p>The unique identifier for the offering.</p>
|
|
1977
2073
|
* @public
|
|
1978
2074
|
*/
|
|
1979
|
-
ReservedNodeOfferingId?: string;
|
|
2075
|
+
ReservedNodeOfferingId?: string | undefined;
|
|
1980
2076
|
/**
|
|
1981
2077
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
1982
2078
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -1987,7 +2083,7 @@ export interface DescribeReservedNodeOfferingsMessage {
|
|
|
1987
2083
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1988
2084
|
* @public
|
|
1989
2085
|
*/
|
|
1990
|
-
MaxRecords?: number;
|
|
2086
|
+
MaxRecords?: number | undefined;
|
|
1991
2087
|
/**
|
|
1992
2088
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
1993
2089
|
* records. When the results of a <a>DescribeReservedNodeOfferings</a> request
|
|
@@ -1997,7 +2093,7 @@ export interface DescribeReservedNodeOfferingsMessage {
|
|
|
1997
2093
|
* retrying the request. </p>
|
|
1998
2094
|
* @public
|
|
1999
2095
|
*/
|
|
2000
|
-
Marker?: string;
|
|
2096
|
+
Marker?: string | undefined;
|
|
2001
2097
|
}
|
|
2002
2098
|
/**
|
|
2003
2099
|
* <p>Describes a reserved node offering.</p>
|
|
@@ -2008,52 +2104,52 @@ export interface ReservedNodeOffering {
|
|
|
2008
2104
|
* <p>The offering identifier.</p>
|
|
2009
2105
|
* @public
|
|
2010
2106
|
*/
|
|
2011
|
-
ReservedNodeOfferingId?: string;
|
|
2107
|
+
ReservedNodeOfferingId?: string | undefined;
|
|
2012
2108
|
/**
|
|
2013
2109
|
* <p>The node type offered by the reserved node offering.</p>
|
|
2014
2110
|
* @public
|
|
2015
2111
|
*/
|
|
2016
|
-
NodeType?: string;
|
|
2112
|
+
NodeType?: string | undefined;
|
|
2017
2113
|
/**
|
|
2018
2114
|
* <p>The duration, in seconds, for which the offering will reserve the node.</p>
|
|
2019
2115
|
* @public
|
|
2020
2116
|
*/
|
|
2021
|
-
Duration?: number;
|
|
2117
|
+
Duration?: number | undefined;
|
|
2022
2118
|
/**
|
|
2023
2119
|
* <p>The upfront fixed charge you will pay to purchase the specific reserved node
|
|
2024
2120
|
* offering.</p>
|
|
2025
2121
|
* @public
|
|
2026
2122
|
*/
|
|
2027
|
-
FixedPrice?: number;
|
|
2123
|
+
FixedPrice?: number | undefined;
|
|
2028
2124
|
/**
|
|
2029
2125
|
* <p>The rate you are charged for each hour the cluster that is using the offering is
|
|
2030
2126
|
* running.</p>
|
|
2031
2127
|
* @public
|
|
2032
2128
|
*/
|
|
2033
|
-
UsagePrice?: number;
|
|
2129
|
+
UsagePrice?: number | undefined;
|
|
2034
2130
|
/**
|
|
2035
2131
|
* <p>The currency code for the compute nodes offering.</p>
|
|
2036
2132
|
* @public
|
|
2037
2133
|
*/
|
|
2038
|
-
CurrencyCode?: string;
|
|
2134
|
+
CurrencyCode?: string | undefined;
|
|
2039
2135
|
/**
|
|
2040
2136
|
* <p>The anticipated utilization of the reserved node, as defined in the reserved node
|
|
2041
2137
|
* offering.</p>
|
|
2042
2138
|
* @public
|
|
2043
2139
|
*/
|
|
2044
|
-
OfferingType?: string;
|
|
2140
|
+
OfferingType?: string | undefined;
|
|
2045
2141
|
/**
|
|
2046
2142
|
* <p>The charge to your account regardless of whether you are creating any clusters
|
|
2047
2143
|
* using the node offering. Recurring charges are only in effect for heavy-utilization
|
|
2048
2144
|
* reserved nodes.</p>
|
|
2049
2145
|
* @public
|
|
2050
2146
|
*/
|
|
2051
|
-
RecurringCharges?: RecurringCharge[];
|
|
2147
|
+
RecurringCharges?: RecurringCharge[] | undefined;
|
|
2052
2148
|
/**
|
|
2053
2149
|
* <p></p>
|
|
2054
2150
|
* @public
|
|
2055
2151
|
*/
|
|
2056
|
-
ReservedNodeOfferingType?: ReservedNodeOfferingType;
|
|
2152
|
+
ReservedNodeOfferingType?: ReservedNodeOfferingType | undefined;
|
|
2057
2153
|
}
|
|
2058
2154
|
/**
|
|
2059
2155
|
* <p></p>
|
|
@@ -2068,12 +2164,12 @@ export interface ReservedNodeOfferingsMessage {
|
|
|
2068
2164
|
* records have been retrieved for the request. </p>
|
|
2069
2165
|
* @public
|
|
2070
2166
|
*/
|
|
2071
|
-
Marker?: string;
|
|
2167
|
+
Marker?: string | undefined;
|
|
2072
2168
|
/**
|
|
2073
2169
|
* <p>A list of <code>ReservedNodeOffering</code> objects.</p>
|
|
2074
2170
|
* @public
|
|
2075
2171
|
*/
|
|
2076
|
-
ReservedNodeOfferings?: ReservedNodeOffering[];
|
|
2172
|
+
ReservedNodeOfferings?: ReservedNodeOffering[] | undefined;
|
|
2077
2173
|
}
|
|
2078
2174
|
/**
|
|
2079
2175
|
* <p></p>
|
|
@@ -2084,7 +2180,7 @@ export interface DescribeReservedNodesMessage {
|
|
|
2084
2180
|
* <p>Identifier for the node reservation.</p>
|
|
2085
2181
|
* @public
|
|
2086
2182
|
*/
|
|
2087
|
-
ReservedNodeId?: string;
|
|
2183
|
+
ReservedNodeId?: string | undefined;
|
|
2088
2184
|
/**
|
|
2089
2185
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
2090
2186
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -2095,7 +2191,7 @@ export interface DescribeReservedNodesMessage {
|
|
|
2095
2191
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
2096
2192
|
* @public
|
|
2097
2193
|
*/
|
|
2098
|
-
MaxRecords?: number;
|
|
2194
|
+
MaxRecords?: number | undefined;
|
|
2099
2195
|
/**
|
|
2100
2196
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
2101
2197
|
* records. When the results of a <a>DescribeReservedNodes</a> request exceed
|
|
@@ -2105,7 +2201,7 @@ export interface DescribeReservedNodesMessage {
|
|
|
2105
2201
|
* retrying the request. </p>
|
|
2106
2202
|
* @public
|
|
2107
2203
|
*/
|
|
2108
|
-
Marker?: string;
|
|
2204
|
+
Marker?: string | undefined;
|
|
2109
2205
|
}
|
|
2110
2206
|
/**
|
|
2111
2207
|
* <p></p>
|
|
@@ -2120,12 +2216,12 @@ export interface ReservedNodesMessage {
|
|
|
2120
2216
|
* records have been retrieved for the request. </p>
|
|
2121
2217
|
* @public
|
|
2122
2218
|
*/
|
|
2123
|
-
Marker?: string;
|
|
2219
|
+
Marker?: string | undefined;
|
|
2124
2220
|
/**
|
|
2125
2221
|
* <p>The list of <code>ReservedNode</code> objects.</p>
|
|
2126
2222
|
* @public
|
|
2127
2223
|
*/
|
|
2128
|
-
ReservedNodes?: ReservedNode[];
|
|
2224
|
+
ReservedNodes?: ReservedNode[] | undefined;
|
|
2129
2225
|
}
|
|
2130
2226
|
/**
|
|
2131
2227
|
* <p></p>
|
|
@@ -2190,35 +2286,35 @@ export interface DescribeScheduledActionsMessage {
|
|
|
2190
2286
|
* <p>The name of the scheduled action to retrieve. </p>
|
|
2191
2287
|
* @public
|
|
2192
2288
|
*/
|
|
2193
|
-
ScheduledActionName?: string;
|
|
2289
|
+
ScheduledActionName?: string | undefined;
|
|
2194
2290
|
/**
|
|
2195
2291
|
* <p>The type of the scheduled actions to retrieve. </p>
|
|
2196
2292
|
* @public
|
|
2197
2293
|
*/
|
|
2198
|
-
TargetActionType?: ScheduledActionTypeValues;
|
|
2294
|
+
TargetActionType?: ScheduledActionTypeValues | undefined;
|
|
2199
2295
|
/**
|
|
2200
2296
|
* <p>The start time in UTC of the scheduled actions to retrieve.
|
|
2201
2297
|
* Only active scheduled actions that have invocations after this time are retrieved.</p>
|
|
2202
2298
|
* @public
|
|
2203
2299
|
*/
|
|
2204
|
-
StartTime?: Date;
|
|
2300
|
+
StartTime?: Date | undefined;
|
|
2205
2301
|
/**
|
|
2206
2302
|
* <p>The end time in UTC of the scheduled action to retrieve.
|
|
2207
2303
|
* Only active scheduled actions that have invocations before this time are retrieved.</p>
|
|
2208
2304
|
* @public
|
|
2209
2305
|
*/
|
|
2210
|
-
EndTime?: Date;
|
|
2306
|
+
EndTime?: Date | undefined;
|
|
2211
2307
|
/**
|
|
2212
2308
|
* <p>If true, retrieve only active scheduled actions.
|
|
2213
2309
|
* If false, retrieve only disabled scheduled actions. </p>
|
|
2214
2310
|
* @public
|
|
2215
2311
|
*/
|
|
2216
|
-
Active?: boolean;
|
|
2312
|
+
Active?: boolean | undefined;
|
|
2217
2313
|
/**
|
|
2218
2314
|
* <p>List of scheduled action filters. </p>
|
|
2219
2315
|
* @public
|
|
2220
2316
|
*/
|
|
2221
|
-
Filters?: ScheduledActionFilter[];
|
|
2317
|
+
Filters?: ScheduledActionFilter[] | undefined;
|
|
2222
2318
|
/**
|
|
2223
2319
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
2224
2320
|
* records. When the results of a <a>DescribeScheduledActions</a> request
|
|
@@ -2228,7 +2324,7 @@ export interface DescribeScheduledActionsMessage {
|
|
|
2228
2324
|
* retrying the request. </p>
|
|
2229
2325
|
* @public
|
|
2230
2326
|
*/
|
|
2231
|
-
Marker?: string;
|
|
2327
|
+
Marker?: string | undefined;
|
|
2232
2328
|
/**
|
|
2233
2329
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
2234
2330
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -2239,7 +2335,7 @@ export interface DescribeScheduledActionsMessage {
|
|
|
2239
2335
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
2240
2336
|
* @public
|
|
2241
2337
|
*/
|
|
2242
|
-
MaxRecords?: number;
|
|
2338
|
+
MaxRecords?: number | undefined;
|
|
2243
2339
|
}
|
|
2244
2340
|
/**
|
|
2245
2341
|
* @public
|
|
@@ -2254,12 +2350,12 @@ export interface ScheduledActionsMessage {
|
|
|
2254
2350
|
* retrying the request. </p>
|
|
2255
2351
|
* @public
|
|
2256
2352
|
*/
|
|
2257
|
-
Marker?: string;
|
|
2353
|
+
Marker?: string | undefined;
|
|
2258
2354
|
/**
|
|
2259
2355
|
* <p>List of retrieved scheduled actions. </p>
|
|
2260
2356
|
* @public
|
|
2261
2357
|
*/
|
|
2262
|
-
ScheduledActions?: ScheduledAction[];
|
|
2358
|
+
ScheduledActions?: ScheduledAction[] | undefined;
|
|
2263
2359
|
}
|
|
2264
2360
|
/**
|
|
2265
2361
|
* <p>The result of the <code>DescribeSnapshotCopyGrants</code> action.</p>
|
|
@@ -2270,7 +2366,7 @@ export interface DescribeSnapshotCopyGrantsMessage {
|
|
|
2270
2366
|
* <p>The name of the snapshot copy grant.</p>
|
|
2271
2367
|
* @public
|
|
2272
2368
|
*/
|
|
2273
|
-
SnapshotCopyGrantName?: string;
|
|
2369
|
+
SnapshotCopyGrantName?: string | undefined;
|
|
2274
2370
|
/**
|
|
2275
2371
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
2276
2372
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -2281,7 +2377,7 @@ export interface DescribeSnapshotCopyGrantsMessage {
|
|
|
2281
2377
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
2282
2378
|
* @public
|
|
2283
2379
|
*/
|
|
2284
|
-
MaxRecords?: number;
|
|
2380
|
+
MaxRecords?: number | undefined;
|
|
2285
2381
|
/**
|
|
2286
2382
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
2287
2383
|
* records. When the results of a <code>DescribeSnapshotCopyGrant</code> request exceed the
|
|
@@ -2292,7 +2388,7 @@ export interface DescribeSnapshotCopyGrantsMessage {
|
|
|
2292
2388
|
* <p>Constraints: You can specify either the <b>SnapshotCopyGrantName</b> parameter or the <b>Marker</b> parameter, but not both. </p>
|
|
2293
2389
|
* @public
|
|
2294
2390
|
*/
|
|
2295
|
-
Marker?: string;
|
|
2391
|
+
Marker?: string | undefined;
|
|
2296
2392
|
/**
|
|
2297
2393
|
* <p>A tag key or keys for which you want to return all matching resources that are
|
|
2298
2394
|
* associated with the specified key or keys. For example, suppose that you have resources
|
|
@@ -2301,7 +2397,7 @@ export interface DescribeSnapshotCopyGrantsMessage {
|
|
|
2301
2397
|
* that have either or both of these tag keys associated with them.</p>
|
|
2302
2398
|
* @public
|
|
2303
2399
|
*/
|
|
2304
|
-
TagKeys?: string[];
|
|
2400
|
+
TagKeys?: string[] | undefined;
|
|
2305
2401
|
/**
|
|
2306
2402
|
* <p>A tag value or values for which you want to return all matching resources that are
|
|
2307
2403
|
* associated with the specified value or values. For example, suppose that you have
|
|
@@ -2310,7 +2406,7 @@ export interface DescribeSnapshotCopyGrantsMessage {
|
|
|
2310
2406
|
* resources that have either or both of these tag values associated with them.</p>
|
|
2311
2407
|
* @public
|
|
2312
2408
|
*/
|
|
2313
|
-
TagValues?: string[];
|
|
2409
|
+
TagValues?: string[] | undefined;
|
|
2314
2410
|
}
|
|
2315
2411
|
/**
|
|
2316
2412
|
* <p></p>
|
|
@@ -2327,12 +2423,12 @@ export interface SnapshotCopyGrantMessage {
|
|
|
2327
2423
|
* <p>Constraints: You can specify either the <b>SnapshotCopyGrantName</b> parameter or the <b>Marker</b> parameter, but not both. </p>
|
|
2328
2424
|
* @public
|
|
2329
2425
|
*/
|
|
2330
|
-
Marker?: string;
|
|
2426
|
+
Marker?: string | undefined;
|
|
2331
2427
|
/**
|
|
2332
2428
|
* <p>The list of <code>SnapshotCopyGrant</code> objects.</p>
|
|
2333
2429
|
* @public
|
|
2334
2430
|
*/
|
|
2335
|
-
SnapshotCopyGrants?: SnapshotCopyGrant[];
|
|
2431
|
+
SnapshotCopyGrants?: SnapshotCopyGrant[] | undefined;
|
|
2336
2432
|
}
|
|
2337
2433
|
/**
|
|
2338
2434
|
* @public
|
|
@@ -2343,22 +2439,22 @@ export interface DescribeSnapshotSchedulesMessage {
|
|
|
2343
2439
|
* view.</p>
|
|
2344
2440
|
* @public
|
|
2345
2441
|
*/
|
|
2346
|
-
ClusterIdentifier?: string;
|
|
2442
|
+
ClusterIdentifier?: string | undefined;
|
|
2347
2443
|
/**
|
|
2348
2444
|
* <p>A unique identifier for a snapshot schedule.</p>
|
|
2349
2445
|
* @public
|
|
2350
2446
|
*/
|
|
2351
|
-
ScheduleIdentifier?: string;
|
|
2447
|
+
ScheduleIdentifier?: string | undefined;
|
|
2352
2448
|
/**
|
|
2353
2449
|
* <p>The key value for a snapshot schedule tag.</p>
|
|
2354
2450
|
* @public
|
|
2355
2451
|
*/
|
|
2356
|
-
TagKeys?: string[];
|
|
2452
|
+
TagKeys?: string[] | undefined;
|
|
2357
2453
|
/**
|
|
2358
2454
|
* <p>The value corresponding to the key of the snapshot schedule tag.</p>
|
|
2359
2455
|
* @public
|
|
2360
2456
|
*/
|
|
2361
|
-
TagValues?: string[];
|
|
2457
|
+
TagValues?: string[] | undefined;
|
|
2362
2458
|
/**
|
|
2363
2459
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
2364
2460
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -2367,7 +2463,7 @@ export interface DescribeSnapshotSchedulesMessage {
|
|
|
2367
2463
|
* records have been retrieved for the request.</p>
|
|
2368
2464
|
* @public
|
|
2369
2465
|
*/
|
|
2370
|
-
Marker?: string;
|
|
2466
|
+
Marker?: string | undefined;
|
|
2371
2467
|
/**
|
|
2372
2468
|
* <p>The maximum number or response records to return in each call. If the number of
|
|
2373
2469
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -2376,7 +2472,7 @@ export interface DescribeSnapshotSchedulesMessage {
|
|
|
2376
2472
|
* value.</p>
|
|
2377
2473
|
* @public
|
|
2378
2474
|
*/
|
|
2379
|
-
MaxRecords?: number;
|
|
2475
|
+
MaxRecords?: number | undefined;
|
|
2380
2476
|
}
|
|
2381
2477
|
/**
|
|
2382
2478
|
* @public
|
|
@@ -2386,7 +2482,7 @@ export interface DescribeSnapshotSchedulesOutputMessage {
|
|
|
2386
2482
|
* <p>A list of SnapshotSchedules.</p>
|
|
2387
2483
|
* @public
|
|
2388
2484
|
*/
|
|
2389
|
-
SnapshotSchedules?: SnapshotSchedule[];
|
|
2485
|
+
SnapshotSchedules?: SnapshotSchedule[] | undefined;
|
|
2390
2486
|
/**
|
|
2391
2487
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
2392
2488
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -2395,7 +2491,7 @@ export interface DescribeSnapshotSchedulesOutputMessage {
|
|
|
2395
2491
|
* records have been retrieved for the request.</p>
|
|
2396
2492
|
* @public
|
|
2397
2493
|
*/
|
|
2398
|
-
Marker?: string;
|
|
2494
|
+
Marker?: string | undefined;
|
|
2399
2495
|
}
|
|
2400
2496
|
/**
|
|
2401
2497
|
* <p></p>
|
|
@@ -2406,7 +2502,7 @@ export interface DescribeTableRestoreStatusMessage {
|
|
|
2406
2502
|
* <p>The Amazon Redshift cluster that the table is being restored to.</p>
|
|
2407
2503
|
* @public
|
|
2408
2504
|
*/
|
|
2409
|
-
ClusterIdentifier?: string;
|
|
2505
|
+
ClusterIdentifier?: string | undefined;
|
|
2410
2506
|
/**
|
|
2411
2507
|
* <p>The identifier of the table restore request to return status for. If you don't
|
|
2412
2508
|
* specify a <code>TableRestoreRequestId</code> value, then
|
|
@@ -2414,14 +2510,14 @@ export interface DescribeTableRestoreStatusMessage {
|
|
|
2414
2510
|
* restore requests.</p>
|
|
2415
2511
|
* @public
|
|
2416
2512
|
*/
|
|
2417
|
-
TableRestoreRequestId?: string;
|
|
2513
|
+
TableRestoreRequestId?: string | undefined;
|
|
2418
2514
|
/**
|
|
2419
2515
|
* <p>The maximum number of records to include in the response. If more records exist
|
|
2420
2516
|
* than the specified <code>MaxRecords</code> value, a pagination token called a marker is
|
|
2421
2517
|
* included in the response so that the remaining results can be retrieved.</p>
|
|
2422
2518
|
* @public
|
|
2423
2519
|
*/
|
|
2424
|
-
MaxRecords?: number;
|
|
2520
|
+
MaxRecords?: number | undefined;
|
|
2425
2521
|
/**
|
|
2426
2522
|
* <p>An optional pagination token provided by a previous
|
|
2427
2523
|
* <code>DescribeTableRestoreStatus</code> request. If this parameter is specified, the
|
|
@@ -2429,7 +2525,7 @@ export interface DescribeTableRestoreStatusMessage {
|
|
|
2429
2525
|
* <code>MaxRecords</code> parameter.</p>
|
|
2430
2526
|
* @public
|
|
2431
2527
|
*/
|
|
2432
|
-
Marker?: string;
|
|
2528
|
+
Marker?: string | undefined;
|
|
2433
2529
|
}
|
|
2434
2530
|
/**
|
|
2435
2531
|
* <p>The specified <code>TableRestoreRequestId</code> value was not found.</p>
|
|
@@ -2468,7 +2564,7 @@ export interface TableRestoreStatus {
|
|
|
2468
2564
|
* <p>The unique identifier for the table restore request.</p>
|
|
2469
2565
|
* @public
|
|
2470
2566
|
*/
|
|
2471
|
-
TableRestoreRequestId?: string;
|
|
2567
|
+
TableRestoreRequestId?: string | undefined;
|
|
2472
2568
|
/**
|
|
2473
2569
|
* <p>A value that describes the current state of the table restore request.</p>
|
|
2474
2570
|
* <p>Valid Values: <code>SUCCEEDED</code>, <code>FAILED</code>, <code>CANCELED</code>,
|
|
@@ -2476,71 +2572,71 @@ export interface TableRestoreStatus {
|
|
|
2476
2572
|
* </p>
|
|
2477
2573
|
* @public
|
|
2478
2574
|
*/
|
|
2479
|
-
Status?: TableRestoreStatusType;
|
|
2575
|
+
Status?: TableRestoreStatusType | undefined;
|
|
2480
2576
|
/**
|
|
2481
2577
|
* <p>A description of the status of the table restore request. Status values include
|
|
2482
2578
|
* <code>SUCCEEDED</code>, <code>FAILED</code>, <code>CANCELED</code>,
|
|
2483
2579
|
* <code>PENDING</code>, <code>IN_PROGRESS</code>.</p>
|
|
2484
2580
|
* @public
|
|
2485
2581
|
*/
|
|
2486
|
-
Message?: string;
|
|
2582
|
+
Message?: string | undefined;
|
|
2487
2583
|
/**
|
|
2488
2584
|
* <p>The time that the table restore request was made, in Universal Coordinated Time
|
|
2489
2585
|
* (UTC).</p>
|
|
2490
2586
|
* @public
|
|
2491
2587
|
*/
|
|
2492
|
-
RequestTime?: Date;
|
|
2588
|
+
RequestTime?: Date | undefined;
|
|
2493
2589
|
/**
|
|
2494
2590
|
* <p>The amount of data restored to the new table so far, in megabytes (MB).</p>
|
|
2495
2591
|
* @public
|
|
2496
2592
|
*/
|
|
2497
|
-
ProgressInMegaBytes?: number;
|
|
2593
|
+
ProgressInMegaBytes?: number | undefined;
|
|
2498
2594
|
/**
|
|
2499
2595
|
* <p>The total amount of data to restore to the new table, in megabytes (MB).</p>
|
|
2500
2596
|
* @public
|
|
2501
2597
|
*/
|
|
2502
|
-
TotalDataInMegaBytes?: number;
|
|
2598
|
+
TotalDataInMegaBytes?: number | undefined;
|
|
2503
2599
|
/**
|
|
2504
2600
|
* <p>The identifier of the Amazon Redshift cluster that the table is being restored
|
|
2505
2601
|
* to.</p>
|
|
2506
2602
|
* @public
|
|
2507
2603
|
*/
|
|
2508
|
-
ClusterIdentifier?: string;
|
|
2604
|
+
ClusterIdentifier?: string | undefined;
|
|
2509
2605
|
/**
|
|
2510
2606
|
* <p>The identifier of the snapshot that the table is being restored from.</p>
|
|
2511
2607
|
* @public
|
|
2512
2608
|
*/
|
|
2513
|
-
SnapshotIdentifier?: string;
|
|
2609
|
+
SnapshotIdentifier?: string | undefined;
|
|
2514
2610
|
/**
|
|
2515
2611
|
* <p>The name of the source database that contains the table being restored.</p>
|
|
2516
2612
|
* @public
|
|
2517
2613
|
*/
|
|
2518
|
-
SourceDatabaseName?: string;
|
|
2614
|
+
SourceDatabaseName?: string | undefined;
|
|
2519
2615
|
/**
|
|
2520
2616
|
* <p>The name of the source schema that contains the table being restored.</p>
|
|
2521
2617
|
* @public
|
|
2522
2618
|
*/
|
|
2523
|
-
SourceSchemaName?: string;
|
|
2619
|
+
SourceSchemaName?: string | undefined;
|
|
2524
2620
|
/**
|
|
2525
2621
|
* <p>The name of the source table being restored.</p>
|
|
2526
2622
|
* @public
|
|
2527
2623
|
*/
|
|
2528
|
-
SourceTableName?: string;
|
|
2624
|
+
SourceTableName?: string | undefined;
|
|
2529
2625
|
/**
|
|
2530
2626
|
* <p>The name of the database to restore the table to.</p>
|
|
2531
2627
|
* @public
|
|
2532
2628
|
*/
|
|
2533
|
-
TargetDatabaseName?: string;
|
|
2629
|
+
TargetDatabaseName?: string | undefined;
|
|
2534
2630
|
/**
|
|
2535
2631
|
* <p>The name of the schema to restore the table to.</p>
|
|
2536
2632
|
* @public
|
|
2537
2633
|
*/
|
|
2538
|
-
TargetSchemaName?: string;
|
|
2634
|
+
TargetSchemaName?: string | undefined;
|
|
2539
2635
|
/**
|
|
2540
2636
|
* <p>The name of the table to create as a result of the table restore request.</p>
|
|
2541
2637
|
* @public
|
|
2542
2638
|
*/
|
|
2543
|
-
NewTableName?: string;
|
|
2639
|
+
NewTableName?: string | undefined;
|
|
2544
2640
|
}
|
|
2545
2641
|
/**
|
|
2546
2642
|
* <p></p>
|
|
@@ -2551,12 +2647,12 @@ export interface TableRestoreStatusMessage {
|
|
|
2551
2647
|
* <p>A list of status details for one or more table restore requests.</p>
|
|
2552
2648
|
* @public
|
|
2553
2649
|
*/
|
|
2554
|
-
TableRestoreStatusDetails?: TableRestoreStatus[];
|
|
2650
|
+
TableRestoreStatusDetails?: TableRestoreStatus[] | undefined;
|
|
2555
2651
|
/**
|
|
2556
2652
|
* <p>A pagination token that can be used in a subsequent <a>DescribeTableRestoreStatus</a> request.</p>
|
|
2557
2653
|
* @public
|
|
2558
2654
|
*/
|
|
2559
|
-
Marker?: string;
|
|
2655
|
+
Marker?: string | undefined;
|
|
2560
2656
|
}
|
|
2561
2657
|
/**
|
|
2562
2658
|
* <p></p>
|
|
@@ -2568,7 +2664,7 @@ export interface DescribeTagsMessage {
|
|
|
2568
2664
|
* example, <code>arn:aws:redshift:us-east-2:123456789:cluster:t1</code>. </p>
|
|
2569
2665
|
* @public
|
|
2570
2666
|
*/
|
|
2571
|
-
ResourceName?: string;
|
|
2667
|
+
ResourceName?: string | undefined;
|
|
2572
2668
|
/**
|
|
2573
2669
|
* <p>The type of resource with which you want to view tags. Valid resource types are: </p>
|
|
2574
2670
|
* <ul>
|
|
@@ -2615,7 +2711,7 @@ export interface DescribeTagsMessage {
|
|
|
2615
2711
|
* the Amazon Redshift Cluster Management Guide. </p>
|
|
2616
2712
|
* @public
|
|
2617
2713
|
*/
|
|
2618
|
-
ResourceType?: string;
|
|
2714
|
+
ResourceType?: string | undefined;
|
|
2619
2715
|
/**
|
|
2620
2716
|
* <p>The maximum number or response records to return in each call. If the number of
|
|
2621
2717
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -2624,7 +2720,7 @@ export interface DescribeTagsMessage {
|
|
|
2624
2720
|
* </p>
|
|
2625
2721
|
* @public
|
|
2626
2722
|
*/
|
|
2627
|
-
MaxRecords?: number;
|
|
2723
|
+
MaxRecords?: number | undefined;
|
|
2628
2724
|
/**
|
|
2629
2725
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
2630
2726
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -2633,7 +2729,7 @@ export interface DescribeTagsMessage {
|
|
|
2633
2729
|
* records have been retrieved for the request. </p>
|
|
2634
2730
|
* @public
|
|
2635
2731
|
*/
|
|
2636
|
-
Marker?: string;
|
|
2732
|
+
Marker?: string | undefined;
|
|
2637
2733
|
/**
|
|
2638
2734
|
* <p>A tag key or keys for which you want to return all matching resources that are
|
|
2639
2735
|
* associated with the specified key or keys. For example, suppose that you have resources
|
|
@@ -2642,7 +2738,7 @@ export interface DescribeTagsMessage {
|
|
|
2642
2738
|
* that have either or both of these tag keys associated with them.</p>
|
|
2643
2739
|
* @public
|
|
2644
2740
|
*/
|
|
2645
|
-
TagKeys?: string[];
|
|
2741
|
+
TagKeys?: string[] | undefined;
|
|
2646
2742
|
/**
|
|
2647
2743
|
* <p>A tag value or values for which you want to return all matching resources that are
|
|
2648
2744
|
* associated with the specified value or values. For example, suppose that you have
|
|
@@ -2651,7 +2747,7 @@ export interface DescribeTagsMessage {
|
|
|
2651
2747
|
* resources that have either or both of these tag values associated with them.</p>
|
|
2652
2748
|
* @public
|
|
2653
2749
|
*/
|
|
2654
|
-
TagValues?: string[];
|
|
2750
|
+
TagValues?: string[] | undefined;
|
|
2655
2751
|
}
|
|
2656
2752
|
/**
|
|
2657
2753
|
* <p>A tag and its associated resource.</p>
|
|
@@ -2662,13 +2758,13 @@ export interface TaggedResource {
|
|
|
2662
2758
|
* <p>The tag for the resource.</p>
|
|
2663
2759
|
* @public
|
|
2664
2760
|
*/
|
|
2665
|
-
Tag?: Tag;
|
|
2761
|
+
Tag?: Tag | undefined;
|
|
2666
2762
|
/**
|
|
2667
2763
|
* <p>The Amazon Resource Name (ARN) with which the tag is associated, for example:
|
|
2668
2764
|
* <code>arn:aws:redshift:us-east-2:123456789:cluster:t1</code>.</p>
|
|
2669
2765
|
* @public
|
|
2670
2766
|
*/
|
|
2671
|
-
ResourceName?: string;
|
|
2767
|
+
ResourceName?: string | undefined;
|
|
2672
2768
|
/**
|
|
2673
2769
|
* <p>The type of resource with which the tag is associated. Valid resource types are: </p>
|
|
2674
2770
|
* <ul>
|
|
@@ -2705,7 +2801,7 @@ export interface TaggedResource {
|
|
|
2705
2801
|
* Amazon Redshift Cluster Management Guide. </p>
|
|
2706
2802
|
* @public
|
|
2707
2803
|
*/
|
|
2708
|
-
ResourceType?: string;
|
|
2804
|
+
ResourceType?: string | undefined;
|
|
2709
2805
|
}
|
|
2710
2806
|
/**
|
|
2711
2807
|
* <p></p>
|
|
@@ -2716,7 +2812,7 @@ export interface TaggedResourceListMessage {
|
|
|
2716
2812
|
* <p>A list of tags with their associated resources.</p>
|
|
2717
2813
|
* @public
|
|
2718
2814
|
*/
|
|
2719
|
-
TaggedResources?: TaggedResource[];
|
|
2815
|
+
TaggedResources?: TaggedResource[] | undefined;
|
|
2720
2816
|
/**
|
|
2721
2817
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
2722
2818
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -2725,7 +2821,7 @@ export interface TaggedResourceListMessage {
|
|
|
2725
2821
|
* records have been retrieved for the request. </p>
|
|
2726
2822
|
* @public
|
|
2727
2823
|
*/
|
|
2728
|
-
Marker?: string;
|
|
2824
|
+
Marker?: string | undefined;
|
|
2729
2825
|
}
|
|
2730
2826
|
/**
|
|
2731
2827
|
* @public
|
|
@@ -2735,17 +2831,17 @@ export interface DescribeUsageLimitsMessage {
|
|
|
2735
2831
|
* <p>The identifier of the usage limit to describe.</p>
|
|
2736
2832
|
* @public
|
|
2737
2833
|
*/
|
|
2738
|
-
UsageLimitId?: string;
|
|
2834
|
+
UsageLimitId?: string | undefined;
|
|
2739
2835
|
/**
|
|
2740
2836
|
* <p>The identifier of the cluster for which you want to describe usage limits.</p>
|
|
2741
2837
|
* @public
|
|
2742
2838
|
*/
|
|
2743
|
-
ClusterIdentifier?: string;
|
|
2839
|
+
ClusterIdentifier?: string | undefined;
|
|
2744
2840
|
/**
|
|
2745
2841
|
* <p>The feature type for which you want to describe usage limits.</p>
|
|
2746
2842
|
* @public
|
|
2747
2843
|
*/
|
|
2748
|
-
FeatureType?: UsageLimitFeatureType;
|
|
2844
|
+
FeatureType?: UsageLimitFeatureType | undefined;
|
|
2749
2845
|
/**
|
|
2750
2846
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
2751
2847
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -2756,7 +2852,7 @@ export interface DescribeUsageLimitsMessage {
|
|
|
2756
2852
|
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
2757
2853
|
* @public
|
|
2758
2854
|
*/
|
|
2759
|
-
MaxRecords?: number;
|
|
2855
|
+
MaxRecords?: number | undefined;
|
|
2760
2856
|
/**
|
|
2761
2857
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
2762
2858
|
* records. When the results of a <a>DescribeUsageLimits</a> request
|
|
@@ -2766,7 +2862,7 @@ export interface DescribeUsageLimitsMessage {
|
|
|
2766
2862
|
* retrying the request. </p>
|
|
2767
2863
|
* @public
|
|
2768
2864
|
*/
|
|
2769
|
-
Marker?: string;
|
|
2865
|
+
Marker?: string | undefined;
|
|
2770
2866
|
/**
|
|
2771
2867
|
* <p>A tag key or keys for which you want to return all matching usage limit objects
|
|
2772
2868
|
* that are associated with the specified key or keys. For example, suppose that you
|
|
@@ -2776,7 +2872,7 @@ export interface DescribeUsageLimitsMessage {
|
|
|
2776
2872
|
* tag keys associated with them.</p>
|
|
2777
2873
|
* @public
|
|
2778
2874
|
*/
|
|
2779
|
-
TagKeys?: string[];
|
|
2875
|
+
TagKeys?: string[] | undefined;
|
|
2780
2876
|
/**
|
|
2781
2877
|
* <p>A tag value or values for which you want to return all matching usage limit objects
|
|
2782
2878
|
* that are associated with the specified tag value or values. For example, suppose
|
|
@@ -2786,7 +2882,7 @@ export interface DescribeUsageLimitsMessage {
|
|
|
2786
2882
|
* values associated with them.</p>
|
|
2787
2883
|
* @public
|
|
2788
2884
|
*/
|
|
2789
|
-
TagValues?: string[];
|
|
2885
|
+
TagValues?: string[] | undefined;
|
|
2790
2886
|
}
|
|
2791
2887
|
/**
|
|
2792
2888
|
* @public
|
|
@@ -2797,7 +2893,7 @@ export interface UsageLimitList {
|
|
|
2797
2893
|
* action. </p>
|
|
2798
2894
|
* @public
|
|
2799
2895
|
*/
|
|
2800
|
-
UsageLimits?: UsageLimit[];
|
|
2896
|
+
UsageLimits?: UsageLimit[] | undefined;
|
|
2801
2897
|
/**
|
|
2802
2898
|
* <p>A value that indicates the starting point for the next set of response records in a
|
|
2803
2899
|
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -2806,7 +2902,7 @@ export interface UsageLimitList {
|
|
|
2806
2902
|
* records have been retrieved for the request. </p>
|
|
2807
2903
|
* @public
|
|
2808
2904
|
*/
|
|
2809
|
-
Marker?: string;
|
|
2905
|
+
Marker?: string | undefined;
|
|
2810
2906
|
}
|
|
2811
2907
|
/**
|
|
2812
2908
|
* <p></p>
|
|
@@ -2843,7 +2939,7 @@ export interface DisableSnapshotCopyResult {
|
|
|
2843
2939
|
* <p>Describes a cluster.</p>
|
|
2844
2940
|
* @public
|
|
2845
2941
|
*/
|
|
2846
|
-
Cluster?: Cluster;
|
|
2942
|
+
Cluster?: Cluster | undefined;
|
|
2847
2943
|
}
|
|
2848
2944
|
/**
|
|
2849
2945
|
* <p>The cluster already has cross-region snapshot copy disabled.</p>
|
|
@@ -2871,18 +2967,18 @@ export interface DisassociateDataShareConsumerMessage {
|
|
|
2871
2967
|
* entire account.</p>
|
|
2872
2968
|
* @public
|
|
2873
2969
|
*/
|
|
2874
|
-
DisassociateEntireAccount?: boolean;
|
|
2970
|
+
DisassociateEntireAccount?: boolean | undefined;
|
|
2875
2971
|
/**
|
|
2876
2972
|
* <p>The Amazon Resource Name (ARN) of the consumer namespace that association for
|
|
2877
2973
|
* the datashare is removed from.</p>
|
|
2878
2974
|
* @public
|
|
2879
2975
|
*/
|
|
2880
|
-
ConsumerArn?: string;
|
|
2976
|
+
ConsumerArn?: string | undefined;
|
|
2881
2977
|
/**
|
|
2882
2978
|
* <p>From a datashare consumer account, removes association of a datashare from all the existing and future namespaces in the specified Amazon Web Services Region.</p>
|
|
2883
2979
|
* @public
|
|
2884
2980
|
*/
|
|
2885
|
-
ConsumerRegion?: string;
|
|
2981
|
+
ConsumerRegion?: string | undefined;
|
|
2886
2982
|
}
|
|
2887
2983
|
/**
|
|
2888
2984
|
* <p></p>
|
|
@@ -2909,7 +3005,7 @@ export interface EnableLoggingMessage {
|
|
|
2909
3005
|
* </ul>
|
|
2910
3006
|
* @public
|
|
2911
3007
|
*/
|
|
2912
|
-
BucketName?: string;
|
|
3008
|
+
BucketName?: string | undefined;
|
|
2913
3009
|
/**
|
|
2914
3010
|
* <p>The prefix applied to the log file names.</p>
|
|
2915
3011
|
* <p>Valid characters are any letter from any language, any whitespace character, any numeric character, and the following characters:
|
|
@@ -2917,17 +3013,17 @@ export interface EnableLoggingMessage {
|
|
|
2917
3013
|
* hyphen (<code>-</code>), at symbol (<code>@</code>).</p>
|
|
2918
3014
|
* @public
|
|
2919
3015
|
*/
|
|
2920
|
-
S3KeyPrefix?: string;
|
|
3016
|
+
S3KeyPrefix?: string | undefined;
|
|
2921
3017
|
/**
|
|
2922
3018
|
* <p>The log destination type. An enum with possible values of <code>s3</code> and <code>cloudwatch</code>.</p>
|
|
2923
3019
|
* @public
|
|
2924
3020
|
*/
|
|
2925
|
-
LogDestinationType?: LogDestinationType;
|
|
3021
|
+
LogDestinationType?: LogDestinationType | undefined;
|
|
2926
3022
|
/**
|
|
2927
3023
|
* <p>The collection of exported log types. Possible values are <code>connectionlog</code>, <code>useractivitylog</code>, and <code>userlog</code>.</p>
|
|
2928
3024
|
* @public
|
|
2929
3025
|
*/
|
|
2930
|
-
LogExports?: string[];
|
|
3026
|
+
LogExports?: string[] | undefined;
|
|
2931
3027
|
}
|
|
2932
3028
|
/**
|
|
2933
3029
|
* <p>The cluster does not have read bucket or put object permissions on the S3 bucket
|
|
@@ -2997,13 +3093,13 @@ export interface EnableSnapshotCopyMessage {
|
|
|
2997
3093
|
* <p>Constraints: Must be at least 1 and no more than 35.</p>
|
|
2998
3094
|
* @public
|
|
2999
3095
|
*/
|
|
3000
|
-
RetentionPeriod?: number;
|
|
3096
|
+
RetentionPeriod?: number | undefined;
|
|
3001
3097
|
/**
|
|
3002
3098
|
* <p>The name of the snapshot copy grant to use when snapshots of an Amazon Web Services KMS-encrypted
|
|
3003
3099
|
* cluster are copied to the destination region.</p>
|
|
3004
3100
|
* @public
|
|
3005
3101
|
*/
|
|
3006
|
-
SnapshotCopyGrantName?: string;
|
|
3102
|
+
SnapshotCopyGrantName?: string | undefined;
|
|
3007
3103
|
/**
|
|
3008
3104
|
* <p>The number of days to retain newly copied snapshots in the destination Amazon Web Services Region
|
|
3009
3105
|
* after they are copied from the source Amazon Web Services Region. If the value is -1, the manual
|
|
@@ -3011,7 +3107,7 @@ export interface EnableSnapshotCopyMessage {
|
|
|
3011
3107
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
3012
3108
|
* @public
|
|
3013
3109
|
*/
|
|
3014
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
3110
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
3015
3111
|
}
|
|
3016
3112
|
/**
|
|
3017
3113
|
* @public
|
|
@@ -3021,7 +3117,7 @@ export interface EnableSnapshotCopyResult {
|
|
|
3021
3117
|
* <p>Describes a cluster.</p>
|
|
3022
3118
|
* @public
|
|
3023
3119
|
*/
|
|
3024
|
-
Cluster?: Cluster;
|
|
3120
|
+
Cluster?: Cluster | undefined;
|
|
3025
3121
|
}
|
|
3026
3122
|
/**
|
|
3027
3123
|
* <p>The specified options are incompatible.</p>
|
|
@@ -3089,7 +3185,7 @@ export interface FailoverPrimaryComputeResult {
|
|
|
3089
3185
|
* <p>Describes a cluster.</p>
|
|
3090
3186
|
* @public
|
|
3091
3187
|
*/
|
|
3092
|
-
Cluster?: Cluster;
|
|
3188
|
+
Cluster?: Cluster | undefined;
|
|
3093
3189
|
}
|
|
3094
3190
|
/**
|
|
3095
3191
|
* <p>The request parameters to get cluster credentials.</p>
|
|
@@ -3157,26 +3253,26 @@ export interface GetClusterCredentialsMessage {
|
|
|
3157
3253
|
* </ul>
|
|
3158
3254
|
* @public
|
|
3159
3255
|
*/
|
|
3160
|
-
DbName?: string;
|
|
3256
|
+
DbName?: string | undefined;
|
|
3161
3257
|
/**
|
|
3162
3258
|
* <p>The unique identifier of the cluster that contains the database for which you are
|
|
3163
3259
|
* requesting credentials. This parameter is case sensitive.</p>
|
|
3164
3260
|
* @public
|
|
3165
3261
|
*/
|
|
3166
|
-
ClusterIdentifier?: string;
|
|
3262
|
+
ClusterIdentifier?: string | undefined;
|
|
3167
3263
|
/**
|
|
3168
3264
|
* <p>The number of seconds until the returned temporary password expires.</p>
|
|
3169
3265
|
* <p>Constraint: minimum 900, maximum 3600.</p>
|
|
3170
3266
|
* <p>Default: 900</p>
|
|
3171
3267
|
* @public
|
|
3172
3268
|
*/
|
|
3173
|
-
DurationSeconds?: number;
|
|
3269
|
+
DurationSeconds?: number | undefined;
|
|
3174
3270
|
/**
|
|
3175
3271
|
* <p>Create a database user with the name specified for the user named in
|
|
3176
3272
|
* <code>DbUser</code> if one does not exist.</p>
|
|
3177
3273
|
* @public
|
|
3178
3274
|
*/
|
|
3179
|
-
AutoCreate?: boolean;
|
|
3275
|
+
AutoCreate?: boolean | undefined;
|
|
3180
3276
|
/**
|
|
3181
3277
|
* <p>A list of the names of existing database groups that the user named in
|
|
3182
3278
|
* <code>DbUser</code> will join for the current session, in addition to any group
|
|
@@ -3204,12 +3300,12 @@ export interface GetClusterCredentialsMessage {
|
|
|
3204
3300
|
* </ul>
|
|
3205
3301
|
* @public
|
|
3206
3302
|
*/
|
|
3207
|
-
DbGroups?: string[];
|
|
3303
|
+
DbGroups?: string[] | undefined;
|
|
3208
3304
|
/**
|
|
3209
3305
|
* <p>The custom domain name for the cluster credentials.</p>
|
|
3210
3306
|
* @public
|
|
3211
3307
|
*/
|
|
3212
|
-
CustomDomainName?: string;
|
|
3308
|
+
CustomDomainName?: string | undefined;
|
|
3213
3309
|
}
|
|
3214
3310
|
/**
|
|
3215
3311
|
* @public
|
|
@@ -3221,24 +3317,24 @@ export interface GetClusterCredentialsWithIAMMessage {
|
|
|
3221
3317
|
* If the database name is not specified, access to all databases is allowed.</p>
|
|
3222
3318
|
* @public
|
|
3223
3319
|
*/
|
|
3224
|
-
DbName?: string;
|
|
3320
|
+
DbName?: string | undefined;
|
|
3225
3321
|
/**
|
|
3226
3322
|
* <p>The unique identifier of the cluster that contains the database for which you are
|
|
3227
3323
|
* requesting credentials. </p>
|
|
3228
3324
|
* @public
|
|
3229
3325
|
*/
|
|
3230
|
-
ClusterIdentifier?: string;
|
|
3326
|
+
ClusterIdentifier?: string | undefined;
|
|
3231
3327
|
/**
|
|
3232
3328
|
* <p>The number of seconds until the returned temporary password expires.</p>
|
|
3233
3329
|
* <p>Range: 900-3600. Default: 900.</p>
|
|
3234
3330
|
* @public
|
|
3235
3331
|
*/
|
|
3236
|
-
DurationSeconds?: number;
|
|
3332
|
+
DurationSeconds?: number | undefined;
|
|
3237
3333
|
/**
|
|
3238
3334
|
* <p>The custom domain name for the IAM message cluster credentials.</p>
|
|
3239
3335
|
* @public
|
|
3240
3336
|
*/
|
|
3241
|
-
CustomDomainName?: string;
|
|
3337
|
+
CustomDomainName?: string | undefined;
|
|
3242
3338
|
}
|
|
3243
3339
|
/**
|
|
3244
3340
|
* @public
|
|
@@ -3265,12 +3361,12 @@ export interface GetReservedNodeExchangeConfigurationOptionsInputMessage {
|
|
|
3265
3361
|
* <p>The identifier for the cluster that is the source for a reserved-node exchange.</p>
|
|
3266
3362
|
* @public
|
|
3267
3363
|
*/
|
|
3268
|
-
ClusterIdentifier?: string;
|
|
3364
|
+
ClusterIdentifier?: string | undefined;
|
|
3269
3365
|
/**
|
|
3270
3366
|
* <p>The identifier for the snapshot that is the source for the reserved-node exchange.</p>
|
|
3271
3367
|
* @public
|
|
3272
3368
|
*/
|
|
3273
|
-
SnapshotIdentifier?: string;
|
|
3369
|
+
SnapshotIdentifier?: string | undefined;
|
|
3274
3370
|
/**
|
|
3275
3371
|
* <p>The maximum number of response records to return in each call. If the number of
|
|
3276
3372
|
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
@@ -3278,7 +3374,7 @@ export interface GetReservedNodeExchangeConfigurationOptionsInputMessage {
|
|
|
3278
3374
|
* set of records by retrying the command with the returned marker value.</p>
|
|
3279
3375
|
* @public
|
|
3280
3376
|
*/
|
|
3281
|
-
MaxRecords?: number;
|
|
3377
|
+
MaxRecords?: number | undefined;
|
|
3282
3378
|
/**
|
|
3283
3379
|
* <p>An optional pagination token provided by a previous <code>GetReservedNodeExchangeConfigurationOptions</code> request. If this
|
|
3284
3380
|
* parameter is specified, the response includes only records beyond the marker, up to the value
|
|
@@ -3287,7 +3383,7 @@ export interface GetReservedNodeExchangeConfigurationOptionsInputMessage {
|
|
|
3287
3383
|
* retrying the request.</p>
|
|
3288
3384
|
* @public
|
|
3289
3385
|
*/
|
|
3290
|
-
Marker?: string;
|
|
3386
|
+
Marker?: string | undefined;
|
|
3291
3387
|
}
|
|
3292
3388
|
/**
|
|
3293
3389
|
* <p>Details for a reserved-node exchange. Examples include the node type for a
|
|
@@ -3300,17 +3396,17 @@ export interface ReservedNodeConfigurationOption {
|
|
|
3300
3396
|
* offerings. </p>
|
|
3301
3397
|
* @public
|
|
3302
3398
|
*/
|
|
3303
|
-
SourceReservedNode?: ReservedNode;
|
|
3399
|
+
SourceReservedNode?: ReservedNode | undefined;
|
|
3304
3400
|
/**
|
|
3305
3401
|
* <p>The target reserved-node count.</p>
|
|
3306
3402
|
* @public
|
|
3307
3403
|
*/
|
|
3308
|
-
TargetReservedNodeCount?: number;
|
|
3404
|
+
TargetReservedNodeCount?: number | undefined;
|
|
3309
3405
|
/**
|
|
3310
3406
|
* <p>Describes a reserved node offering.</p>
|
|
3311
3407
|
* @public
|
|
3312
3408
|
*/
|
|
3313
|
-
TargetReservedNodeOffering?: ReservedNodeOffering;
|
|
3409
|
+
TargetReservedNodeOffering?: ReservedNodeOffering | undefined;
|
|
3314
3410
|
}
|
|
3315
3411
|
/**
|
|
3316
3412
|
* @public
|
|
@@ -3320,7 +3416,7 @@ export interface GetReservedNodeExchangeConfigurationOptionsOutputMessage {
|
|
|
3320
3416
|
* <p>A pagination token provided by a previous <code>GetReservedNodeExchangeConfigurationOptions</code> request.</p>
|
|
3321
3417
|
* @public
|
|
3322
3418
|
*/
|
|
3323
|
-
Marker?: string;
|
|
3419
|
+
Marker?: string | undefined;
|
|
3324
3420
|
/**
|
|
3325
3421
|
* <p>the configuration options for the reserved-node
|
|
3326
3422
|
* exchange. These options include information about the source reserved node and target reserved
|
|
@@ -3328,7 +3424,7 @@ export interface GetReservedNodeExchangeConfigurationOptionsOutputMessage {
|
|
|
3328
3424
|
* type.</p>
|
|
3329
3425
|
* @public
|
|
3330
3426
|
*/
|
|
3331
|
-
ReservedNodeConfigurationOptionList?: ReservedNodeConfigurationOption[];
|
|
3427
|
+
ReservedNodeConfigurationOptionList?: ReservedNodeConfigurationOption[] | undefined;
|
|
3332
3428
|
}
|
|
3333
3429
|
/**
|
|
3334
3430
|
* <p></p>
|
|
@@ -3346,13 +3442,13 @@ export interface GetReservedNodeExchangeOfferingsInputMessage {
|
|
|
3346
3442
|
* retrieve.</p>
|
|
3347
3443
|
* @public
|
|
3348
3444
|
*/
|
|
3349
|
-
MaxRecords?: number;
|
|
3445
|
+
MaxRecords?: number | undefined;
|
|
3350
3446
|
/**
|
|
3351
3447
|
* <p>A value that indicates the starting point for the next set of
|
|
3352
3448
|
* ReservedNodeOfferings.</p>
|
|
3353
3449
|
* @public
|
|
3354
3450
|
*/
|
|
3355
|
-
Marker?: string;
|
|
3451
|
+
Marker?: string | undefined;
|
|
3356
3452
|
}
|
|
3357
3453
|
/**
|
|
3358
3454
|
* @public
|
|
@@ -3367,12 +3463,12 @@ export interface GetReservedNodeExchangeOfferingsOutputMessage {
|
|
|
3367
3463
|
* </p>
|
|
3368
3464
|
* @public
|
|
3369
3465
|
*/
|
|
3370
|
-
Marker?: string;
|
|
3466
|
+
Marker?: string | undefined;
|
|
3371
3467
|
/**
|
|
3372
3468
|
* <p>Returns an array of <a>ReservedNodeOffering</a> objects.</p>
|
|
3373
3469
|
* @public
|
|
3374
3470
|
*/
|
|
3375
|
-
ReservedNodeOfferings?: ReservedNodeOffering[];
|
|
3471
|
+
ReservedNodeOfferings?: ReservedNodeOffering[] | undefined;
|
|
3376
3472
|
}
|
|
3377
3473
|
/**
|
|
3378
3474
|
* @public
|
|
@@ -3393,12 +3489,12 @@ export interface ResourcePolicy {
|
|
|
3393
3489
|
* <p>The resources that a policy is attached to.</p>
|
|
3394
3490
|
* @public
|
|
3395
3491
|
*/
|
|
3396
|
-
ResourceArn?: string;
|
|
3492
|
+
ResourceArn?: string | undefined;
|
|
3397
3493
|
/**
|
|
3398
3494
|
* <p>The content of a resource policy.</p>
|
|
3399
3495
|
* @public
|
|
3400
3496
|
*/
|
|
3401
|
-
Policy?: string;
|
|
3497
|
+
Policy?: string | undefined;
|
|
3402
3498
|
}
|
|
3403
3499
|
/**
|
|
3404
3500
|
* @public
|
|
@@ -3408,7 +3504,7 @@ export interface GetResourcePolicyResult {
|
|
|
3408
3504
|
* <p>The content of the resource policy.</p>
|
|
3409
3505
|
* @public
|
|
3410
3506
|
*/
|
|
3411
|
-
ResourcePolicy?: ResourcePolicy;
|
|
3507
|
+
ResourcePolicy?: ResourcePolicy | undefined;
|
|
3412
3508
|
}
|
|
3413
3509
|
/**
|
|
3414
3510
|
* <p>The resource policy isn't valid.</p>
|
|
@@ -3483,20 +3579,20 @@ export interface ListRecommendationsMessage {
|
|
|
3483
3579
|
* If the neither the cluster identifier and the cluster namespace ARN parameters are specified, then recommendations for all clusters in the account are returned.</p>
|
|
3484
3580
|
* @public
|
|
3485
3581
|
*/
|
|
3486
|
-
ClusterIdentifier?: string;
|
|
3582
|
+
ClusterIdentifier?: string | undefined;
|
|
3487
3583
|
/**
|
|
3488
3584
|
* <p>The Amazon Redshift cluster namespace Amazon Resource Name (ARN) for which the list of Advisor recommendations is returned.
|
|
3489
3585
|
* If the neither the cluster identifier and the cluster namespace ARN parameters are specified, then recommendations for all clusters in the account are returned.</p>
|
|
3490
3586
|
* @public
|
|
3491
3587
|
*/
|
|
3492
|
-
NamespaceArn?: string;
|
|
3588
|
+
NamespaceArn?: string | undefined;
|
|
3493
3589
|
/**
|
|
3494
3590
|
* <p>The maximum number of response records to return in each call. If the number of remaining response records
|
|
3495
3591
|
* exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve
|
|
3496
3592
|
* the next set of records by retrying the command with the returned marker value.</p>
|
|
3497
3593
|
* @public
|
|
3498
3594
|
*/
|
|
3499
|
-
MaxRecords?: number;
|
|
3595
|
+
MaxRecords?: number | undefined;
|
|
3500
3596
|
/**
|
|
3501
3597
|
* <p>A value that indicates the starting point for the next set of response records in a subsequent request. If a
|
|
3502
3598
|
* value is returned in a response, you can retrieve the next set
|
|
@@ -3506,7 +3602,7 @@ export interface ListRecommendationsMessage {
|
|
|
3506
3602
|
* </p>
|
|
3507
3603
|
* @public
|
|
3508
3604
|
*/
|
|
3509
|
-
Marker?: string;
|
|
3605
|
+
Marker?: string | undefined;
|
|
3510
3606
|
}
|
|
3511
3607
|
/**
|
|
3512
3608
|
* @public
|
|
@@ -3529,22 +3625,22 @@ export interface RecommendedAction {
|
|
|
3529
3625
|
* <p>The specific instruction about the command.</p>
|
|
3530
3626
|
* @public
|
|
3531
3627
|
*/
|
|
3532
|
-
Text?: string;
|
|
3628
|
+
Text?: string | undefined;
|
|
3533
3629
|
/**
|
|
3534
3630
|
* <p>The database name to perform the action on. Only applicable if the type of command is SQL.</p>
|
|
3535
3631
|
* @public
|
|
3536
3632
|
*/
|
|
3537
|
-
Database?: string;
|
|
3633
|
+
Database?: string | undefined;
|
|
3538
3634
|
/**
|
|
3539
3635
|
* <p>The command to run.</p>
|
|
3540
3636
|
* @public
|
|
3541
3637
|
*/
|
|
3542
|
-
Command?: string;
|
|
3638
|
+
Command?: string | undefined;
|
|
3543
3639
|
/**
|
|
3544
3640
|
* <p>The type of command.</p>
|
|
3545
3641
|
* @public
|
|
3546
3642
|
*/
|
|
3547
|
-
Type?: RecommendedActionType;
|
|
3643
|
+
Type?: RecommendedActionType | undefined;
|
|
3548
3644
|
}
|
|
3549
3645
|
/**
|
|
3550
3646
|
* <p>A link to an Amazon Redshift Advisor reference for more information about a recommendation.</p>
|
|
@@ -3555,12 +3651,12 @@ export interface ReferenceLink {
|
|
|
3555
3651
|
* <p>The hyperlink text that describes the link to more information.</p>
|
|
3556
3652
|
* @public
|
|
3557
3653
|
*/
|
|
3558
|
-
Text?: string;
|
|
3654
|
+
Text?: string | undefined;
|
|
3559
3655
|
/**
|
|
3560
3656
|
* <p>The URL address to find more information.</p>
|
|
3561
3657
|
* @public
|
|
3562
3658
|
*/
|
|
3563
|
-
Link?: string;
|
|
3659
|
+
Link?: string | undefined;
|
|
3564
3660
|
}
|
|
3565
3661
|
/**
|
|
3566
3662
|
* <p>An Amazon Redshift Advisor recommended action on the Amazon Redshift cluster.</p>
|
|
@@ -3571,62 +3667,62 @@ export interface Recommendation {
|
|
|
3571
3667
|
* <p>A unique identifier of the Advisor recommendation.</p>
|
|
3572
3668
|
* @public
|
|
3573
3669
|
*/
|
|
3574
|
-
Id?: string;
|
|
3670
|
+
Id?: string | undefined;
|
|
3575
3671
|
/**
|
|
3576
3672
|
* <p>The unique identifier of the cluster for which the recommendation is returned.</p>
|
|
3577
3673
|
* @public
|
|
3578
3674
|
*/
|
|
3579
|
-
ClusterIdentifier?: string;
|
|
3675
|
+
ClusterIdentifier?: string | undefined;
|
|
3580
3676
|
/**
|
|
3581
3677
|
* <p>The Amazon Redshift cluster namespace ARN for which the recommendations is returned.</p>
|
|
3582
3678
|
* @public
|
|
3583
3679
|
*/
|
|
3584
|
-
NamespaceArn?: string;
|
|
3680
|
+
NamespaceArn?: string | undefined;
|
|
3585
3681
|
/**
|
|
3586
3682
|
* <p>The date and time (UTC) that the recommendation was created.</p>
|
|
3587
3683
|
* @public
|
|
3588
3684
|
*/
|
|
3589
|
-
CreatedAt?: Date;
|
|
3685
|
+
CreatedAt?: Date | undefined;
|
|
3590
3686
|
/**
|
|
3591
3687
|
* <p>The type of Advisor recommendation.</p>
|
|
3592
3688
|
* @public
|
|
3593
3689
|
*/
|
|
3594
|
-
RecommendationType?: string;
|
|
3690
|
+
RecommendationType?: string | undefined;
|
|
3595
3691
|
/**
|
|
3596
3692
|
* <p>The title of the recommendation.</p>
|
|
3597
3693
|
* @public
|
|
3598
3694
|
*/
|
|
3599
|
-
Title?: string;
|
|
3695
|
+
Title?: string | undefined;
|
|
3600
3696
|
/**
|
|
3601
3697
|
* <p>The description of the recommendation.</p>
|
|
3602
3698
|
* @public
|
|
3603
3699
|
*/
|
|
3604
|
-
Description?: string;
|
|
3700
|
+
Description?: string | undefined;
|
|
3605
3701
|
/**
|
|
3606
3702
|
* <p>The description of what was observed about your cluster.</p>
|
|
3607
3703
|
* @public
|
|
3608
3704
|
*/
|
|
3609
|
-
Observation?: string;
|
|
3705
|
+
Observation?: string | undefined;
|
|
3610
3706
|
/**
|
|
3611
3707
|
* <p>The scale of the impact that the Advisor recommendation has to the performance and cost of the cluster.</p>
|
|
3612
3708
|
* @public
|
|
3613
3709
|
*/
|
|
3614
|
-
ImpactRanking?: ImpactRankingType;
|
|
3710
|
+
ImpactRanking?: ImpactRankingType | undefined;
|
|
3615
3711
|
/**
|
|
3616
3712
|
* <p>The description of the recommendation.</p>
|
|
3617
3713
|
* @public
|
|
3618
3714
|
*/
|
|
3619
|
-
RecommendationText?: string;
|
|
3715
|
+
RecommendationText?: string | undefined;
|
|
3620
3716
|
/**
|
|
3621
3717
|
* <p>List of Amazon Redshift recommended actions.</p>
|
|
3622
3718
|
* @public
|
|
3623
3719
|
*/
|
|
3624
|
-
RecommendedActions?: RecommendedAction[];
|
|
3720
|
+
RecommendedActions?: RecommendedAction[] | undefined;
|
|
3625
3721
|
/**
|
|
3626
3722
|
* <p>List of helpful links for more information about the Advisor recommendation.</p>
|
|
3627
3723
|
* @public
|
|
3628
3724
|
*/
|
|
3629
|
-
ReferenceLinks?: ReferenceLink[];
|
|
3725
|
+
ReferenceLinks?: ReferenceLink[] | undefined;
|
|
3630
3726
|
}
|
|
3631
3727
|
/**
|
|
3632
3728
|
* @public
|
|
@@ -3636,7 +3732,7 @@ export interface ListRecommendationsResult {
|
|
|
3636
3732
|
* <p>The Advisor recommendations for action on the Amazon Redshift cluster.</p>
|
|
3637
3733
|
* @public
|
|
3638
3734
|
*/
|
|
3639
|
-
Recommendations?: Recommendation[];
|
|
3735
|
+
Recommendations?: Recommendation[] | undefined;
|
|
3640
3736
|
/**
|
|
3641
3737
|
* <p>A value that indicates the starting point for the next set of response records in a subsequent
|
|
3642
3738
|
* request. If a value is returned in a response, you can retrieve the next set
|
|
@@ -3646,7 +3742,7 @@ export interface ListRecommendationsResult {
|
|
|
3646
3742
|
* </p>
|
|
3647
3743
|
* @public
|
|
3648
3744
|
*/
|
|
3649
|
-
Marker?: string;
|
|
3745
|
+
Marker?: string | undefined;
|
|
3650
3746
|
}
|
|
3651
3747
|
/**
|
|
3652
3748
|
* @public
|
|
@@ -3661,7 +3757,7 @@ export interface ModifyAquaInputMessage {
|
|
|
3661
3757
|
* <p>This parameter is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).</p>
|
|
3662
3758
|
* @public
|
|
3663
3759
|
*/
|
|
3664
|
-
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
3760
|
+
AquaConfigurationStatus?: AquaConfigurationStatus | undefined;
|
|
3665
3761
|
}
|
|
3666
3762
|
/**
|
|
3667
3763
|
* @public
|
|
@@ -3671,7 +3767,7 @@ export interface ModifyAquaOutputMessage {
|
|
|
3671
3767
|
* <p>This parameter is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator). </p>
|
|
3672
3768
|
* @public
|
|
3673
3769
|
*/
|
|
3674
|
-
AquaConfiguration?: AquaConfiguration;
|
|
3770
|
+
AquaConfiguration?: AquaConfiguration | undefined;
|
|
3675
3771
|
}
|
|
3676
3772
|
/**
|
|
3677
3773
|
* @public
|
|
@@ -3697,12 +3793,12 @@ export interface ModifyAuthenticationProfileResult {
|
|
|
3697
3793
|
* <p>The name of the authentication profile that was replaced.</p>
|
|
3698
3794
|
* @public
|
|
3699
3795
|
*/
|
|
3700
|
-
AuthenticationProfileName?: string;
|
|
3796
|
+
AuthenticationProfileName?: string | undefined;
|
|
3701
3797
|
/**
|
|
3702
3798
|
* <p>The updated content of the authentication profile in JSON format.</p>
|
|
3703
3799
|
* @public
|
|
3704
3800
|
*/
|
|
3705
|
-
AuthenticationProfileContent?: string;
|
|
3801
|
+
AuthenticationProfileContent?: string | undefined;
|
|
3706
3802
|
}
|
|
3707
3803
|
/**
|
|
3708
3804
|
* <p></p>
|
|
@@ -3726,7 +3822,7 @@ export interface ModifyClusterMessage {
|
|
|
3726
3822
|
* </p>
|
|
3727
3823
|
* @public
|
|
3728
3824
|
*/
|
|
3729
|
-
ClusterType?: string;
|
|
3825
|
+
ClusterType?: string | undefined;
|
|
3730
3826
|
/**
|
|
3731
3827
|
* <p>The new node type of the cluster. If you specify a new node type, you must also
|
|
3732
3828
|
* specify the number of nodes parameter.</p>
|
|
@@ -3740,7 +3836,7 @@ export interface ModifyClusterMessage {
|
|
|
3740
3836
|
* </p>
|
|
3741
3837
|
* @public
|
|
3742
3838
|
*/
|
|
3743
|
-
NodeType?: string;
|
|
3839
|
+
NodeType?: string | undefined;
|
|
3744
3840
|
/**
|
|
3745
3841
|
* <p>The new number of nodes of the cluster. If you specify a new number of nodes, you
|
|
3746
3842
|
* must also specify the node type parameter.</p>
|
|
@@ -3751,7 +3847,7 @@ export interface ModifyClusterMessage {
|
|
|
3751
3847
|
* <p>Valid Values: Integer greater than <code>0</code>.</p>
|
|
3752
3848
|
* @public
|
|
3753
3849
|
*/
|
|
3754
|
-
NumberOfNodes?: number;
|
|
3850
|
+
NumberOfNodes?: number | undefined;
|
|
3755
3851
|
/**
|
|
3756
3852
|
* <p>A list of cluster security groups to be authorized on this cluster. This change is
|
|
3757
3853
|
* asynchronously applied as soon as possible.</p>
|
|
@@ -3771,13 +3867,13 @@ export interface ModifyClusterMessage {
|
|
|
3771
3867
|
* </ul>
|
|
3772
3868
|
* @public
|
|
3773
3869
|
*/
|
|
3774
|
-
ClusterSecurityGroups?: string[];
|
|
3870
|
+
ClusterSecurityGroups?: string[] | undefined;
|
|
3775
3871
|
/**
|
|
3776
3872
|
* <p>A list of virtual private cloud (VPC) security groups to be associated with the
|
|
3777
3873
|
* cluster. This change is asynchronously applied as soon as possible.</p>
|
|
3778
3874
|
* @public
|
|
3779
3875
|
*/
|
|
3780
|
-
VpcSecurityGroupIds?: string[];
|
|
3876
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
3781
3877
|
/**
|
|
3782
3878
|
* <p>The new password for the cluster admin user. This change is asynchronously applied
|
|
3783
3879
|
* as soon as possible. Between the time of the request and the completion of the request,
|
|
@@ -3811,7 +3907,7 @@ export interface ModifyClusterMessage {
|
|
|
3811
3907
|
* </ul>
|
|
3812
3908
|
* @public
|
|
3813
3909
|
*/
|
|
3814
|
-
MasterUserPassword?: string;
|
|
3910
|
+
MasterUserPassword?: string | undefined;
|
|
3815
3911
|
/**
|
|
3816
3912
|
* <p>The name of the cluster parameter group to apply to this cluster. This change is
|
|
3817
3913
|
* applied only after the cluster is rebooted. To reboot a cluster use <a>RebootCluster</a>. </p>
|
|
@@ -3820,7 +3916,7 @@ export interface ModifyClusterMessage {
|
|
|
3820
3916
|
* that matches the cluster version.</p>
|
|
3821
3917
|
* @public
|
|
3822
3918
|
*/
|
|
3823
|
-
ClusterParameterGroupName?: string;
|
|
3919
|
+
ClusterParameterGroupName?: string | undefined;
|
|
3824
3920
|
/**
|
|
3825
3921
|
* <p>The number of days that automated snapshots are retained. If the value is 0,
|
|
3826
3922
|
* automated snapshots are disabled. Even if automated snapshots are disabled, you can
|
|
@@ -3833,7 +3929,7 @@ export interface ModifyClusterMessage {
|
|
|
3833
3929
|
* <p>Constraints: Must be a value from 0 to 35.</p>
|
|
3834
3930
|
* @public
|
|
3835
3931
|
*/
|
|
3836
|
-
AutomatedSnapshotRetentionPeriod?: number;
|
|
3932
|
+
AutomatedSnapshotRetentionPeriod?: number | undefined;
|
|
3837
3933
|
/**
|
|
3838
3934
|
* <p>The default for number of days that a newly created manual snapshot is retained. If
|
|
3839
3935
|
* the value is -1, the manual snapshot is retained indefinitely. This value doesn't
|
|
@@ -3842,7 +3938,7 @@ export interface ModifyClusterMessage {
|
|
|
3842
3938
|
* <p>The default value is -1.</p>
|
|
3843
3939
|
* @public
|
|
3844
3940
|
*/
|
|
3845
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
3941
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
3846
3942
|
/**
|
|
3847
3943
|
* <p>The weekly time range (in UTC) during which system maintenance can occur, if
|
|
3848
3944
|
* necessary. If system maintenance is necessary during the window, it may result in an
|
|
@@ -3857,7 +3953,7 @@ export interface ModifyClusterMessage {
|
|
|
3857
3953
|
* <p>Constraints: Must be at least 30 minutes.</p>
|
|
3858
3954
|
* @public
|
|
3859
3955
|
*/
|
|
3860
|
-
PreferredMaintenanceWindow?: string;
|
|
3956
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
3861
3957
|
/**
|
|
3862
3958
|
* <p>The new version number of the Amazon Redshift engine to upgrade to.</p>
|
|
3863
3959
|
* <p>For major version upgrades, if a non-default cluster parameter group is currently
|
|
@@ -3871,7 +3967,7 @@ export interface ModifyClusterMessage {
|
|
|
3871
3967
|
* </p>
|
|
3872
3968
|
* @public
|
|
3873
3969
|
*/
|
|
3874
|
-
ClusterVersion?: string;
|
|
3970
|
+
ClusterVersion?: string | undefined;
|
|
3875
3971
|
/**
|
|
3876
3972
|
* <p>If <code>true</code>, major version upgrades will be applied automatically to the
|
|
3877
3973
|
* cluster during the maintenance window. </p>
|
|
@@ -3879,19 +3975,19 @@ export interface ModifyClusterMessage {
|
|
|
3879
3975
|
* </p>
|
|
3880
3976
|
* @public
|
|
3881
3977
|
*/
|
|
3882
|
-
AllowVersionUpgrade?: boolean;
|
|
3978
|
+
AllowVersionUpgrade?: boolean | undefined;
|
|
3883
3979
|
/**
|
|
3884
3980
|
* <p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to
|
|
3885
3981
|
* retrieve the data encryption keys stored in an HSM.</p>
|
|
3886
3982
|
* @public
|
|
3887
3983
|
*/
|
|
3888
|
-
HsmClientCertificateIdentifier?: string;
|
|
3984
|
+
HsmClientCertificateIdentifier?: string | undefined;
|
|
3889
3985
|
/**
|
|
3890
3986
|
* <p>Specifies the name of the HSM configuration that contains the information the
|
|
3891
3987
|
* Amazon Redshift cluster can use to retrieve and store keys in an HSM.</p>
|
|
3892
3988
|
* @public
|
|
3893
3989
|
*/
|
|
3894
|
-
HsmConfigurationIdentifier?: string;
|
|
3990
|
+
HsmConfigurationIdentifier?: string | undefined;
|
|
3895
3991
|
/**
|
|
3896
3992
|
* <p>The new identifier for the cluster.</p>
|
|
3897
3993
|
* <p>Constraints:</p>
|
|
@@ -3916,13 +4012,13 @@ export interface ModifyClusterMessage {
|
|
|
3916
4012
|
* </p>
|
|
3917
4013
|
* @public
|
|
3918
4014
|
*/
|
|
3919
|
-
NewClusterIdentifier?: string;
|
|
4015
|
+
NewClusterIdentifier?: string | undefined;
|
|
3920
4016
|
/**
|
|
3921
4017
|
* <p>If <code>true</code>, the cluster can be accessed from a public network. Only
|
|
3922
4018
|
* clusters in VPCs can be set to be publicly available.</p>
|
|
3923
4019
|
* @public
|
|
3924
4020
|
*/
|
|
3925
|
-
PubliclyAccessible?: boolean;
|
|
4021
|
+
PubliclyAccessible?: boolean | undefined;
|
|
3926
4022
|
/**
|
|
3927
4023
|
* <p>The Elastic IP (EIP) address for the cluster.</p>
|
|
3928
4024
|
* <p>Constraints: The cluster must be provisioned in EC2-VPC and publicly-accessible
|
|
@@ -3931,7 +4027,7 @@ export interface ModifyClusterMessage {
|
|
|
3931
4027
|
* Platforms to Launch Your Cluster</a> in the Amazon Redshift Cluster Management Guide.</p>
|
|
3932
4028
|
* @public
|
|
3933
4029
|
*/
|
|
3934
|
-
ElasticIp?: string;
|
|
4030
|
+
ElasticIp?: string | undefined;
|
|
3935
4031
|
/**
|
|
3936
4032
|
* <p>An option that specifies whether to create the cluster with enhanced VPC routing
|
|
3937
4033
|
* enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a
|
|
@@ -3941,7 +4037,7 @@ export interface ModifyClusterMessage {
|
|
|
3941
4037
|
* <p>Default: false</p>
|
|
3942
4038
|
* @public
|
|
3943
4039
|
*/
|
|
3944
|
-
EnhancedVpcRouting?: boolean;
|
|
4040
|
+
EnhancedVpcRouting?: boolean | undefined;
|
|
3945
4041
|
/**
|
|
3946
4042
|
* <p>The name for the maintenance track that you want to assign for the cluster. This name
|
|
3947
4043
|
* change is asynchronous. The new track name stays in the
|
|
@@ -3951,7 +4047,7 @@ export interface ModifyClusterMessage {
|
|
|
3951
4047
|
* track name is applied.</p>
|
|
3952
4048
|
* @public
|
|
3953
4049
|
*/
|
|
3954
|
-
MaintenanceTrackName?: string;
|
|
4050
|
+
MaintenanceTrackName?: string | undefined;
|
|
3955
4051
|
/**
|
|
3956
4052
|
* <p>Indicates whether the cluster is encrypted. If the value is encrypted (true) and you
|
|
3957
4053
|
* provide a value for the <code>KmsKeyId</code> parameter, we encrypt the cluster
|
|
@@ -3960,23 +4056,23 @@ export interface ModifyClusterMessage {
|
|
|
3960
4056
|
* <p>If the value is not encrypted (false), then the cluster is decrypted. </p>
|
|
3961
4057
|
* @public
|
|
3962
4058
|
*/
|
|
3963
|
-
Encrypted?: boolean;
|
|
4059
|
+
Encrypted?: boolean | undefined;
|
|
3964
4060
|
/**
|
|
3965
4061
|
* <p>The Key Management Service (KMS) key ID of the encryption key that you want to use
|
|
3966
4062
|
* to encrypt data in the cluster.</p>
|
|
3967
4063
|
* @public
|
|
3968
4064
|
*/
|
|
3969
|
-
KmsKeyId?: string;
|
|
4065
|
+
KmsKeyId?: string | undefined;
|
|
3970
4066
|
/**
|
|
3971
4067
|
* <p>The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster modification is complete.</p>
|
|
3972
4068
|
* @public
|
|
3973
4069
|
*/
|
|
3974
|
-
AvailabilityZoneRelocation?: boolean;
|
|
4070
|
+
AvailabilityZoneRelocation?: boolean | undefined;
|
|
3975
4071
|
/**
|
|
3976
4072
|
* <p>The option to initiate relocation for an Amazon Redshift cluster to the target Availability Zone.</p>
|
|
3977
4073
|
* @public
|
|
3978
4074
|
*/
|
|
3979
|
-
AvailabilityZone?: string;
|
|
4075
|
+
AvailabilityZone?: string | undefined;
|
|
3980
4076
|
/**
|
|
3981
4077
|
* <p>The option to change the port of an Amazon Redshift cluster.</p>
|
|
3982
4078
|
* <p>Valid Values:
|
|
@@ -3992,7 +4088,7 @@ export interface ModifyClusterMessage {
|
|
|
3992
4088
|
* </ul>
|
|
3993
4089
|
* @public
|
|
3994
4090
|
*/
|
|
3995
|
-
Port?: number;
|
|
4091
|
+
Port?: number | undefined;
|
|
3996
4092
|
/**
|
|
3997
4093
|
* <p>If <code>true</code>, Amazon Redshift uses Secrets Manager to manage this cluster's admin credentials.
|
|
3998
4094
|
* You can't use <code>MasterUserPassword</code> if <code>ManageMasterPassword</code> is true.
|
|
@@ -4001,23 +4097,23 @@ export interface ModifyClusterMessage {
|
|
|
4001
4097
|
* </p>
|
|
4002
4098
|
* @public
|
|
4003
4099
|
*/
|
|
4004
|
-
ManageMasterPassword?: boolean;
|
|
4100
|
+
ManageMasterPassword?: boolean | undefined;
|
|
4005
4101
|
/**
|
|
4006
4102
|
* <p>The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret.
|
|
4007
4103
|
* You can only use this parameter if <code>ManageMasterPassword</code> is true.</p>
|
|
4008
4104
|
* @public
|
|
4009
4105
|
*/
|
|
4010
|
-
MasterPasswordSecretKmsKeyId?: string;
|
|
4106
|
+
MasterPasswordSecretKmsKeyId?: string | undefined;
|
|
4011
4107
|
/**
|
|
4012
4108
|
* <p>The IP address types that the cluster supports. Possible values are <code>ipv4</code> and <code>dualstack</code>.</p>
|
|
4013
4109
|
* @public
|
|
4014
4110
|
*/
|
|
4015
|
-
IpAddressType?: string;
|
|
4111
|
+
IpAddressType?: string | undefined;
|
|
4016
4112
|
/**
|
|
4017
4113
|
* <p>If true and the cluster is currently only deployed in a single Availability Zone, the cluster will be modified to be deployed in two Availability Zones.</p>
|
|
4018
4114
|
* @public
|
|
4019
4115
|
*/
|
|
4020
|
-
MultiAZ?: boolean;
|
|
4116
|
+
MultiAZ?: boolean | undefined;
|
|
4021
4117
|
}
|
|
4022
4118
|
/**
|
|
4023
4119
|
* @public
|
|
@@ -4027,7 +4123,7 @@ export interface ModifyClusterResult {
|
|
|
4027
4123
|
* <p>Describes a cluster.</p>
|
|
4028
4124
|
* @public
|
|
4029
4125
|
*/
|
|
4030
|
-
Cluster?: Cluster;
|
|
4126
|
+
Cluster?: Cluster | undefined;
|
|
4031
4127
|
}
|
|
4032
4128
|
/**
|
|
4033
4129
|
* <p>The number of tables in the cluster exceeds the limit for the requested new cluster
|
|
@@ -4080,7 +4176,7 @@ export interface ModifyClusterDbRevisionResult {
|
|
|
4080
4176
|
* <p>Describes a cluster.</p>
|
|
4081
4177
|
* @public
|
|
4082
4178
|
*/
|
|
4083
|
-
Cluster?: Cluster;
|
|
4179
|
+
Cluster?: Cluster | undefined;
|
|
4084
4180
|
}
|
|
4085
4181
|
/**
|
|
4086
4182
|
* <p></p>
|
|
@@ -4098,17 +4194,17 @@ export interface ModifyClusterIamRolesMessage {
|
|
|
4098
4194
|
* Amazon Resource Name (ARN) format. </p>
|
|
4099
4195
|
* @public
|
|
4100
4196
|
*/
|
|
4101
|
-
AddIamRoles?: string[];
|
|
4197
|
+
AddIamRoles?: string[] | undefined;
|
|
4102
4198
|
/**
|
|
4103
4199
|
* <p>Zero or more IAM roles in ARN format to disassociate from the cluster. </p>
|
|
4104
4200
|
* @public
|
|
4105
4201
|
*/
|
|
4106
|
-
RemoveIamRoles?: string[];
|
|
4202
|
+
RemoveIamRoles?: string[] | undefined;
|
|
4107
4203
|
/**
|
|
4108
4204
|
* <p>The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last modified.</p>
|
|
4109
4205
|
* @public
|
|
4110
4206
|
*/
|
|
4111
|
-
DefaultIamRoleArn?: string;
|
|
4207
|
+
DefaultIamRoleArn?: string | undefined;
|
|
4112
4208
|
}
|
|
4113
4209
|
/**
|
|
4114
4210
|
* @public
|
|
@@ -4118,7 +4214,7 @@ export interface ModifyClusterIamRolesResult {
|
|
|
4118
4214
|
* <p>Describes a cluster.</p>
|
|
4119
4215
|
* @public
|
|
4120
4216
|
*/
|
|
4121
|
-
Cluster?: Cluster;
|
|
4217
|
+
Cluster?: Cluster | undefined;
|
|
4122
4218
|
}
|
|
4123
4219
|
/**
|
|
4124
4220
|
* @public
|
|
@@ -4133,29 +4229,29 @@ export interface ModifyClusterMaintenanceMessage {
|
|
|
4133
4229
|
* <p>A boolean indicating whether to enable the deferred maintenance window. </p>
|
|
4134
4230
|
* @public
|
|
4135
4231
|
*/
|
|
4136
|
-
DeferMaintenance?: boolean;
|
|
4232
|
+
DeferMaintenance?: boolean | undefined;
|
|
4137
4233
|
/**
|
|
4138
4234
|
* <p>A unique identifier for the deferred maintenance window.</p>
|
|
4139
4235
|
* @public
|
|
4140
4236
|
*/
|
|
4141
|
-
DeferMaintenanceIdentifier?: string;
|
|
4237
|
+
DeferMaintenanceIdentifier?: string | undefined;
|
|
4142
4238
|
/**
|
|
4143
4239
|
* <p>A timestamp indicating the start time for the deferred maintenance window.</p>
|
|
4144
4240
|
* @public
|
|
4145
4241
|
*/
|
|
4146
|
-
DeferMaintenanceStartTime?: Date;
|
|
4242
|
+
DeferMaintenanceStartTime?: Date | undefined;
|
|
4147
4243
|
/**
|
|
4148
4244
|
* <p>A timestamp indicating end time for the deferred maintenance window. If you specify an
|
|
4149
4245
|
* end time, you can't specify a duration.</p>
|
|
4150
4246
|
* @public
|
|
4151
4247
|
*/
|
|
4152
|
-
DeferMaintenanceEndTime?: Date;
|
|
4248
|
+
DeferMaintenanceEndTime?: Date | undefined;
|
|
4153
4249
|
/**
|
|
4154
4250
|
* <p>An integer indicating the duration of the maintenance window in days. If you specify a
|
|
4155
4251
|
* duration, you can't specify an end time. The duration must be 45 days or less.</p>
|
|
4156
4252
|
* @public
|
|
4157
4253
|
*/
|
|
4158
|
-
DeferMaintenanceDuration?: number;
|
|
4254
|
+
DeferMaintenanceDuration?: number | undefined;
|
|
4159
4255
|
}
|
|
4160
4256
|
/**
|
|
4161
4257
|
* @public
|
|
@@ -4165,7 +4261,7 @@ export interface ModifyClusterMaintenanceResult {
|
|
|
4165
4261
|
* <p>Describes a cluster.</p>
|
|
4166
4262
|
* @public
|
|
4167
4263
|
*/
|
|
4168
|
-
Cluster?: Cluster;
|
|
4264
|
+
Cluster?: Cluster | undefined;
|
|
4169
4265
|
}
|
|
4170
4266
|
/**
|
|
4171
4267
|
* <p>Describes a modify cluster parameter group operation. </p>
|
|
@@ -4205,13 +4301,13 @@ export interface ModifyClusterSnapshotMessage {
|
|
|
4205
4301
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
4206
4302
|
* @public
|
|
4207
4303
|
*/
|
|
4208
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
4304
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
4209
4305
|
/**
|
|
4210
4306
|
* <p>A Boolean option to override an exception if the retention period has already
|
|
4211
4307
|
* passed.</p>
|
|
4212
4308
|
* @public
|
|
4213
4309
|
*/
|
|
4214
|
-
Force?: boolean;
|
|
4310
|
+
Force?: boolean | undefined;
|
|
4215
4311
|
}
|
|
4216
4312
|
/**
|
|
4217
4313
|
* @public
|
|
@@ -4221,7 +4317,7 @@ export interface ModifyClusterSnapshotResult {
|
|
|
4221
4317
|
* <p>Describes a snapshot.</p>
|
|
4222
4318
|
* @public
|
|
4223
4319
|
*/
|
|
4224
|
-
Snapshot?: Snapshot;
|
|
4320
|
+
Snapshot?: Snapshot | undefined;
|
|
4225
4321
|
}
|
|
4226
4322
|
/**
|
|
4227
4323
|
* @public
|
|
@@ -4238,13 +4334,13 @@ export interface ModifyClusterSnapshotScheduleMessage {
|
|
|
4238
4334
|
* cluster.</p>
|
|
4239
4335
|
* @public
|
|
4240
4336
|
*/
|
|
4241
|
-
ScheduleIdentifier?: string;
|
|
4337
|
+
ScheduleIdentifier?: string | undefined;
|
|
4242
4338
|
/**
|
|
4243
4339
|
* <p>A boolean to indicate whether to remove the assoiciation between the cluster and the
|
|
4244
4340
|
* schedule.</p>
|
|
4245
4341
|
* @public
|
|
4246
4342
|
*/
|
|
4247
|
-
DisassociateSchedule?: boolean;
|
|
4343
|
+
DisassociateSchedule?: boolean | undefined;
|
|
4248
4344
|
}
|
|
4249
4345
|
/**
|
|
4250
4346
|
* <p></p>
|
|
@@ -4260,7 +4356,7 @@ export interface ModifyClusterSubnetGroupMessage {
|
|
|
4260
4356
|
* <p>A text description of the subnet group to be modified.</p>
|
|
4261
4357
|
* @public
|
|
4262
4358
|
*/
|
|
4263
|
-
Description?: string;
|
|
4359
|
+
Description?: string | undefined;
|
|
4264
4360
|
/**
|
|
4265
4361
|
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single
|
|
4266
4362
|
* request.</p>
|
|
@@ -4276,7 +4372,7 @@ export interface ModifyClusterSubnetGroupResult {
|
|
|
4276
4372
|
* <p>Describes a subnet group.</p>
|
|
4277
4373
|
* @public
|
|
4278
4374
|
*/
|
|
4279
|
-
ClusterSubnetGroup?: ClusterSubnetGroup;
|
|
4375
|
+
ClusterSubnetGroup?: ClusterSubnetGroup | undefined;
|
|
4280
4376
|
}
|
|
4281
4377
|
/**
|
|
4282
4378
|
* <p>A specified subnet is already in use by another cluster.</p>
|
|
@@ -4318,22 +4414,22 @@ export interface ModifyCustomDomainAssociationResult {
|
|
|
4318
4414
|
* <p>The custom domain name associated with the result for the changed custom domain association.</p>
|
|
4319
4415
|
* @public
|
|
4320
4416
|
*/
|
|
4321
|
-
CustomDomainName?: string;
|
|
4417
|
+
CustomDomainName?: string | undefined;
|
|
4322
4418
|
/**
|
|
4323
4419
|
* <p>The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.</p>
|
|
4324
4420
|
* @public
|
|
4325
4421
|
*/
|
|
4326
|
-
CustomDomainCertificateArn?: string;
|
|
4422
|
+
CustomDomainCertificateArn?: string | undefined;
|
|
4327
4423
|
/**
|
|
4328
4424
|
* <p>The identifier of the cluster associated with the result for the changed custom domain association.</p>
|
|
4329
4425
|
* @public
|
|
4330
4426
|
*/
|
|
4331
|
-
ClusterIdentifier?: string;
|
|
4427
|
+
ClusterIdentifier?: string | undefined;
|
|
4332
4428
|
/**
|
|
4333
4429
|
* <p>The certificate expiration time associated with the result for the changed custom domain association.</p>
|
|
4334
4430
|
* @public
|
|
4335
4431
|
*/
|
|
4336
|
-
CustomDomainCertExpiryTime?: string;
|
|
4432
|
+
CustomDomainCertExpiryTime?: string | undefined;
|
|
4337
4433
|
}
|
|
4338
4434
|
/**
|
|
4339
4435
|
* @public
|
|
@@ -4348,7 +4444,7 @@ export interface ModifyEndpointAccessMessage {
|
|
|
4348
4444
|
* <p>The complete list of VPC security groups associated with the endpoint after the endpoint is modified.</p>
|
|
4349
4445
|
* @public
|
|
4350
4446
|
*/
|
|
4351
|
-
VpcSecurityGroupIds?: string[];
|
|
4447
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
4352
4448
|
}
|
|
4353
4449
|
/**
|
|
4354
4450
|
* <p></p>
|
|
@@ -4365,7 +4461,7 @@ export interface ModifyEventSubscriptionMessage {
|
|
|
4365
4461
|
* notification subscription.</p>
|
|
4366
4462
|
* @public
|
|
4367
4463
|
*/
|
|
4368
|
-
SnsTopicArn?: string;
|
|
4464
|
+
SnsTopicArn?: string | undefined;
|
|
4369
4465
|
/**
|
|
4370
4466
|
* <p>The type of source that will be generating the events. For example, if you want to
|
|
4371
4467
|
* be notified of events generated by a cluster, you would set this parameter to cluster.
|
|
@@ -4374,7 +4470,7 @@ export interface ModifyEventSubscriptionMessage {
|
|
|
4374
4470
|
* <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
|
|
4375
4471
|
* @public
|
|
4376
4472
|
*/
|
|
4377
|
-
SourceType?: string;
|
|
4473
|
+
SourceType?: string | undefined;
|
|
4378
4474
|
/**
|
|
4379
4475
|
* <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects
|
|
4380
4476
|
* must be of the same type as was specified in the source type parameter. The event
|
|
@@ -4385,27 +4481,27 @@ export interface ModifyEventSubscriptionMessage {
|
|
|
4385
4481
|
* <p>Example: my-snapshot-20131010</p>
|
|
4386
4482
|
* @public
|
|
4387
4483
|
*/
|
|
4388
|
-
SourceIds?: string[];
|
|
4484
|
+
SourceIds?: string[] | undefined;
|
|
4389
4485
|
/**
|
|
4390
4486
|
* <p>Specifies the Amazon Redshift event categories to be published by the event notification
|
|
4391
4487
|
* subscription.</p>
|
|
4392
4488
|
* <p>Values: configuration, management, monitoring, security, pending</p>
|
|
4393
4489
|
* @public
|
|
4394
4490
|
*/
|
|
4395
|
-
EventCategories?: string[];
|
|
4491
|
+
EventCategories?: string[] | undefined;
|
|
4396
4492
|
/**
|
|
4397
4493
|
* <p>Specifies the Amazon Redshift event severity to be published by the event notification
|
|
4398
4494
|
* subscription.</p>
|
|
4399
4495
|
* <p>Values: ERROR, INFO</p>
|
|
4400
4496
|
* @public
|
|
4401
4497
|
*/
|
|
4402
|
-
Severity?: string;
|
|
4498
|
+
Severity?: string | undefined;
|
|
4403
4499
|
/**
|
|
4404
4500
|
* <p>A Boolean value indicating if the subscription is enabled. <code>true</code>
|
|
4405
4501
|
* indicates the subscription is enabled </p>
|
|
4406
4502
|
* @public
|
|
4407
4503
|
*/
|
|
4408
|
-
Enabled?: boolean;
|
|
4504
|
+
Enabled?: boolean | undefined;
|
|
4409
4505
|
}
|
|
4410
4506
|
/**
|
|
4411
4507
|
* @public
|
|
@@ -4415,7 +4511,7 @@ export interface ModifyEventSubscriptionResult {
|
|
|
4415
4511
|
* <p>Describes event subscriptions.</p>
|
|
4416
4512
|
* @public
|
|
4417
4513
|
*/
|
|
4418
|
-
EventSubscription?: EventSubscription;
|
|
4514
|
+
EventSubscription?: EventSubscription | undefined;
|
|
4419
4515
|
}
|
|
4420
4516
|
/**
|
|
4421
4517
|
* @public
|
|
@@ -4430,12 +4526,12 @@ export interface ModifyIntegrationMessage {
|
|
|
4430
4526
|
* <p>A new description for the integration.</p>
|
|
4431
4527
|
* @public
|
|
4432
4528
|
*/
|
|
4433
|
-
Description?: string;
|
|
4529
|
+
Description?: string | undefined;
|
|
4434
4530
|
/**
|
|
4435
4531
|
* <p>A new name for the integration.</p>
|
|
4436
4532
|
* @public
|
|
4437
4533
|
*/
|
|
4438
|
-
IntegrationName?: string;
|
|
4534
|
+
IntegrationName?: string | undefined;
|
|
4439
4535
|
}
|
|
4440
4536
|
/**
|
|
4441
4537
|
* @public
|
|
@@ -4451,28 +4547,28 @@ export interface ModifyRedshiftIdcApplicationMessage {
|
|
|
4451
4547
|
* verifies the connection token.</p>
|
|
4452
4548
|
* @public
|
|
4453
4549
|
*/
|
|
4454
|
-
IdentityNamespace?: string;
|
|
4550
|
+
IdentityNamespace?: string | undefined;
|
|
4455
4551
|
/**
|
|
4456
4552
|
* <p>The IAM role ARN associated with the Amazon Redshift IAM Identity Center application to change. It has the required permissions
|
|
4457
4553
|
* to be assumed and invoke the IDC Identity Center API.</p>
|
|
4458
4554
|
* @public
|
|
4459
4555
|
*/
|
|
4460
|
-
IamRoleArn?: string;
|
|
4556
|
+
IamRoleArn?: string | undefined;
|
|
4461
4557
|
/**
|
|
4462
4558
|
* <p>The display name for the Amazon Redshift IAM Identity Center application to change. It appears on the console.</p>
|
|
4463
4559
|
* @public
|
|
4464
4560
|
*/
|
|
4465
|
-
IdcDisplayName?: string;
|
|
4561
|
+
IdcDisplayName?: string | undefined;
|
|
4466
4562
|
/**
|
|
4467
4563
|
* <p>The authorized token issuer list for the Amazon Redshift IAM Identity Center application to change.</p>
|
|
4468
4564
|
* @public
|
|
4469
4565
|
*/
|
|
4470
|
-
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
|
|
4566
|
+
AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
|
|
4471
4567
|
/**
|
|
4472
4568
|
* <p>A collection of service integrations associated with the application.</p>
|
|
4473
4569
|
* @public
|
|
4474
4570
|
*/
|
|
4475
|
-
ServiceIntegrations?: ServiceIntegrationsUnion[];
|
|
4571
|
+
ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
|
|
4476
4572
|
}
|
|
4477
4573
|
/**
|
|
4478
4574
|
* @public
|
|
@@ -4482,7 +4578,7 @@ export interface ModifyRedshiftIdcApplicationResult {
|
|
|
4482
4578
|
* <p>Contains properties for the Redshift IDC application.</p>
|
|
4483
4579
|
* @public
|
|
4484
4580
|
*/
|
|
4485
|
-
RedshiftIdcApplication?: RedshiftIdcApplication;
|
|
4581
|
+
RedshiftIdcApplication?: RedshiftIdcApplication | undefined;
|
|
4486
4582
|
}
|
|
4487
4583
|
/**
|
|
4488
4584
|
* @public
|
|
@@ -4498,41 +4594,41 @@ export interface ModifyScheduledActionMessage {
|
|
|
4498
4594
|
* For more information about this parameter, see <a>ScheduledAction</a>. </p>
|
|
4499
4595
|
* @public
|
|
4500
4596
|
*/
|
|
4501
|
-
TargetAction?: ScheduledActionType;
|
|
4597
|
+
TargetAction?: ScheduledActionType | undefined;
|
|
4502
4598
|
/**
|
|
4503
4599
|
* <p>A modified schedule in either <code>at( )</code> or <code>cron( )</code> format.
|
|
4504
4600
|
* For more information about this parameter, see <a>ScheduledAction</a>.</p>
|
|
4505
4601
|
* @public
|
|
4506
4602
|
*/
|
|
4507
|
-
Schedule?: string;
|
|
4603
|
+
Schedule?: string | undefined;
|
|
4508
4604
|
/**
|
|
4509
4605
|
* <p>A different IAM role to assume to run the target action.
|
|
4510
4606
|
* For more information about this parameter, see <a>ScheduledAction</a>.</p>
|
|
4511
4607
|
* @public
|
|
4512
4608
|
*/
|
|
4513
|
-
IamRole?: string;
|
|
4609
|
+
IamRole?: string | undefined;
|
|
4514
4610
|
/**
|
|
4515
4611
|
* <p>A modified description of the scheduled action. </p>
|
|
4516
4612
|
* @public
|
|
4517
4613
|
*/
|
|
4518
|
-
ScheduledActionDescription?: string;
|
|
4614
|
+
ScheduledActionDescription?: string | undefined;
|
|
4519
4615
|
/**
|
|
4520
4616
|
* <p>A modified start time of the scheduled action.
|
|
4521
4617
|
* For more information about this parameter, see <a>ScheduledAction</a>. </p>
|
|
4522
4618
|
* @public
|
|
4523
4619
|
*/
|
|
4524
|
-
StartTime?: Date;
|
|
4620
|
+
StartTime?: Date | undefined;
|
|
4525
4621
|
/**
|
|
4526
4622
|
* <p>A modified end time of the scheduled action.
|
|
4527
4623
|
* For more information about this parameter, see <a>ScheduledAction</a>. </p>
|
|
4528
4624
|
* @public
|
|
4529
4625
|
*/
|
|
4530
|
-
EndTime?: Date;
|
|
4626
|
+
EndTime?: Date | undefined;
|
|
4531
4627
|
/**
|
|
4532
4628
|
* <p>A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled. </p>
|
|
4533
4629
|
* @public
|
|
4534
4630
|
*/
|
|
4535
|
-
Enable?: boolean;
|
|
4631
|
+
Enable?: boolean | undefined;
|
|
4536
4632
|
}
|
|
4537
4633
|
/**
|
|
4538
4634
|
* <p></p>
|
|
@@ -4570,7 +4666,7 @@ export interface ModifySnapshotCopyRetentionPeriodMessage {
|
|
|
4570
4666
|
* snapshots instead of automated snapshots.</p>
|
|
4571
4667
|
* @public
|
|
4572
4668
|
*/
|
|
4573
|
-
Manual?: boolean;
|
|
4669
|
+
Manual?: boolean | undefined;
|
|
4574
4670
|
}
|
|
4575
4671
|
/**
|
|
4576
4672
|
* @public
|
|
@@ -4580,7 +4676,7 @@ export interface ModifySnapshotCopyRetentionPeriodResult {
|
|
|
4580
4676
|
* <p>Describes a cluster.</p>
|
|
4581
4677
|
* @public
|
|
4582
4678
|
*/
|
|
4583
|
-
Cluster?: Cluster;
|
|
4679
|
+
Cluster?: Cluster | undefined;
|
|
4584
4680
|
}
|
|
4585
4681
|
/**
|
|
4586
4682
|
* <p>Cross-region snapshot copy was temporarily disabled. Try your request
|
|
@@ -4637,13 +4733,13 @@ export interface ModifyUsageLimitMessage {
|
|
|
4637
4733
|
* For more information about this parameter, see <a>UsageLimit</a>. </p>
|
|
4638
4734
|
* @public
|
|
4639
4735
|
*/
|
|
4640
|
-
Amount?: number;
|
|
4736
|
+
Amount?: number | undefined;
|
|
4641
4737
|
/**
|
|
4642
4738
|
* <p>The new action that Amazon Redshift takes when the limit is reached.
|
|
4643
4739
|
* For more information about this parameter, see <a>UsageLimit</a>. </p>
|
|
4644
4740
|
* @public
|
|
4645
4741
|
*/
|
|
4646
|
-
BreachAction?: UsageLimitBreachAction;
|
|
4742
|
+
BreachAction?: UsageLimitBreachAction | undefined;
|
|
4647
4743
|
}
|
|
4648
4744
|
/**
|
|
4649
4745
|
* @public
|
|
@@ -4653,7 +4749,7 @@ export interface PauseClusterResult {
|
|
|
4653
4749
|
* <p>Describes a cluster.</p>
|
|
4654
4750
|
* @public
|
|
4655
4751
|
*/
|
|
4656
|
-
Cluster?: Cluster;
|
|
4752
|
+
Cluster?: Cluster | undefined;
|
|
4657
4753
|
}
|
|
4658
4754
|
/**
|
|
4659
4755
|
* <p></p>
|
|
@@ -4671,7 +4767,7 @@ export interface PurchaseReservedNodeOfferingMessage {
|
|
|
4671
4767
|
* </p>
|
|
4672
4768
|
* @public
|
|
4673
4769
|
*/
|
|
4674
|
-
NodeCount?: number;
|
|
4770
|
+
NodeCount?: number | undefined;
|
|
4675
4771
|
}
|
|
4676
4772
|
/**
|
|
4677
4773
|
* @public
|
|
@@ -4682,7 +4778,7 @@ export interface PurchaseReservedNodeOfferingResult {
|
|
|
4682
4778
|
* offerings. </p>
|
|
4683
4779
|
* @public
|
|
4684
4780
|
*/
|
|
4685
|
-
ReservedNode?: ReservedNode;
|
|
4781
|
+
ReservedNode?: ReservedNode | undefined;
|
|
4686
4782
|
}
|
|
4687
4783
|
/**
|
|
4688
4784
|
* <p>Request would exceed the user's compute node quota.
|
|
@@ -4722,7 +4818,7 @@ export interface PutResourcePolicyResult {
|
|
|
4722
4818
|
* <p>The content of the updated resource policy.</p>
|
|
4723
4819
|
* @public
|
|
4724
4820
|
*/
|
|
4725
|
-
ResourcePolicy?: ResourcePolicy;
|
|
4821
|
+
ResourcePolicy?: ResourcePolicy | undefined;
|
|
4726
4822
|
}
|
|
4727
4823
|
/**
|
|
4728
4824
|
* <p></p>
|
|
@@ -4743,7 +4839,7 @@ export interface RebootClusterResult {
|
|
|
4743
4839
|
* <p>Describes a cluster.</p>
|
|
4744
4840
|
* @public
|
|
4745
4841
|
*/
|
|
4746
|
-
Cluster?: Cluster;
|
|
4842
|
+
Cluster?: Cluster | undefined;
|
|
4747
4843
|
}
|
|
4748
4844
|
/**
|
|
4749
4845
|
* @public
|
|
@@ -4772,7 +4868,7 @@ export interface ResetClusterParameterGroupMessage {
|
|
|
4772
4868
|
* </p>
|
|
4773
4869
|
* @public
|
|
4774
4870
|
*/
|
|
4775
|
-
ResetAllParameters?: boolean;
|
|
4871
|
+
ResetAllParameters?: boolean | undefined;
|
|
4776
4872
|
/**
|
|
4777
4873
|
* <p>An array of names of parameters to be reset. If
|
|
4778
4874
|
* <i>ResetAllParameters</i> option is not used, then at least one
|
|
@@ -4780,7 +4876,7 @@ export interface ResetClusterParameterGroupMessage {
|
|
|
4780
4876
|
* <p>Constraints: A maximum of 20 parameters can be reset in a single request.</p>
|
|
4781
4877
|
* @public
|
|
4782
4878
|
*/
|
|
4783
|
-
Parameters?: Parameter[];
|
|
4879
|
+
Parameters?: Parameter[] | undefined;
|
|
4784
4880
|
}
|
|
4785
4881
|
/**
|
|
4786
4882
|
* @public
|
|
@@ -4790,7 +4886,7 @@ export interface ResizeClusterResult {
|
|
|
4790
4886
|
* <p>Describes a cluster.</p>
|
|
4791
4887
|
* @public
|
|
4792
4888
|
*/
|
|
4793
|
-
Cluster?: Cluster;
|
|
4889
|
+
Cluster?: Cluster | undefined;
|
|
4794
4890
|
}
|
|
4795
4891
|
/**
|
|
4796
4892
|
* <p></p>
|
|
@@ -4828,20 +4924,20 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4828
4924
|
* </p>
|
|
4829
4925
|
* @public
|
|
4830
4926
|
*/
|
|
4831
|
-
SnapshotIdentifier?: string;
|
|
4927
|
+
SnapshotIdentifier?: string | undefined;
|
|
4832
4928
|
/**
|
|
4833
4929
|
* <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to restore from a cluster. You must specify
|
|
4834
4930
|
* this parameter or <code>snapshotIdentifier</code>, but not both.</p>
|
|
4835
4931
|
* @public
|
|
4836
4932
|
*/
|
|
4837
|
-
SnapshotArn?: string;
|
|
4933
|
+
SnapshotArn?: string | undefined;
|
|
4838
4934
|
/**
|
|
4839
4935
|
* <p>The name of the cluster the source snapshot was created from. This parameter is
|
|
4840
4936
|
* required if your IAM user has a policy containing a snapshot resource element that
|
|
4841
4937
|
* specifies anything other than * for the cluster name.</p>
|
|
4842
4938
|
* @public
|
|
4843
4939
|
*/
|
|
4844
|
-
SnapshotClusterIdentifier?: string;
|
|
4940
|
+
SnapshotClusterIdentifier?: string | undefined;
|
|
4845
4941
|
/**
|
|
4846
4942
|
* <p>The port number on which the cluster accepts connections.</p>
|
|
4847
4943
|
* <p>Default: The same port as the original cluster.</p>
|
|
@@ -4849,7 +4945,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4849
4945
|
* within the ranges <code>5431</code>-<code>5455</code> or <code>8191</code>-<code>8215</code>.</p>
|
|
4850
4946
|
* @public
|
|
4851
4947
|
*/
|
|
4852
|
-
Port?: number;
|
|
4948
|
+
Port?: number | undefined;
|
|
4853
4949
|
/**
|
|
4854
4950
|
* <p>The Amazon EC2 Availability Zone in which to restore the cluster.</p>
|
|
4855
4951
|
* <p>Default: A random, system-chosen Availability Zone.</p>
|
|
@@ -4857,7 +4953,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4857
4953
|
* </p>
|
|
4858
4954
|
* @public
|
|
4859
4955
|
*/
|
|
4860
|
-
AvailabilityZone?: string;
|
|
4956
|
+
AvailabilityZone?: string | undefined;
|
|
4861
4957
|
/**
|
|
4862
4958
|
* <p>If <code>true</code>, major version upgrades can be applied during the maintenance
|
|
4863
4959
|
* window to the Amazon Redshift engine that is running on the cluster. </p>
|
|
@@ -4865,43 +4961,43 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4865
4961
|
* </p>
|
|
4866
4962
|
* @public
|
|
4867
4963
|
*/
|
|
4868
|
-
AllowVersionUpgrade?: boolean;
|
|
4964
|
+
AllowVersionUpgrade?: boolean | undefined;
|
|
4869
4965
|
/**
|
|
4870
4966
|
* <p>The name of the subnet group where you want to cluster restored.</p>
|
|
4871
4967
|
* <p>A snapshot of cluster in VPC can be restored only in VPC. Therefore, you must
|
|
4872
4968
|
* provide subnet group name where you want the cluster restored.</p>
|
|
4873
4969
|
* @public
|
|
4874
4970
|
*/
|
|
4875
|
-
ClusterSubnetGroupName?: string;
|
|
4971
|
+
ClusterSubnetGroupName?: string | undefined;
|
|
4876
4972
|
/**
|
|
4877
4973
|
* <p>If <code>true</code>, the cluster can be accessed from a public network. </p>
|
|
4878
4974
|
* @public
|
|
4879
4975
|
*/
|
|
4880
|
-
PubliclyAccessible?: boolean;
|
|
4976
|
+
PubliclyAccessible?: boolean | undefined;
|
|
4881
4977
|
/**
|
|
4882
4978
|
* <p>The Amazon Web Services account used to create or copy the snapshot. Required if you are
|
|
4883
4979
|
* restoring a snapshot you do not own, optional if you own the snapshot.</p>
|
|
4884
4980
|
* @public
|
|
4885
4981
|
*/
|
|
4886
|
-
OwnerAccount?: string;
|
|
4982
|
+
OwnerAccount?: string | undefined;
|
|
4887
4983
|
/**
|
|
4888
4984
|
* <p>Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to
|
|
4889
4985
|
* retrieve the data encryption keys stored in an HSM.</p>
|
|
4890
4986
|
* @public
|
|
4891
4987
|
*/
|
|
4892
|
-
HsmClientCertificateIdentifier?: string;
|
|
4988
|
+
HsmClientCertificateIdentifier?: string | undefined;
|
|
4893
4989
|
/**
|
|
4894
4990
|
* <p>Specifies the name of the HSM configuration that contains the information the
|
|
4895
4991
|
* Amazon Redshift cluster can use to retrieve and store keys in an HSM.</p>
|
|
4896
4992
|
* @public
|
|
4897
4993
|
*/
|
|
4898
|
-
HsmConfigurationIdentifier?: string;
|
|
4994
|
+
HsmConfigurationIdentifier?: string | undefined;
|
|
4899
4995
|
/**
|
|
4900
4996
|
* <p>The Elastic IP (EIP) address for the cluster. Don't specify the Elastic IP address for a publicly
|
|
4901
4997
|
* accessible cluster with availability zone relocation turned on.</p>
|
|
4902
4998
|
* @public
|
|
4903
4999
|
*/
|
|
4904
|
-
ElasticIp?: string;
|
|
5000
|
+
ElasticIp?: string | undefined;
|
|
4905
5001
|
/**
|
|
4906
5002
|
* <p>The name of the parameter group to be associated with this cluster.</p>
|
|
4907
5003
|
* <p>Default: The default Amazon Redshift cluster parameter group. For information about the
|
|
@@ -4921,14 +5017,14 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4921
5017
|
* </ul>
|
|
4922
5018
|
* @public
|
|
4923
5019
|
*/
|
|
4924
|
-
ClusterParameterGroupName?: string;
|
|
5020
|
+
ClusterParameterGroupName?: string | undefined;
|
|
4925
5021
|
/**
|
|
4926
5022
|
* <p>A list of security groups to be associated with this cluster.</p>
|
|
4927
5023
|
* <p>Default: The default cluster security group for Amazon Redshift.</p>
|
|
4928
5024
|
* <p>Cluster security groups only apply to clusters outside of VPCs.</p>
|
|
4929
5025
|
* @public
|
|
4930
5026
|
*/
|
|
4931
|
-
ClusterSecurityGroups?: string[];
|
|
5027
|
+
ClusterSecurityGroups?: string[] | undefined;
|
|
4932
5028
|
/**
|
|
4933
5029
|
* <p>A list of Virtual Private Cloud (VPC) security groups to be associated with the
|
|
4934
5030
|
* cluster.</p>
|
|
@@ -4936,7 +5032,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4936
5032
|
* <p>VPC security groups only apply to clusters in VPCs.</p>
|
|
4937
5033
|
* @public
|
|
4938
5034
|
*/
|
|
4939
|
-
VpcSecurityGroupIds?: string[];
|
|
5035
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
4940
5036
|
/**
|
|
4941
5037
|
* <p>The weekly time range (in UTC) during which automated cluster maintenance can
|
|
4942
5038
|
* occur.</p>
|
|
@@ -4948,7 +5044,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4948
5044
|
* <p>Constraints: Minimum 30-minute window.</p>
|
|
4949
5045
|
* @public
|
|
4950
5046
|
*/
|
|
4951
|
-
PreferredMaintenanceWindow?: string;
|
|
5047
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
4952
5048
|
/**
|
|
4953
5049
|
* <p>The number of days that automated snapshots are retained. If the value is 0,
|
|
4954
5050
|
* automated snapshots are disabled. Even if automated snapshots are disabled, you can
|
|
@@ -4959,7 +5055,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4959
5055
|
* <p>Constraints: Must be a value from 0 to 35.</p>
|
|
4960
5056
|
* @public
|
|
4961
5057
|
*/
|
|
4962
|
-
AutomatedSnapshotRetentionPeriod?: number;
|
|
5058
|
+
AutomatedSnapshotRetentionPeriod?: number | undefined;
|
|
4963
5059
|
/**
|
|
4964
5060
|
* <p>The default number of days to retain a manual snapshot. If the value is -1, the
|
|
4965
5061
|
* snapshot is retained indefinitely. This setting doesn't change the retention period
|
|
@@ -4967,7 +5063,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4967
5063
|
* <p>The value must be either -1 or an integer between 1 and 3,653.</p>
|
|
4968
5064
|
* @public
|
|
4969
5065
|
*/
|
|
4970
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
5066
|
+
ManualSnapshotRetentionPeriod?: number | undefined;
|
|
4971
5067
|
/**
|
|
4972
5068
|
* <p>The Key Management Service (KMS) key ID of the encryption key that encrypts data in the cluster
|
|
4973
5069
|
* restored from a shared snapshot. You can also provide
|
|
@@ -4977,7 +5073,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4977
5073
|
* with the new KMS key ID.</p>
|
|
4978
5074
|
* @public
|
|
4979
5075
|
*/
|
|
4980
|
-
KmsKeyId?: string;
|
|
5076
|
+
KmsKeyId?: string | undefined;
|
|
4981
5077
|
/**
|
|
4982
5078
|
* <p>The node type that the restored cluster will be provisioned with.</p>
|
|
4983
5079
|
* <p>If you have a DC instance type, you
|
|
@@ -4987,7 +5083,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4987
5083
|
* About Clusters and Nodes</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>
|
|
4988
5084
|
* @public
|
|
4989
5085
|
*/
|
|
4990
|
-
NodeType?: string;
|
|
5086
|
+
NodeType?: string | undefined;
|
|
4991
5087
|
/**
|
|
4992
5088
|
* <p>An option that specifies whether to create the cluster with enhanced VPC routing
|
|
4993
5089
|
* enabled. To create a cluster that uses enhanced VPC routing, the cluster must be in a
|
|
@@ -4997,12 +5093,12 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
4997
5093
|
* <p>Default: false</p>
|
|
4998
5094
|
* @public
|
|
4999
5095
|
*/
|
|
5000
|
-
EnhancedVpcRouting?: boolean;
|
|
5096
|
+
EnhancedVpcRouting?: boolean | undefined;
|
|
5001
5097
|
/**
|
|
5002
5098
|
* <p>Reserved.</p>
|
|
5003
5099
|
* @public
|
|
5004
5100
|
*/
|
|
5005
|
-
AdditionalInfo?: string;
|
|
5101
|
+
AdditionalInfo?: string | undefined;
|
|
5006
5102
|
/**
|
|
5007
5103
|
* <p>A list of Identity and Access Management (IAM) roles that can be used by the
|
|
5008
5104
|
* cluster to access other Amazon Web Services services. You must supply the IAM roles in their Amazon
|
|
@@ -5012,7 +5108,7 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
5012
5108
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
5013
5109
|
* @public
|
|
5014
5110
|
*/
|
|
5015
|
-
IamRoles?: string[];
|
|
5111
|
+
IamRoles?: string[] | undefined;
|
|
5016
5112
|
/**
|
|
5017
5113
|
* <p>The name of the maintenance track for the restored cluster. When you take a snapshot,
|
|
5018
5114
|
* the snapshot inherits the <code>MaintenanceTrack</code> value from the cluster. The
|
|
@@ -5022,71 +5118,71 @@ export interface RestoreFromClusterSnapshotMessage {
|
|
|
5022
5118
|
* snapshot and the source cluster are on different tracks.</p>
|
|
5023
5119
|
* @public
|
|
5024
5120
|
*/
|
|
5025
|
-
MaintenanceTrackName?: string;
|
|
5121
|
+
MaintenanceTrackName?: string | undefined;
|
|
5026
5122
|
/**
|
|
5027
5123
|
* <p>A unique identifier for the snapshot schedule.</p>
|
|
5028
5124
|
* @public
|
|
5029
5125
|
*/
|
|
5030
|
-
SnapshotScheduleIdentifier?: string;
|
|
5126
|
+
SnapshotScheduleIdentifier?: string | undefined;
|
|
5031
5127
|
/**
|
|
5032
5128
|
* <p>The number of nodes specified when provisioning the restored cluster.</p>
|
|
5033
5129
|
* @public
|
|
5034
5130
|
*/
|
|
5035
|
-
NumberOfNodes?: number;
|
|
5131
|
+
NumberOfNodes?: number | undefined;
|
|
5036
5132
|
/**
|
|
5037
5133
|
* <p>The option to enable relocation for an Amazon Redshift cluster between Availability Zones after the cluster is restored.</p>
|
|
5038
5134
|
* @public
|
|
5039
5135
|
*/
|
|
5040
|
-
AvailabilityZoneRelocation?: boolean;
|
|
5136
|
+
AvailabilityZoneRelocation?: boolean | undefined;
|
|
5041
5137
|
/**
|
|
5042
5138
|
* <p>This parameter is retired. It does not set the AQUA configuration status. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).</p>
|
|
5043
5139
|
* @public
|
|
5044
5140
|
*/
|
|
5045
|
-
AquaConfigurationStatus?: AquaConfigurationStatus;
|
|
5141
|
+
AquaConfigurationStatus?: AquaConfigurationStatus | undefined;
|
|
5046
5142
|
/**
|
|
5047
5143
|
* <p>The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was last modified while it was restored from a snapshot.</p>
|
|
5048
5144
|
* @public
|
|
5049
5145
|
*/
|
|
5050
|
-
DefaultIamRoleArn?: string;
|
|
5146
|
+
DefaultIamRoleArn?: string | undefined;
|
|
5051
5147
|
/**
|
|
5052
5148
|
* <p>The identifier of the target reserved node offering.</p>
|
|
5053
5149
|
* @public
|
|
5054
5150
|
*/
|
|
5055
|
-
ReservedNodeId?: string;
|
|
5151
|
+
ReservedNodeId?: string | undefined;
|
|
5056
5152
|
/**
|
|
5057
5153
|
* <p>The identifier of the target reserved node offering.</p>
|
|
5058
5154
|
* @public
|
|
5059
5155
|
*/
|
|
5060
|
-
TargetReservedNodeOfferingId?: string;
|
|
5156
|
+
TargetReservedNodeOfferingId?: string | undefined;
|
|
5061
5157
|
/**
|
|
5062
5158
|
* <p>Enables support for restoring an unencrypted snapshot to a cluster encrypted
|
|
5063
5159
|
* with Key Management Service (KMS) and a customer managed key.</p>
|
|
5064
5160
|
* @public
|
|
5065
5161
|
*/
|
|
5066
|
-
Encrypted?: boolean;
|
|
5162
|
+
Encrypted?: boolean | undefined;
|
|
5067
5163
|
/**
|
|
5068
5164
|
* <p>If <code>true</code>, Amazon Redshift uses Secrets Manager to manage the restored
|
|
5069
5165
|
* cluster's admin credentials. If <code>ManageMasterPassword</code> is false or not set,
|
|
5070
5166
|
* Amazon Redshift uses the admin credentials the cluster had at the time the snapshot was taken.</p>
|
|
5071
5167
|
* @public
|
|
5072
5168
|
*/
|
|
5073
|
-
ManageMasterPassword?: boolean;
|
|
5169
|
+
ManageMasterPassword?: boolean | undefined;
|
|
5074
5170
|
/**
|
|
5075
5171
|
* <p>The ID of the Key Management Service (KMS) key used to encrypt and store the cluster's admin credentials secret.
|
|
5076
5172
|
* You can only use this parameter if <code>ManageMasterPassword</code> is true.</p>
|
|
5077
5173
|
* @public
|
|
5078
5174
|
*/
|
|
5079
|
-
MasterPasswordSecretKmsKeyId?: string;
|
|
5175
|
+
MasterPasswordSecretKmsKeyId?: string | undefined;
|
|
5080
5176
|
/**
|
|
5081
5177
|
* <p>The IP address type for the cluster. Possible values are <code>ipv4</code> and <code>dualstack</code>.</p>
|
|
5082
5178
|
* @public
|
|
5083
5179
|
*/
|
|
5084
|
-
IpAddressType?: string;
|
|
5180
|
+
IpAddressType?: string | undefined;
|
|
5085
5181
|
/**
|
|
5086
5182
|
* <p>If true, the snapshot will be restored to a cluster deployed in two Availability Zones.</p>
|
|
5087
5183
|
* @public
|
|
5088
5184
|
*/
|
|
5089
|
-
MultiAZ?: boolean;
|
|
5185
|
+
MultiAZ?: boolean | undefined;
|
|
5090
5186
|
}
|
|
5091
5187
|
/**
|
|
5092
5188
|
* @public
|
|
@@ -5096,7 +5192,7 @@ export interface RestoreFromClusterSnapshotResult {
|
|
|
5096
5192
|
* <p>Describes a cluster.</p>
|
|
5097
5193
|
* @public
|
|
5098
5194
|
*/
|
|
5099
|
-
Cluster?: Cluster;
|
|
5195
|
+
Cluster?: Cluster | undefined;
|
|
5100
5196
|
}
|
|
5101
5197
|
/**
|
|
5102
5198
|
* <p></p>
|
|
@@ -5126,7 +5222,7 @@ export interface RestoreTableFromClusterSnapshotMessage {
|
|
|
5126
5222
|
* <code>public</code>.</p>
|
|
5127
5223
|
* @public
|
|
5128
5224
|
*/
|
|
5129
|
-
SourceSchemaName?: string;
|
|
5225
|
+
SourceSchemaName?: string | undefined;
|
|
5130
5226
|
/**
|
|
5131
5227
|
* <p>The name of the source table to restore from.</p>
|
|
5132
5228
|
* @public
|
|
@@ -5136,12 +5232,12 @@ export interface RestoreTableFromClusterSnapshotMessage {
|
|
|
5136
5232
|
* <p>The name of the database to restore the table to.</p>
|
|
5137
5233
|
* @public
|
|
5138
5234
|
*/
|
|
5139
|
-
TargetDatabaseName?: string;
|
|
5235
|
+
TargetDatabaseName?: string | undefined;
|
|
5140
5236
|
/**
|
|
5141
5237
|
* <p>The name of the schema to restore the table to.</p>
|
|
5142
5238
|
* @public
|
|
5143
5239
|
*/
|
|
5144
|
-
TargetSchemaName?: string;
|
|
5240
|
+
TargetSchemaName?: string | undefined;
|
|
5145
5241
|
/**
|
|
5146
5242
|
* <p>The name of the table to create as a result of the current request.</p>
|
|
5147
5243
|
* @public
|
|
@@ -5153,7 +5249,7 @@ export interface RestoreTableFromClusterSnapshotMessage {
|
|
|
5153
5249
|
* If <code>false</code> (default), the names are not case sensitive.</p>
|
|
5154
5250
|
* @public
|
|
5155
5251
|
*/
|
|
5156
|
-
EnableCaseSensitiveIdentifier?: boolean;
|
|
5252
|
+
EnableCaseSensitiveIdentifier?: boolean | undefined;
|
|
5157
5253
|
}
|
|
5158
5254
|
/**
|
|
5159
5255
|
* @public
|
|
@@ -5164,7 +5260,7 @@ export interface RestoreTableFromClusterSnapshotResult {
|
|
|
5164
5260
|
* operation.</p>
|
|
5165
5261
|
* @public
|
|
5166
5262
|
*/
|
|
5167
|
-
TableRestoreStatus?: TableRestoreStatus;
|
|
5263
|
+
TableRestoreStatus?: TableRestoreStatus | undefined;
|
|
5168
5264
|
}
|
|
5169
5265
|
/**
|
|
5170
5266
|
* @public
|
|
@@ -5174,7 +5270,7 @@ export interface ResumeClusterResult {
|
|
|
5174
5270
|
* <p>Describes a cluster.</p>
|
|
5175
5271
|
* @public
|
|
5176
5272
|
*/
|
|
5177
|
-
Cluster?: Cluster;
|
|
5273
|
+
Cluster?: Cluster | undefined;
|
|
5178
5274
|
}
|
|
5179
5275
|
/**
|
|
5180
5276
|
* <p></p>
|
|
@@ -5193,14 +5289,14 @@ export interface RevokeClusterSecurityGroupIngressMessage {
|
|
|
5193
5289
|
* provided. </p>
|
|
5194
5290
|
* @public
|
|
5195
5291
|
*/
|
|
5196
|
-
CIDRIP?: string;
|
|
5292
|
+
CIDRIP?: string | undefined;
|
|
5197
5293
|
/**
|
|
5198
5294
|
* <p>The name of the EC2 Security Group whose access is to be revoked. If
|
|
5199
5295
|
* <code>EC2SecurityGroupName</code> is specified, <code>EC2SecurityGroupOwnerId</code>
|
|
5200
5296
|
* must also be provided and <code>CIDRIP</code> cannot be provided. </p>
|
|
5201
5297
|
* @public
|
|
5202
5298
|
*/
|
|
5203
|
-
EC2SecurityGroupName?: string;
|
|
5299
|
+
EC2SecurityGroupName?: string | undefined;
|
|
5204
5300
|
/**
|
|
5205
5301
|
* <p>The Amazon Web Services account number of the owner of the security group specified in the
|
|
5206
5302
|
* <code>EC2SecurityGroupName</code> parameter. The Amazon Web Services access key ID is not an
|
|
@@ -5211,7 +5307,7 @@ export interface RevokeClusterSecurityGroupIngressMessage {
|
|
|
5211
5307
|
* </p>
|
|
5212
5308
|
* @public
|
|
5213
5309
|
*/
|
|
5214
|
-
EC2SecurityGroupOwnerId?: string;
|
|
5310
|
+
EC2SecurityGroupOwnerId?: string | undefined;
|
|
5215
5311
|
}
|
|
5216
5312
|
/**
|
|
5217
5313
|
* @public
|
|
@@ -5221,7 +5317,7 @@ export interface RevokeClusterSecurityGroupIngressResult {
|
|
|
5221
5317
|
* <p>Describes a security group.</p>
|
|
5222
5318
|
* @public
|
|
5223
5319
|
*/
|
|
5224
|
-
ClusterSecurityGroup?: ClusterSecurityGroup;
|
|
5320
|
+
ClusterSecurityGroup?: ClusterSecurityGroup | undefined;
|
|
5225
5321
|
}
|
|
5226
5322
|
/**
|
|
5227
5323
|
* @public
|
|
@@ -5231,23 +5327,23 @@ export interface RevokeEndpointAccessMessage {
|
|
|
5231
5327
|
* <p>The cluster to revoke access from.</p>
|
|
5232
5328
|
* @public
|
|
5233
5329
|
*/
|
|
5234
|
-
ClusterIdentifier?: string;
|
|
5330
|
+
ClusterIdentifier?: string | undefined;
|
|
5235
5331
|
/**
|
|
5236
5332
|
* <p>The Amazon Web Services account ID whose access is to be revoked.</p>
|
|
5237
5333
|
* @public
|
|
5238
5334
|
*/
|
|
5239
|
-
Account?: string;
|
|
5335
|
+
Account?: string | undefined;
|
|
5240
5336
|
/**
|
|
5241
5337
|
* <p>The virtual private cloud (VPC) identifiers for which access is to be revoked.</p>
|
|
5242
5338
|
* @public
|
|
5243
5339
|
*/
|
|
5244
|
-
VpcIds?: string[];
|
|
5340
|
+
VpcIds?: string[] | undefined;
|
|
5245
5341
|
/**
|
|
5246
5342
|
* <p>Indicates whether to force the revoke action.
|
|
5247
5343
|
* If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.</p>
|
|
5248
5344
|
* @public
|
|
5249
5345
|
*/
|
|
5250
|
-
Force?: boolean;
|
|
5346
|
+
Force?: boolean | undefined;
|
|
5251
5347
|
}
|
|
5252
5348
|
/**
|
|
5253
5349
|
* <p></p>
|
|
@@ -5258,19 +5354,19 @@ export interface RevokeSnapshotAccessMessage {
|
|
|
5258
5354
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|
5259
5355
|
* @public
|
|
5260
5356
|
*/
|
|
5261
|
-
SnapshotIdentifier?: string;
|
|
5357
|
+
SnapshotIdentifier?: string | undefined;
|
|
5262
5358
|
/**
|
|
5263
5359
|
* <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to revoke access.</p>
|
|
5264
5360
|
* @public
|
|
5265
5361
|
*/
|
|
5266
|
-
SnapshotArn?: string;
|
|
5362
|
+
SnapshotArn?: string | undefined;
|
|
5267
5363
|
/**
|
|
5268
5364
|
* <p>The identifier of the cluster the snapshot was created from. This parameter is
|
|
5269
5365
|
* required if your IAM user has a policy containing a snapshot resource element that
|
|
5270
5366
|
* specifies anything other than * for the cluster name.</p>
|
|
5271
5367
|
* @public
|
|
5272
5368
|
*/
|
|
5273
|
-
SnapshotClusterIdentifier?: string;
|
|
5369
|
+
SnapshotClusterIdentifier?: string | undefined;
|
|
5274
5370
|
/**
|
|
5275
5371
|
* <p>The identifier of the Amazon Web Services account that can no longer restore the specified
|
|
5276
5372
|
* snapshot.</p>
|
|
@@ -5286,7 +5382,7 @@ export interface RevokeSnapshotAccessResult {
|
|
|
5286
5382
|
* <p>Describes a snapshot.</p>
|
|
5287
5383
|
* @public
|
|
5288
5384
|
*/
|
|
5289
|
-
Snapshot?: Snapshot;
|
|
5385
|
+
Snapshot?: Snapshot | undefined;
|
|
5290
5386
|
}
|
|
5291
5387
|
/**
|
|
5292
5388
|
* <p></p>
|
|
@@ -5310,7 +5406,7 @@ export interface RotateEncryptionKeyResult {
|
|
|
5310
5406
|
* <p>Describes a cluster.</p>
|
|
5311
5407
|
* @public
|
|
5312
5408
|
*/
|
|
5313
|
-
Cluster?: Cluster;
|
|
5409
|
+
Cluster?: Cluster | undefined;
|
|
5314
5410
|
}
|
|
5315
5411
|
/**
|
|
5316
5412
|
* @public
|
|
@@ -5345,7 +5441,7 @@ export interface UpdatePartnerStatusInputMessage {
|
|
|
5345
5441
|
* <p>The status message provided by the partner.</p>
|
|
5346
5442
|
* @public
|
|
5347
5443
|
*/
|
|
5348
|
-
StatusMessage?: string;
|
|
5444
|
+
StatusMessage?: string | undefined;
|
|
5349
5445
|
}
|
|
5350
5446
|
/**
|
|
5351
5447
|
* @internal
|