@aws-sdk/client-redshift 3.670.0 → 3.672.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/README.md +32 -0
- package/dist-cjs/index.js +685 -67
- package/dist-es/Redshift.js +8 -0
- package/dist-es/commands/CreateIntegrationCommand.js +22 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +22 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +22 -0
- package/dist-es/commands/ModifyIntegrationCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +93 -9
- package/dist-es/models/models_1.js +14 -20
- package/dist-es/pagination/DescribeIntegrationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_query.js +458 -31
- package/dist-types/Redshift.d.ts +29 -0
- package/dist-types/RedshiftClient.d.ts +6 -2
- package/dist-types/commands/CreateIntegrationCommand.d.ts +135 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
- package/dist-types/commands/DescribeClusterSecurityGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterSubnetGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterTracksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +114 -0
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +113 -0
- package/dist-types/commands/ResizeClusterCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +241 -407
- package/dist-types/models/models_1.d.ts +508 -41
- package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_query.d.ts +36 -0
- package/dist-types/ts3.4/Redshift.d.ts +69 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DescribeClusterSecurityGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterSnapshotsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeClusterSubnetGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterTracksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -71
- package/dist-types/ts3.4/models/models_1.d.ts +100 -21
- package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +48 -0
- package/package.json +1 -1
|
@@ -1,6 +1,411 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { ActionType, AquaConfiguration, AquaConfigurationStatus, AuthorizedTokenIssuer, AvailabilityZone, Cluster, ClusterSecurityGroup, ClusterSubnetGroup, DataShare, DataShareStatusForConsumer, DataShareStatusForProducer, DefaultClusterParameters, EndpointAccess, EndpointAuthorization, EventSubscription, HsmClientCertificate, HsmConfiguration, Parameter, RecurringCharge, RedshiftIdcApplication, ReservedNode, ReservedNodeExchangeStatus, ReservedNodeOfferingType, ScheduledAction, ScheduledActionType, ServiceIntegrationsUnion, Snapshot, SnapshotCopyGrant, SnapshotSchedule, Tag, UsageLimit, UsageLimitBreachAction, UsageLimitFeatureType } from "./models_0";
|
|
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 DescribeClusterSecurityGroupsMessage {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of a cluster security group for which you are requesting details. You must
|
|
11
|
+
* specify either the <b>Marker</b> parameter or a <b>ClusterSecurityGroupName</b> parameter, but not both. </p>
|
|
12
|
+
* <p> Example: <code>securitygroup1</code>
|
|
13
|
+
* </p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
ClusterSecurityGroupName?: string;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The maximum number of response records to return in each call. If the number of
|
|
19
|
+
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
20
|
+
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
21
|
+
* set of records by retrying the command with the returned marker value. </p>
|
|
22
|
+
* <p>Default: <code>100</code>
|
|
23
|
+
* </p>
|
|
24
|
+
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
MaxRecords?: number;
|
|
28
|
+
/**
|
|
29
|
+
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
30
|
+
* records. When the results of a <a>DescribeClusterSecurityGroups</a> request
|
|
31
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
32
|
+
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
33
|
+
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
34
|
+
* retrying the request. </p>
|
|
35
|
+
* <p>Constraints: You must specify either the <b>ClusterSecurityGroupName</b> parameter or the <b>Marker</b> parameter, but not both. </p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Marker?: string;
|
|
39
|
+
/**
|
|
40
|
+
* <p>A tag key or keys for which you want to return all matching cluster security groups
|
|
41
|
+
* that are associated with the specified key or keys. For example, suppose that you have
|
|
42
|
+
* security groups that are tagged with keys called <code>owner</code> and
|
|
43
|
+
* <code>environment</code>. If you specify both of these tag keys in the request,
|
|
44
|
+
* Amazon Redshift returns a response with the security groups that have either or both of these
|
|
45
|
+
* tag keys associated with them.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
TagKeys?: string[];
|
|
49
|
+
/**
|
|
50
|
+
* <p>A tag value or values for which you want to return all matching cluster security
|
|
51
|
+
* groups that are associated with the specified tag value or values. For example, suppose
|
|
52
|
+
* that you have security groups that are tagged with values called <code>admin</code> and
|
|
53
|
+
* <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
|
|
54
|
+
* returns a response with the security groups that have either or both of these tag values
|
|
55
|
+
* associated with them.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
TagValues?: string[];
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* @enum
|
|
63
|
+
*/
|
|
64
|
+
export declare const SnapshotAttributeToSortBy: {
|
|
65
|
+
readonly CREATE_TIME: "CREATE_TIME";
|
|
66
|
+
readonly SOURCE_TYPE: "SOURCE_TYPE";
|
|
67
|
+
readonly TOTAL_SIZE: "TOTAL_SIZE";
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export type SnapshotAttributeToSortBy = (typeof SnapshotAttributeToSortBy)[keyof typeof SnapshotAttributeToSortBy];
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* @enum
|
|
76
|
+
*/
|
|
77
|
+
export declare const SortByOrder: {
|
|
78
|
+
readonly ASCENDING: "ASC";
|
|
79
|
+
readonly DESCENDING: "DESC";
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export type SortByOrder = (typeof SortByOrder)[keyof typeof SortByOrder];
|
|
85
|
+
/**
|
|
86
|
+
* <p>Describes a sorting entity</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export interface SnapshotSortingEntity {
|
|
90
|
+
/**
|
|
91
|
+
* <p>The category for sorting the snapshots.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
Attribute: SnapshotAttributeToSortBy | undefined;
|
|
95
|
+
/**
|
|
96
|
+
* <p>The order for listing the attributes.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
SortOrder?: SortByOrder;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p></p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export interface DescribeClusterSnapshotsMessage {
|
|
106
|
+
/**
|
|
107
|
+
* <p>The identifier of the cluster which generated the requested snapshots.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
ClusterIdentifier?: string;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The snapshot identifier of the snapshot about which to return
|
|
113
|
+
* information.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
SnapshotIdentifier?: string;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The Amazon Resource Name (ARN) of the snapshot associated with the message to describe cluster snapshots.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
SnapshotArn?: string;
|
|
122
|
+
/**
|
|
123
|
+
* <p>The type of snapshots for which you are requesting information. By default,
|
|
124
|
+
* snapshots of all types are returned.</p>
|
|
125
|
+
* <p>Valid Values: <code>automated</code> | <code>manual</code>
|
|
126
|
+
* </p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
SnapshotType?: string;
|
|
130
|
+
/**
|
|
131
|
+
* <p>A value that requests only snapshots created at or after the specified time. The
|
|
132
|
+
* time value is specified in ISO 8601 format. For more information about ISO 8601, go to
|
|
133
|
+
* the <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia page.</a>
|
|
134
|
+
* </p>
|
|
135
|
+
* <p>Example: <code>2012-07-16T18:00:00Z</code>
|
|
136
|
+
* </p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
StartTime?: Date;
|
|
140
|
+
/**
|
|
141
|
+
* <p>A time value that requests only snapshots created at or before the specified time.
|
|
142
|
+
* The time value is specified in ISO 8601 format. For more information about ISO 8601, go
|
|
143
|
+
* to the <a href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia
|
|
144
|
+
* page.</a>
|
|
145
|
+
* </p>
|
|
146
|
+
* <p>Example: <code>2012-07-16T18:00:00Z</code>
|
|
147
|
+
* </p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
EndTime?: Date;
|
|
151
|
+
/**
|
|
152
|
+
* <p>The maximum number of response records to return in each call. If the number of
|
|
153
|
+
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
154
|
+
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
155
|
+
* set of records by retrying the command with the returned marker value. </p>
|
|
156
|
+
* <p>Default: <code>100</code>
|
|
157
|
+
* </p>
|
|
158
|
+
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
MaxRecords?: number;
|
|
162
|
+
/**
|
|
163
|
+
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
164
|
+
* records. When the results of a <a>DescribeClusterSnapshots</a> request exceed
|
|
165
|
+
* the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
166
|
+
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
167
|
+
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
168
|
+
* retrying the request. </p>
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
Marker?: string;
|
|
172
|
+
/**
|
|
173
|
+
* <p>The Amazon Web Services account used to create or copy the snapshot. Use this field to
|
|
174
|
+
* filter the results to snapshots owned by a particular account. To describe snapshots you
|
|
175
|
+
* own, either specify your Amazon Web Services account, or do not specify the
|
|
176
|
+
* parameter.</p>
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
OwnerAccount?: string;
|
|
180
|
+
/**
|
|
181
|
+
* <p>A tag key or keys for which you want to return all matching cluster snapshots that
|
|
182
|
+
* are associated with the specified key or keys. For example, suppose that you have
|
|
183
|
+
* snapshots that are tagged with keys called <code>owner</code> and
|
|
184
|
+
* <code>environment</code>. If you specify both of these tag keys in the request,
|
|
185
|
+
* Amazon Redshift returns a response with the snapshots that have either or both of these tag
|
|
186
|
+
* keys associated with them.</p>
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
TagKeys?: string[];
|
|
190
|
+
/**
|
|
191
|
+
* <p>A tag value or values for which you want to return all matching cluster snapshots
|
|
192
|
+
* that are associated with the specified tag value or values. For example, suppose that
|
|
193
|
+
* you have snapshots that are tagged with values called <code>admin</code> and
|
|
194
|
+
* <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
|
|
195
|
+
* returns a response with the snapshots that have either or both of these tag values
|
|
196
|
+
* associated with them.</p>
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
TagValues?: string[];
|
|
200
|
+
/**
|
|
201
|
+
* <p>A value that indicates whether to return snapshots only for an existing cluster.
|
|
202
|
+
* You can perform table-level restore only by using a snapshot of an existing cluster,
|
|
203
|
+
* that is, a cluster that has not been deleted. Values for this parameter work as follows: </p>
|
|
204
|
+
* <ul>
|
|
205
|
+
* <li>
|
|
206
|
+
* <p>If <code>ClusterExists</code> is set to <code>true</code>,
|
|
207
|
+
* <code>ClusterIdentifier</code> is required.</p>
|
|
208
|
+
* </li>
|
|
209
|
+
* <li>
|
|
210
|
+
* <p>If <code>ClusterExists</code> is set to <code>false</code> and
|
|
211
|
+
* <code>ClusterIdentifier</code> isn't specified, all snapshots
|
|
212
|
+
* associated with deleted clusters (orphaned snapshots) are returned. </p>
|
|
213
|
+
* </li>
|
|
214
|
+
* <li>
|
|
215
|
+
* <p>If <code>ClusterExists</code> is set to <code>false</code> and
|
|
216
|
+
* <code>ClusterIdentifier</code> is specified for a deleted cluster, snapshots
|
|
217
|
+
* associated with that cluster are returned.</p>
|
|
218
|
+
* </li>
|
|
219
|
+
* <li>
|
|
220
|
+
* <p>If <code>ClusterExists</code> is set to <code>false</code> and
|
|
221
|
+
* <code>ClusterIdentifier</code> is specified for an existing cluster, no
|
|
222
|
+
* snapshots are returned. </p>
|
|
223
|
+
* </li>
|
|
224
|
+
* </ul>
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
ClusterExists?: boolean;
|
|
228
|
+
/**
|
|
229
|
+
* <p></p>
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
SortingEntities?: SnapshotSortingEntity[];
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* <p>Contains the output from the <a>DescribeClusterSnapshots</a> action.
|
|
236
|
+
* </p>
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export interface SnapshotMessage {
|
|
240
|
+
/**
|
|
241
|
+
* <p>A value that indicates the starting point for the next set of response records in a
|
|
242
|
+
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
243
|
+
* of records by providing this returned marker value in the <code>Marker</code> parameter
|
|
244
|
+
* and retrying the command. If the <code>Marker</code> field is empty, all response
|
|
245
|
+
* records have been retrieved for the request. </p>
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
Marker?: string;
|
|
249
|
+
/**
|
|
250
|
+
* <p>A list of <a>Snapshot</a> instances. </p>
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
Snapshots?: Snapshot[];
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* <p></p>
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
259
|
+
export interface DescribeClusterSubnetGroupsMessage {
|
|
260
|
+
/**
|
|
261
|
+
* <p>The name of the cluster subnet group for which information is requested.</p>
|
|
262
|
+
* @public
|
|
263
|
+
*/
|
|
264
|
+
ClusterSubnetGroupName?: string;
|
|
265
|
+
/**
|
|
266
|
+
* <p>The maximum number of response records to return in each call. If the number of
|
|
267
|
+
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
268
|
+
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
269
|
+
* set of records by retrying the command with the returned marker value. </p>
|
|
270
|
+
* <p>Default: <code>100</code>
|
|
271
|
+
* </p>
|
|
272
|
+
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
275
|
+
MaxRecords?: number;
|
|
276
|
+
/**
|
|
277
|
+
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
278
|
+
* records. When the results of a <a>DescribeClusterSubnetGroups</a> request
|
|
279
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
280
|
+
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
281
|
+
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
282
|
+
* retrying the request. </p>
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
285
|
+
Marker?: string;
|
|
286
|
+
/**
|
|
287
|
+
* <p>A tag key or keys for which you want to return all matching cluster subnet groups
|
|
288
|
+
* that are associated with the specified key or keys. For example, suppose that you have
|
|
289
|
+
* subnet groups that are tagged with keys called <code>owner</code> and
|
|
290
|
+
* <code>environment</code>. If you specify both of these tag keys in the request,
|
|
291
|
+
* Amazon Redshift returns a response with the subnet groups that have either or both of these
|
|
292
|
+
* tag keys associated with them.</p>
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
TagKeys?: string[];
|
|
296
|
+
/**
|
|
297
|
+
* <p>A tag value or values for which you want to return all matching cluster subnet
|
|
298
|
+
* groups that are associated with the specified tag value or values. For example, suppose
|
|
299
|
+
* that you have subnet groups that are tagged with values called <code>admin</code> and
|
|
300
|
+
* <code>test</code>. If you specify both of these tag values in the request, Amazon Redshift
|
|
301
|
+
* returns a response with the subnet groups that have either or both of these tag values
|
|
302
|
+
* associated with them.</p>
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
305
|
+
TagValues?: string[];
|
|
306
|
+
}
|
|
307
|
+
/**
|
|
308
|
+
* @public
|
|
309
|
+
*/
|
|
310
|
+
export interface DescribeClusterTracksMessage {
|
|
311
|
+
/**
|
|
312
|
+
* <p>The name of the maintenance track. </p>
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
MaintenanceTrackName?: string;
|
|
316
|
+
/**
|
|
317
|
+
* <p>An integer value for the maximum number of maintenance tracks to return.</p>
|
|
318
|
+
* @public
|
|
319
|
+
*/
|
|
320
|
+
MaxRecords?: number;
|
|
321
|
+
/**
|
|
322
|
+
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
323
|
+
* records. When the results of a <code>DescribeClusterTracks</code> request exceed the
|
|
324
|
+
* value specified in <code>MaxRecords</code>, Amazon Redshift returns a value in the
|
|
325
|
+
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
326
|
+
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
327
|
+
* retrying the request. </p>
|
|
328
|
+
* @public
|
|
329
|
+
*/
|
|
330
|
+
Marker?: string;
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* <p>Describes the operations that are allowed on a maintenance track.</p>
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
export interface SupportedOperation {
|
|
337
|
+
/**
|
|
338
|
+
* <p>A list of the supported operations.</p>
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
OperationName?: string;
|
|
342
|
+
}
|
|
343
|
+
/**
|
|
344
|
+
* <p>A maintenance track that you can switch the current track to.</p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
export interface UpdateTarget {
|
|
348
|
+
/**
|
|
349
|
+
* <p>The name of the new maintenance track.</p>
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
MaintenanceTrackName?: string;
|
|
353
|
+
/**
|
|
354
|
+
* <p>The cluster version for the new maintenance track.</p>
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
DatabaseVersion?: string;
|
|
358
|
+
/**
|
|
359
|
+
* <p>A list of operations supported by the maintenance track.</p>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
SupportedOperations?: SupportedOperation[];
|
|
363
|
+
}
|
|
364
|
+
/**
|
|
365
|
+
* <p>Defines a maintenance track that determines which Amazon Redshift version to apply
|
|
366
|
+
* during a maintenance window. If the value for <code>MaintenanceTrack</code> is
|
|
367
|
+
* <code>current</code>, the cluster is updated to the most recently certified
|
|
368
|
+
* maintenance release. If the value is <code>trailing</code>, the cluster is updated to
|
|
369
|
+
* the previously certified maintenance release. </p>
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
export interface MaintenanceTrack {
|
|
373
|
+
/**
|
|
374
|
+
* <p>The name of the maintenance track. Possible values are <code>current</code> and
|
|
375
|
+
* <code>trailing</code>.</p>
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
378
|
+
MaintenanceTrackName?: string;
|
|
379
|
+
/**
|
|
380
|
+
* <p>The version number for the cluster release.</p>
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
383
|
+
DatabaseVersion?: string;
|
|
384
|
+
/**
|
|
385
|
+
* <p>An array of <a>UpdateTarget</a> objects to update with the maintenance
|
|
386
|
+
* track. </p>
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
UpdateTargets?: UpdateTarget[];
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
export interface TrackListMessage {
|
|
395
|
+
/**
|
|
396
|
+
* <p>A list of maintenance tracks output by the <code>DescribeClusterTracks</code>
|
|
397
|
+
* operation. </p>
|
|
398
|
+
* @public
|
|
399
|
+
*/
|
|
400
|
+
MaintenanceTracks?: MaintenanceTrack[];
|
|
401
|
+
/**
|
|
402
|
+
* <p>The starting point to return a set of response tracklist records. You can retrieve the
|
|
403
|
+
* next set of response records by providing the returned marker value in the
|
|
404
|
+
* <code>Marker</code> parameter and retrying the request.</p>
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
Marker?: string;
|
|
408
|
+
}
|
|
4
409
|
/**
|
|
5
410
|
* <p></p>
|
|
6
411
|
* @public
|
|
@@ -895,39 +1300,6 @@ export interface DescribeInboundIntegrationsMessage {
|
|
|
895
1300
|
*/
|
|
896
1301
|
Marker?: string;
|
|
897
1302
|
}
|
|
898
|
-
/**
|
|
899
|
-
* <p>The error of an inbound integration.</p>
|
|
900
|
-
* @public
|
|
901
|
-
*/
|
|
902
|
-
export interface IntegrationError {
|
|
903
|
-
/**
|
|
904
|
-
* <p>The error code of an inbound integration error.</p>
|
|
905
|
-
* @public
|
|
906
|
-
*/
|
|
907
|
-
ErrorCode: string | undefined;
|
|
908
|
-
/**
|
|
909
|
-
* <p>The error message of an inbound integration error.</p>
|
|
910
|
-
* @public
|
|
911
|
-
*/
|
|
912
|
-
ErrorMessage?: string;
|
|
913
|
-
}
|
|
914
|
-
/**
|
|
915
|
-
* @public
|
|
916
|
-
* @enum
|
|
917
|
-
*/
|
|
918
|
-
export declare const ZeroETLIntegrationStatus: {
|
|
919
|
-
readonly ACTIVE: "active";
|
|
920
|
-
readonly CREATING: "creating";
|
|
921
|
-
readonly DELETING: "deleting";
|
|
922
|
-
readonly FAILED: "failed";
|
|
923
|
-
readonly MODIFYING: "modifying";
|
|
924
|
-
readonly NEEDS_ATTENTION: "needs_attention";
|
|
925
|
-
readonly SYNCING: "syncing";
|
|
926
|
-
};
|
|
927
|
-
/**
|
|
928
|
-
* @public
|
|
929
|
-
*/
|
|
930
|
-
export type ZeroETLIntegrationStatus = (typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
|
|
931
1303
|
/**
|
|
932
1304
|
* <p>The content of an inbound integration.</p>
|
|
933
1305
|
* @public
|
|
@@ -984,16 +1356,84 @@ export interface InboundIntegrationsMessage {
|
|
|
984
1356
|
InboundIntegrations?: InboundIntegration[];
|
|
985
1357
|
}
|
|
986
1358
|
/**
|
|
987
|
-
* <p>The integration can't be found.</p>
|
|
988
1359
|
* @public
|
|
1360
|
+
* @enum
|
|
989
1361
|
*/
|
|
990
|
-
export declare
|
|
991
|
-
readonly
|
|
992
|
-
readonly
|
|
1362
|
+
export declare const DescribeIntegrationsFilterName: {
|
|
1363
|
+
readonly INTEGRATION_ARN: "integration-arn";
|
|
1364
|
+
readonly SOURCE_ARN: "source-arn";
|
|
1365
|
+
readonly SOURCE_TYPES: "source-types";
|
|
1366
|
+
readonly STATUS: "status";
|
|
1367
|
+
};
|
|
1368
|
+
/**
|
|
1369
|
+
* @public
|
|
1370
|
+
*/
|
|
1371
|
+
export type DescribeIntegrationsFilterName = (typeof DescribeIntegrationsFilterName)[keyof typeof DescribeIntegrationsFilterName];
|
|
1372
|
+
/**
|
|
1373
|
+
* <p>A set of elements to filter the returned integrations.</p>
|
|
1374
|
+
* @public
|
|
1375
|
+
*/
|
|
1376
|
+
export interface DescribeIntegrationsFilter {
|
|
993
1377
|
/**
|
|
994
|
-
*
|
|
1378
|
+
* <p>Specifies the type of integration filter.</p>
|
|
1379
|
+
* @public
|
|
1380
|
+
*/
|
|
1381
|
+
Name: DescribeIntegrationsFilterName | undefined;
|
|
1382
|
+
/**
|
|
1383
|
+
* <p>Specifies the values to filter on.</p>
|
|
1384
|
+
* @public
|
|
1385
|
+
*/
|
|
1386
|
+
Values: string[] | undefined;
|
|
1387
|
+
}
|
|
1388
|
+
/**
|
|
1389
|
+
* @public
|
|
1390
|
+
*/
|
|
1391
|
+
export interface DescribeIntegrationsMessage {
|
|
1392
|
+
/**
|
|
1393
|
+
* <p>The unique identifier of the integration.</p>
|
|
1394
|
+
* @public
|
|
1395
|
+
*/
|
|
1396
|
+
IntegrationArn?: string;
|
|
1397
|
+
/**
|
|
1398
|
+
* <p>The maximum number of response records to return in each call. If the number of
|
|
1399
|
+
* remaining response records exceeds the specified <code>MaxRecords</code> value, a value
|
|
1400
|
+
* is returned in a <code>marker</code> field of the response. You can retrieve the next
|
|
1401
|
+
* set of records by retrying the command with the returned marker value. </p>
|
|
1402
|
+
* <p>Default: <code>100</code>
|
|
1403
|
+
* </p>
|
|
1404
|
+
* <p>Constraints: minimum 20, maximum 100.</p>
|
|
1405
|
+
* @public
|
|
995
1406
|
*/
|
|
996
|
-
|
|
1407
|
+
MaxRecords?: number;
|
|
1408
|
+
/**
|
|
1409
|
+
* <p>An optional pagination token provided by a previous <code>DescribeIntegrations</code>
|
|
1410
|
+
* request. If this parameter is specified, the response includes only records beyond the
|
|
1411
|
+
* marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
1412
|
+
* @public
|
|
1413
|
+
*/
|
|
1414
|
+
Marker?: string;
|
|
1415
|
+
/**
|
|
1416
|
+
* <p>A filter that specifies one or more resources to return.</p>
|
|
1417
|
+
* @public
|
|
1418
|
+
*/
|
|
1419
|
+
Filters?: DescribeIntegrationsFilter[];
|
|
1420
|
+
}
|
|
1421
|
+
/**
|
|
1422
|
+
* @public
|
|
1423
|
+
*/
|
|
1424
|
+
export interface IntegrationsMessage {
|
|
1425
|
+
/**
|
|
1426
|
+
* <p>A value that indicates the starting point for the next set of response records in a subsequent request.
|
|
1427
|
+
* If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the <code>Marker</code> parameter and retrying the command.
|
|
1428
|
+
* If the <code>Marker</code> field is empty, all response records have been retrieved for the request.</p>
|
|
1429
|
+
* @public
|
|
1430
|
+
*/
|
|
1431
|
+
Marker?: string;
|
|
1432
|
+
/**
|
|
1433
|
+
* <p>List of integrations that are described.</p>
|
|
1434
|
+
* @public
|
|
1435
|
+
*/
|
|
1436
|
+
Integrations?: Integration[];
|
|
997
1437
|
}
|
|
998
1438
|
/**
|
|
999
1439
|
* <p></p>
|
|
@@ -2162,6 +2602,13 @@ export interface DescribeTagsMessage {
|
|
|
2162
2602
|
* <li>
|
|
2163
2603
|
* <p>Snapshot copy grant</p>
|
|
2164
2604
|
* </li>
|
|
2605
|
+
* <li>
|
|
2606
|
+
* <p>Integration (zero-ETL integration)</p>
|
|
2607
|
+
* <note>
|
|
2608
|
+
* <p>To describe the tags associated with an <code>integration</code>, don't specify <code>ResourceType</code>,
|
|
2609
|
+
* instead specify the <code>ResourceName</code> of the integration.</p>
|
|
2610
|
+
* </note>
|
|
2611
|
+
* </li>
|
|
2165
2612
|
* </ul>
|
|
2166
2613
|
* <p>For more information about Amazon Redshift resource types and constructing ARNs, go to
|
|
2167
2614
|
* <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/redshift-iam-access-control-overview.html#redshift-iam-access-control-specify-actions">Specifying Policy Elements: Actions, Effects, Resources, and Principals</a> in
|
|
@@ -3289,7 +3736,7 @@ export interface ModifyClusterMessage {
|
|
|
3289
3736
|
* in the <i>Amazon Redshift Cluster Management Guide</i>.</p>
|
|
3290
3737
|
* <p>Valid Values:
|
|
3291
3738
|
* <code>dc2.large</code> | <code>dc2.8xlarge</code> |
|
|
3292
|
-
* <code>ra3.xlplus</code> | <code>ra3.4xlarge</code> | <code>ra3.16xlarge</code>
|
|
3739
|
+
* <code>ra3.large</code> | <code>ra3.xlplus</code> | <code>ra3.4xlarge</code> | <code>ra3.16xlarge</code>
|
|
3293
3740
|
* </p>
|
|
3294
3741
|
* @public
|
|
3295
3742
|
*/
|
|
@@ -3970,6 +4417,26 @@ export interface ModifyEventSubscriptionResult {
|
|
|
3970
4417
|
*/
|
|
3971
4418
|
EventSubscription?: EventSubscription;
|
|
3972
4419
|
}
|
|
4420
|
+
/**
|
|
4421
|
+
* @public
|
|
4422
|
+
*/
|
|
4423
|
+
export interface ModifyIntegrationMessage {
|
|
4424
|
+
/**
|
|
4425
|
+
* <p>The unique identifier of the integration to modify.</p>
|
|
4426
|
+
* @public
|
|
4427
|
+
*/
|
|
4428
|
+
IntegrationArn: string | undefined;
|
|
4429
|
+
/**
|
|
4430
|
+
* <p>A new description for the integration.</p>
|
|
4431
|
+
* @public
|
|
4432
|
+
*/
|
|
4433
|
+
Description?: string;
|
|
4434
|
+
/**
|
|
4435
|
+
* <p>A new name for the integration.</p>
|
|
4436
|
+
* @public
|
|
4437
|
+
*/
|
|
4438
|
+
IntegrationName?: string;
|
|
4439
|
+
}
|
|
3973
4440
|
/**
|
|
3974
4441
|
* @public
|
|
3975
4442
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeIntegrationsCommandInput, DescribeIntegrationsCommandOutput } from "../commands/DescribeIntegrationsCommand";
|
|
3
|
+
import { RedshiftPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateDescribeIntegrations: (config: RedshiftPaginationConfiguration, input: DescribeIntegrationsCommandInput, ...rest: any[]) => Paginator<DescribeIntegrationsCommandOutput>;
|
|
@@ -20,6 +20,7 @@ export * from "./DescribeEventsPaginator";
|
|
|
20
20
|
export * from "./DescribeHsmClientCertificatesPaginator";
|
|
21
21
|
export * from "./DescribeHsmConfigurationsPaginator";
|
|
22
22
|
export * from "./DescribeInboundIntegrationsPaginator";
|
|
23
|
+
export * from "./DescribeIntegrationsPaginator";
|
|
23
24
|
export * from "./DescribeNodeConfigurationOptionsPaginator";
|
|
24
25
|
export * from "./DescribeOrderableClusterOptionsPaginator";
|
|
25
26
|
export * from "./DescribeRedshiftIdcApplicationsPaginator";
|