@aws-sdk/client-kinesis-analytics-v2 3.50.0 → 3.51.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/KinesisAnalyticsV2.d.ts +160 -0
- package/dist-types/ts3.4/KinesisAnalyticsV2Client.d.ts +104 -0
- package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddApplicationVpcConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateApplicationPresignedUrlCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateApplicationSnapshotCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationSnapshotCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationVpcConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeApplicationSnapshotCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeApplicationVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListApplicationSnapshotsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RollbackApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateApplicationMaintenanceConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +31 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2282 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,2282 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
|
|
3
|
+
export interface CloudWatchLoggingOption {
|
|
4
|
+
|
|
5
|
+
LogStreamARN: string | undefined;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace CloudWatchLoggingOption {
|
|
8
|
+
|
|
9
|
+
const filterSensitiveLog: (obj: CloudWatchLoggingOption) => any;
|
|
10
|
+
}
|
|
11
|
+
export interface AddApplicationCloudWatchLoggingOptionRequest {
|
|
12
|
+
|
|
13
|
+
ApplicationName: string | undefined;
|
|
14
|
+
|
|
15
|
+
CurrentApplicationVersionId?: number;
|
|
16
|
+
|
|
17
|
+
CloudWatchLoggingOption: CloudWatchLoggingOption | undefined;
|
|
18
|
+
|
|
19
|
+
ConditionalToken?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace AddApplicationCloudWatchLoggingOptionRequest {
|
|
22
|
+
|
|
23
|
+
const filterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionRequest) => any;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface CloudWatchLoggingOptionDescription {
|
|
27
|
+
|
|
28
|
+
CloudWatchLoggingOptionId?: string;
|
|
29
|
+
|
|
30
|
+
LogStreamARN: string | undefined;
|
|
31
|
+
|
|
32
|
+
RoleARN?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace CloudWatchLoggingOptionDescription {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: CloudWatchLoggingOptionDescription) => any;
|
|
37
|
+
}
|
|
38
|
+
export interface AddApplicationCloudWatchLoggingOptionResponse {
|
|
39
|
+
|
|
40
|
+
ApplicationARN?: string;
|
|
41
|
+
|
|
42
|
+
ApplicationVersionId?: number;
|
|
43
|
+
|
|
44
|
+
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[];
|
|
45
|
+
}
|
|
46
|
+
export declare namespace AddApplicationCloudWatchLoggingOptionResponse {
|
|
47
|
+
|
|
48
|
+
const filterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionResponse) => any;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
|
|
52
|
+
name: "ConcurrentModificationException";
|
|
53
|
+
$fault: "client";
|
|
54
|
+
Message?: string;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export interface InvalidApplicationConfigurationException extends __SmithyException, $MetadataBearer {
|
|
58
|
+
name: "InvalidApplicationConfigurationException";
|
|
59
|
+
$fault: "client";
|
|
60
|
+
Message?: string;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export interface InvalidArgumentException extends __SmithyException, $MetadataBearer {
|
|
64
|
+
name: "InvalidArgumentException";
|
|
65
|
+
$fault: "client";
|
|
66
|
+
Message?: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
|
|
70
|
+
name: "InvalidRequestException";
|
|
71
|
+
$fault: "client";
|
|
72
|
+
Message?: string;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
|
|
76
|
+
name: "ResourceInUseException";
|
|
77
|
+
$fault: "client";
|
|
78
|
+
Message?: string;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
82
|
+
name: "ResourceNotFoundException";
|
|
83
|
+
$fault: "client";
|
|
84
|
+
Message?: string;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface InputParallelism {
|
|
88
|
+
|
|
89
|
+
Count?: number;
|
|
90
|
+
}
|
|
91
|
+
export declare namespace InputParallelism {
|
|
92
|
+
|
|
93
|
+
const filterSensitiveLog: (obj: InputParallelism) => any;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface InputLambdaProcessor {
|
|
97
|
+
|
|
98
|
+
ResourceARN: string | undefined;
|
|
99
|
+
}
|
|
100
|
+
export declare namespace InputLambdaProcessor {
|
|
101
|
+
|
|
102
|
+
const filterSensitiveLog: (obj: InputLambdaProcessor) => any;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export interface InputProcessingConfiguration {
|
|
106
|
+
|
|
107
|
+
InputLambdaProcessor: InputLambdaProcessor | undefined;
|
|
108
|
+
}
|
|
109
|
+
export declare namespace InputProcessingConfiguration {
|
|
110
|
+
|
|
111
|
+
const filterSensitiveLog: (obj: InputProcessingConfiguration) => any;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export interface RecordColumn {
|
|
115
|
+
|
|
116
|
+
Name: string | undefined;
|
|
117
|
+
|
|
118
|
+
Mapping?: string;
|
|
119
|
+
|
|
120
|
+
SqlType: string | undefined;
|
|
121
|
+
}
|
|
122
|
+
export declare namespace RecordColumn {
|
|
123
|
+
|
|
124
|
+
const filterSensitiveLog: (obj: RecordColumn) => any;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export interface CSVMappingParameters {
|
|
128
|
+
|
|
129
|
+
RecordRowDelimiter: string | undefined;
|
|
130
|
+
|
|
131
|
+
RecordColumnDelimiter: string | undefined;
|
|
132
|
+
}
|
|
133
|
+
export declare namespace CSVMappingParameters {
|
|
134
|
+
|
|
135
|
+
const filterSensitiveLog: (obj: CSVMappingParameters) => any;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export interface JSONMappingParameters {
|
|
139
|
+
|
|
140
|
+
RecordRowPath: string | undefined;
|
|
141
|
+
}
|
|
142
|
+
export declare namespace JSONMappingParameters {
|
|
143
|
+
|
|
144
|
+
const filterSensitiveLog: (obj: JSONMappingParameters) => any;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface MappingParameters {
|
|
148
|
+
|
|
149
|
+
JSONMappingParameters?: JSONMappingParameters;
|
|
150
|
+
|
|
151
|
+
CSVMappingParameters?: CSVMappingParameters;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace MappingParameters {
|
|
154
|
+
|
|
155
|
+
const filterSensitiveLog: (obj: MappingParameters) => any;
|
|
156
|
+
}
|
|
157
|
+
export declare enum RecordFormatType {
|
|
158
|
+
CSV = "CSV",
|
|
159
|
+
JSON = "JSON"
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface RecordFormat {
|
|
163
|
+
|
|
164
|
+
RecordFormatType: RecordFormatType | string | undefined;
|
|
165
|
+
|
|
166
|
+
MappingParameters?: MappingParameters;
|
|
167
|
+
}
|
|
168
|
+
export declare namespace RecordFormat {
|
|
169
|
+
|
|
170
|
+
const filterSensitiveLog: (obj: RecordFormat) => any;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface SourceSchema {
|
|
174
|
+
|
|
175
|
+
RecordFormat: RecordFormat | undefined;
|
|
176
|
+
|
|
177
|
+
RecordEncoding?: string;
|
|
178
|
+
|
|
179
|
+
RecordColumns: RecordColumn[] | undefined;
|
|
180
|
+
}
|
|
181
|
+
export declare namespace SourceSchema {
|
|
182
|
+
|
|
183
|
+
const filterSensitiveLog: (obj: SourceSchema) => any;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export interface KinesisFirehoseInput {
|
|
187
|
+
|
|
188
|
+
ResourceARN: string | undefined;
|
|
189
|
+
}
|
|
190
|
+
export declare namespace KinesisFirehoseInput {
|
|
191
|
+
|
|
192
|
+
const filterSensitiveLog: (obj: KinesisFirehoseInput) => any;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export interface KinesisStreamsInput {
|
|
196
|
+
|
|
197
|
+
ResourceARN: string | undefined;
|
|
198
|
+
}
|
|
199
|
+
export declare namespace KinesisStreamsInput {
|
|
200
|
+
|
|
201
|
+
const filterSensitiveLog: (obj: KinesisStreamsInput) => any;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export interface Input {
|
|
205
|
+
|
|
206
|
+
NamePrefix: string | undefined;
|
|
207
|
+
|
|
208
|
+
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
209
|
+
|
|
210
|
+
KinesisStreamsInput?: KinesisStreamsInput;
|
|
211
|
+
|
|
212
|
+
KinesisFirehoseInput?: KinesisFirehoseInput;
|
|
213
|
+
|
|
214
|
+
InputParallelism?: InputParallelism;
|
|
215
|
+
|
|
216
|
+
InputSchema: SourceSchema | undefined;
|
|
217
|
+
}
|
|
218
|
+
export declare namespace Input {
|
|
219
|
+
|
|
220
|
+
const filterSensitiveLog: (obj: Input) => any;
|
|
221
|
+
}
|
|
222
|
+
export interface AddApplicationInputRequest {
|
|
223
|
+
|
|
224
|
+
ApplicationName: string | undefined;
|
|
225
|
+
|
|
226
|
+
CurrentApplicationVersionId: number | undefined;
|
|
227
|
+
|
|
228
|
+
Input: Input | undefined;
|
|
229
|
+
}
|
|
230
|
+
export declare namespace AddApplicationInputRequest {
|
|
231
|
+
|
|
232
|
+
const filterSensitiveLog: (obj: AddApplicationInputRequest) => any;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export interface InputLambdaProcessorDescription {
|
|
236
|
+
|
|
237
|
+
ResourceARN: string | undefined;
|
|
238
|
+
|
|
239
|
+
RoleARN?: string;
|
|
240
|
+
}
|
|
241
|
+
export declare namespace InputLambdaProcessorDescription {
|
|
242
|
+
|
|
243
|
+
const filterSensitiveLog: (obj: InputLambdaProcessorDescription) => any;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface InputProcessingConfigurationDescription {
|
|
247
|
+
|
|
248
|
+
InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
|
|
249
|
+
}
|
|
250
|
+
export declare namespace InputProcessingConfigurationDescription {
|
|
251
|
+
|
|
252
|
+
const filterSensitiveLog: (obj: InputProcessingConfigurationDescription) => any;
|
|
253
|
+
}
|
|
254
|
+
export declare enum InputStartingPosition {
|
|
255
|
+
LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
|
|
256
|
+
NOW = "NOW",
|
|
257
|
+
TRIM_HORIZON = "TRIM_HORIZON"
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface InputStartingPositionConfiguration {
|
|
261
|
+
|
|
262
|
+
InputStartingPosition?: InputStartingPosition | string;
|
|
263
|
+
}
|
|
264
|
+
export declare namespace InputStartingPositionConfiguration {
|
|
265
|
+
|
|
266
|
+
const filterSensitiveLog: (obj: InputStartingPositionConfiguration) => any;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
export interface KinesisFirehoseInputDescription {
|
|
270
|
+
|
|
271
|
+
ResourceARN: string | undefined;
|
|
272
|
+
|
|
273
|
+
RoleARN?: string;
|
|
274
|
+
}
|
|
275
|
+
export declare namespace KinesisFirehoseInputDescription {
|
|
276
|
+
|
|
277
|
+
const filterSensitiveLog: (obj: KinesisFirehoseInputDescription) => any;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
export interface KinesisStreamsInputDescription {
|
|
281
|
+
|
|
282
|
+
ResourceARN: string | undefined;
|
|
283
|
+
|
|
284
|
+
RoleARN?: string;
|
|
285
|
+
}
|
|
286
|
+
export declare namespace KinesisStreamsInputDescription {
|
|
287
|
+
|
|
288
|
+
const filterSensitiveLog: (obj: KinesisStreamsInputDescription) => any;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export interface InputDescription {
|
|
292
|
+
|
|
293
|
+
InputId?: string;
|
|
294
|
+
|
|
295
|
+
NamePrefix?: string;
|
|
296
|
+
|
|
297
|
+
InAppStreamNames?: string[];
|
|
298
|
+
|
|
299
|
+
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription;
|
|
300
|
+
|
|
301
|
+
KinesisStreamsInputDescription?: KinesisStreamsInputDescription;
|
|
302
|
+
|
|
303
|
+
KinesisFirehoseInputDescription?: KinesisFirehoseInputDescription;
|
|
304
|
+
|
|
305
|
+
InputSchema?: SourceSchema;
|
|
306
|
+
|
|
307
|
+
InputParallelism?: InputParallelism;
|
|
308
|
+
|
|
309
|
+
InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
|
|
310
|
+
}
|
|
311
|
+
export declare namespace InputDescription {
|
|
312
|
+
|
|
313
|
+
const filterSensitiveLog: (obj: InputDescription) => any;
|
|
314
|
+
}
|
|
315
|
+
export interface AddApplicationInputResponse {
|
|
316
|
+
|
|
317
|
+
ApplicationARN?: string;
|
|
318
|
+
|
|
319
|
+
ApplicationVersionId?: number;
|
|
320
|
+
|
|
321
|
+
InputDescriptions?: InputDescription[];
|
|
322
|
+
}
|
|
323
|
+
export declare namespace AddApplicationInputResponse {
|
|
324
|
+
|
|
325
|
+
const filterSensitiveLog: (obj: AddApplicationInputResponse) => any;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
export interface CodeValidationException extends __SmithyException, $MetadataBearer {
|
|
329
|
+
name: "CodeValidationException";
|
|
330
|
+
$fault: "client";
|
|
331
|
+
Message?: string;
|
|
332
|
+
}
|
|
333
|
+
export interface AddApplicationInputProcessingConfigurationRequest {
|
|
334
|
+
|
|
335
|
+
ApplicationName: string | undefined;
|
|
336
|
+
|
|
337
|
+
CurrentApplicationVersionId: number | undefined;
|
|
338
|
+
|
|
339
|
+
InputId: string | undefined;
|
|
340
|
+
|
|
341
|
+
InputProcessingConfiguration: InputProcessingConfiguration | undefined;
|
|
342
|
+
}
|
|
343
|
+
export declare namespace AddApplicationInputProcessingConfigurationRequest {
|
|
344
|
+
|
|
345
|
+
const filterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationRequest) => any;
|
|
346
|
+
}
|
|
347
|
+
export interface AddApplicationInputProcessingConfigurationResponse {
|
|
348
|
+
|
|
349
|
+
ApplicationARN?: string;
|
|
350
|
+
|
|
351
|
+
ApplicationVersionId?: number;
|
|
352
|
+
|
|
353
|
+
InputId?: string;
|
|
354
|
+
|
|
355
|
+
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription;
|
|
356
|
+
}
|
|
357
|
+
export declare namespace AddApplicationInputProcessingConfigurationResponse {
|
|
358
|
+
|
|
359
|
+
const filterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationResponse) => any;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export interface DestinationSchema {
|
|
363
|
+
|
|
364
|
+
RecordFormatType: RecordFormatType | string | undefined;
|
|
365
|
+
}
|
|
366
|
+
export declare namespace DestinationSchema {
|
|
367
|
+
|
|
368
|
+
const filterSensitiveLog: (obj: DestinationSchema) => any;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
export interface KinesisFirehoseOutput {
|
|
372
|
+
|
|
373
|
+
ResourceARN: string | undefined;
|
|
374
|
+
}
|
|
375
|
+
export declare namespace KinesisFirehoseOutput {
|
|
376
|
+
|
|
377
|
+
const filterSensitiveLog: (obj: KinesisFirehoseOutput) => any;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export interface KinesisStreamsOutput {
|
|
381
|
+
|
|
382
|
+
ResourceARN: string | undefined;
|
|
383
|
+
}
|
|
384
|
+
export declare namespace KinesisStreamsOutput {
|
|
385
|
+
|
|
386
|
+
const filterSensitiveLog: (obj: KinesisStreamsOutput) => any;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
export interface LambdaOutput {
|
|
390
|
+
|
|
391
|
+
ResourceARN: string | undefined;
|
|
392
|
+
}
|
|
393
|
+
export declare namespace LambdaOutput {
|
|
394
|
+
|
|
395
|
+
const filterSensitiveLog: (obj: LambdaOutput) => any;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
export interface Output {
|
|
399
|
+
|
|
400
|
+
Name: string | undefined;
|
|
401
|
+
|
|
402
|
+
KinesisStreamsOutput?: KinesisStreamsOutput;
|
|
403
|
+
|
|
404
|
+
KinesisFirehoseOutput?: KinesisFirehoseOutput;
|
|
405
|
+
|
|
406
|
+
LambdaOutput?: LambdaOutput;
|
|
407
|
+
|
|
408
|
+
DestinationSchema: DestinationSchema | undefined;
|
|
409
|
+
}
|
|
410
|
+
export declare namespace Output {
|
|
411
|
+
|
|
412
|
+
const filterSensitiveLog: (obj: Output) => any;
|
|
413
|
+
}
|
|
414
|
+
export interface AddApplicationOutputRequest {
|
|
415
|
+
|
|
416
|
+
ApplicationName: string | undefined;
|
|
417
|
+
|
|
418
|
+
CurrentApplicationVersionId: number | undefined;
|
|
419
|
+
|
|
420
|
+
Output: Output | undefined;
|
|
421
|
+
}
|
|
422
|
+
export declare namespace AddApplicationOutputRequest {
|
|
423
|
+
|
|
424
|
+
const filterSensitiveLog: (obj: AddApplicationOutputRequest) => any;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
export interface KinesisFirehoseOutputDescription {
|
|
428
|
+
|
|
429
|
+
ResourceARN: string | undefined;
|
|
430
|
+
|
|
431
|
+
RoleARN?: string;
|
|
432
|
+
}
|
|
433
|
+
export declare namespace KinesisFirehoseOutputDescription {
|
|
434
|
+
|
|
435
|
+
const filterSensitiveLog: (obj: KinesisFirehoseOutputDescription) => any;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export interface KinesisStreamsOutputDescription {
|
|
439
|
+
|
|
440
|
+
ResourceARN: string | undefined;
|
|
441
|
+
|
|
442
|
+
RoleARN?: string;
|
|
443
|
+
}
|
|
444
|
+
export declare namespace KinesisStreamsOutputDescription {
|
|
445
|
+
|
|
446
|
+
const filterSensitiveLog: (obj: KinesisStreamsOutputDescription) => any;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
export interface LambdaOutputDescription {
|
|
450
|
+
|
|
451
|
+
ResourceARN: string | undefined;
|
|
452
|
+
|
|
453
|
+
RoleARN?: string;
|
|
454
|
+
}
|
|
455
|
+
export declare namespace LambdaOutputDescription {
|
|
456
|
+
|
|
457
|
+
const filterSensitiveLog: (obj: LambdaOutputDescription) => any;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
export interface OutputDescription {
|
|
461
|
+
|
|
462
|
+
OutputId?: string;
|
|
463
|
+
|
|
464
|
+
Name?: string;
|
|
465
|
+
|
|
466
|
+
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription;
|
|
467
|
+
|
|
468
|
+
KinesisFirehoseOutputDescription?: KinesisFirehoseOutputDescription;
|
|
469
|
+
|
|
470
|
+
LambdaOutputDescription?: LambdaOutputDescription;
|
|
471
|
+
|
|
472
|
+
DestinationSchema?: DestinationSchema;
|
|
473
|
+
}
|
|
474
|
+
export declare namespace OutputDescription {
|
|
475
|
+
|
|
476
|
+
const filterSensitiveLog: (obj: OutputDescription) => any;
|
|
477
|
+
}
|
|
478
|
+
export interface AddApplicationOutputResponse {
|
|
479
|
+
|
|
480
|
+
ApplicationARN?: string;
|
|
481
|
+
|
|
482
|
+
ApplicationVersionId?: number;
|
|
483
|
+
|
|
484
|
+
OutputDescriptions?: OutputDescription[];
|
|
485
|
+
}
|
|
486
|
+
export declare namespace AddApplicationOutputResponse {
|
|
487
|
+
|
|
488
|
+
const filterSensitiveLog: (obj: AddApplicationOutputResponse) => any;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
export interface S3ReferenceDataSource {
|
|
492
|
+
|
|
493
|
+
BucketARN?: string;
|
|
494
|
+
|
|
495
|
+
FileKey?: string;
|
|
496
|
+
}
|
|
497
|
+
export declare namespace S3ReferenceDataSource {
|
|
498
|
+
|
|
499
|
+
const filterSensitiveLog: (obj: S3ReferenceDataSource) => any;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
export interface ReferenceDataSource {
|
|
503
|
+
|
|
504
|
+
TableName: string | undefined;
|
|
505
|
+
|
|
506
|
+
S3ReferenceDataSource?: S3ReferenceDataSource;
|
|
507
|
+
|
|
508
|
+
ReferenceSchema: SourceSchema | undefined;
|
|
509
|
+
}
|
|
510
|
+
export declare namespace ReferenceDataSource {
|
|
511
|
+
|
|
512
|
+
const filterSensitiveLog: (obj: ReferenceDataSource) => any;
|
|
513
|
+
}
|
|
514
|
+
export interface AddApplicationReferenceDataSourceRequest {
|
|
515
|
+
|
|
516
|
+
ApplicationName: string | undefined;
|
|
517
|
+
|
|
518
|
+
CurrentApplicationVersionId: number | undefined;
|
|
519
|
+
|
|
520
|
+
ReferenceDataSource: ReferenceDataSource | undefined;
|
|
521
|
+
}
|
|
522
|
+
export declare namespace AddApplicationReferenceDataSourceRequest {
|
|
523
|
+
|
|
524
|
+
const filterSensitiveLog: (obj: AddApplicationReferenceDataSourceRequest) => any;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
export interface S3ReferenceDataSourceDescription {
|
|
528
|
+
|
|
529
|
+
BucketARN: string | undefined;
|
|
530
|
+
|
|
531
|
+
FileKey: string | undefined;
|
|
532
|
+
|
|
533
|
+
ReferenceRoleARN?: string;
|
|
534
|
+
}
|
|
535
|
+
export declare namespace S3ReferenceDataSourceDescription {
|
|
536
|
+
|
|
537
|
+
const filterSensitiveLog: (obj: S3ReferenceDataSourceDescription) => any;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
export interface ReferenceDataSourceDescription {
|
|
541
|
+
|
|
542
|
+
ReferenceId: string | undefined;
|
|
543
|
+
|
|
544
|
+
TableName: string | undefined;
|
|
545
|
+
|
|
546
|
+
S3ReferenceDataSourceDescription: S3ReferenceDataSourceDescription | undefined;
|
|
547
|
+
|
|
548
|
+
ReferenceSchema?: SourceSchema;
|
|
549
|
+
}
|
|
550
|
+
export declare namespace ReferenceDataSourceDescription {
|
|
551
|
+
|
|
552
|
+
const filterSensitiveLog: (obj: ReferenceDataSourceDescription) => any;
|
|
553
|
+
}
|
|
554
|
+
export interface AddApplicationReferenceDataSourceResponse {
|
|
555
|
+
|
|
556
|
+
ApplicationARN?: string;
|
|
557
|
+
|
|
558
|
+
ApplicationVersionId?: number;
|
|
559
|
+
|
|
560
|
+
ReferenceDataSourceDescriptions?: ReferenceDataSourceDescription[];
|
|
561
|
+
}
|
|
562
|
+
export declare namespace AddApplicationReferenceDataSourceResponse {
|
|
563
|
+
|
|
564
|
+
const filterSensitiveLog: (obj: AddApplicationReferenceDataSourceResponse) => any;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
export interface VpcConfiguration {
|
|
568
|
+
|
|
569
|
+
SubnetIds: string[] | undefined;
|
|
570
|
+
|
|
571
|
+
SecurityGroupIds: string[] | undefined;
|
|
572
|
+
}
|
|
573
|
+
export declare namespace VpcConfiguration {
|
|
574
|
+
|
|
575
|
+
const filterSensitiveLog: (obj: VpcConfiguration) => any;
|
|
576
|
+
}
|
|
577
|
+
export interface AddApplicationVpcConfigurationRequest {
|
|
578
|
+
|
|
579
|
+
ApplicationName: string | undefined;
|
|
580
|
+
|
|
581
|
+
CurrentApplicationVersionId?: number;
|
|
582
|
+
|
|
583
|
+
VpcConfiguration: VpcConfiguration | undefined;
|
|
584
|
+
|
|
585
|
+
ConditionalToken?: string;
|
|
586
|
+
}
|
|
587
|
+
export declare namespace AddApplicationVpcConfigurationRequest {
|
|
588
|
+
|
|
589
|
+
const filterSensitiveLog: (obj: AddApplicationVpcConfigurationRequest) => any;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
export interface VpcConfigurationDescription {
|
|
593
|
+
|
|
594
|
+
VpcConfigurationId: string | undefined;
|
|
595
|
+
|
|
596
|
+
VpcId: string | undefined;
|
|
597
|
+
|
|
598
|
+
SubnetIds: string[] | undefined;
|
|
599
|
+
|
|
600
|
+
SecurityGroupIds: string[] | undefined;
|
|
601
|
+
}
|
|
602
|
+
export declare namespace VpcConfigurationDescription {
|
|
603
|
+
|
|
604
|
+
const filterSensitiveLog: (obj: VpcConfigurationDescription) => any;
|
|
605
|
+
}
|
|
606
|
+
export interface AddApplicationVpcConfigurationResponse {
|
|
607
|
+
|
|
608
|
+
ApplicationARN?: string;
|
|
609
|
+
|
|
610
|
+
ApplicationVersionId?: number;
|
|
611
|
+
|
|
612
|
+
VpcConfigurationDescription?: VpcConfigurationDescription;
|
|
613
|
+
}
|
|
614
|
+
export declare namespace AddApplicationVpcConfigurationResponse {
|
|
615
|
+
|
|
616
|
+
const filterSensitiveLog: (obj: AddApplicationVpcConfigurationResponse) => any;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
export interface S3ContentLocation {
|
|
620
|
+
|
|
621
|
+
BucketARN: string | undefined;
|
|
622
|
+
|
|
623
|
+
FileKey: string | undefined;
|
|
624
|
+
|
|
625
|
+
ObjectVersion?: string;
|
|
626
|
+
}
|
|
627
|
+
export declare namespace S3ContentLocation {
|
|
628
|
+
|
|
629
|
+
const filterSensitiveLog: (obj: S3ContentLocation) => any;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
export interface CodeContent {
|
|
633
|
+
|
|
634
|
+
TextContent?: string;
|
|
635
|
+
|
|
636
|
+
ZipFileContent?: Uint8Array;
|
|
637
|
+
|
|
638
|
+
S3ContentLocation?: S3ContentLocation;
|
|
639
|
+
}
|
|
640
|
+
export declare namespace CodeContent {
|
|
641
|
+
|
|
642
|
+
const filterSensitiveLog: (obj: CodeContent) => any;
|
|
643
|
+
}
|
|
644
|
+
export declare enum CodeContentType {
|
|
645
|
+
PLAINTEXT = "PLAINTEXT",
|
|
646
|
+
ZIPFILE = "ZIPFILE"
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
export interface ApplicationCodeConfiguration {
|
|
650
|
+
|
|
651
|
+
CodeContent?: CodeContent;
|
|
652
|
+
|
|
653
|
+
CodeContentType: CodeContentType | string | undefined;
|
|
654
|
+
}
|
|
655
|
+
export declare namespace ApplicationCodeConfiguration {
|
|
656
|
+
|
|
657
|
+
const filterSensitiveLog: (obj: ApplicationCodeConfiguration) => any;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
export interface S3ApplicationCodeLocationDescription {
|
|
661
|
+
|
|
662
|
+
BucketARN: string | undefined;
|
|
663
|
+
|
|
664
|
+
FileKey: string | undefined;
|
|
665
|
+
|
|
666
|
+
ObjectVersion?: string;
|
|
667
|
+
}
|
|
668
|
+
export declare namespace S3ApplicationCodeLocationDescription {
|
|
669
|
+
|
|
670
|
+
const filterSensitiveLog: (obj: S3ApplicationCodeLocationDescription) => any;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
export interface CodeContentDescription {
|
|
674
|
+
|
|
675
|
+
TextContent?: string;
|
|
676
|
+
|
|
677
|
+
CodeMD5?: string;
|
|
678
|
+
|
|
679
|
+
CodeSize?: number;
|
|
680
|
+
|
|
681
|
+
S3ApplicationCodeLocationDescription?: S3ApplicationCodeLocationDescription;
|
|
682
|
+
}
|
|
683
|
+
export declare namespace CodeContentDescription {
|
|
684
|
+
|
|
685
|
+
const filterSensitiveLog: (obj: CodeContentDescription) => any;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
export interface ApplicationCodeConfigurationDescription {
|
|
689
|
+
|
|
690
|
+
CodeContentType: CodeContentType | string | undefined;
|
|
691
|
+
|
|
692
|
+
CodeContentDescription?: CodeContentDescription;
|
|
693
|
+
}
|
|
694
|
+
export declare namespace ApplicationCodeConfigurationDescription {
|
|
695
|
+
|
|
696
|
+
const filterSensitiveLog: (obj: ApplicationCodeConfigurationDescription) => any;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
export interface S3ContentLocationUpdate {
|
|
700
|
+
|
|
701
|
+
BucketARNUpdate?: string;
|
|
702
|
+
|
|
703
|
+
FileKeyUpdate?: string;
|
|
704
|
+
|
|
705
|
+
ObjectVersionUpdate?: string;
|
|
706
|
+
}
|
|
707
|
+
export declare namespace S3ContentLocationUpdate {
|
|
708
|
+
|
|
709
|
+
const filterSensitiveLog: (obj: S3ContentLocationUpdate) => any;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
export interface CodeContentUpdate {
|
|
713
|
+
|
|
714
|
+
TextContentUpdate?: string;
|
|
715
|
+
|
|
716
|
+
ZipFileContentUpdate?: Uint8Array;
|
|
717
|
+
|
|
718
|
+
S3ContentLocationUpdate?: S3ContentLocationUpdate;
|
|
719
|
+
}
|
|
720
|
+
export declare namespace CodeContentUpdate {
|
|
721
|
+
|
|
722
|
+
const filterSensitiveLog: (obj: CodeContentUpdate) => any;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
export interface ApplicationCodeConfigurationUpdate {
|
|
726
|
+
|
|
727
|
+
CodeContentTypeUpdate?: CodeContentType | string;
|
|
728
|
+
|
|
729
|
+
CodeContentUpdate?: CodeContentUpdate;
|
|
730
|
+
}
|
|
731
|
+
export declare namespace ApplicationCodeConfigurationUpdate {
|
|
732
|
+
|
|
733
|
+
const filterSensitiveLog: (obj: ApplicationCodeConfigurationUpdate) => any;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
export interface ApplicationSnapshotConfiguration {
|
|
737
|
+
|
|
738
|
+
SnapshotsEnabled: boolean | undefined;
|
|
739
|
+
}
|
|
740
|
+
export declare namespace ApplicationSnapshotConfiguration {
|
|
741
|
+
|
|
742
|
+
const filterSensitiveLog: (obj: ApplicationSnapshotConfiguration) => any;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
export interface PropertyGroup {
|
|
746
|
+
|
|
747
|
+
PropertyGroupId: string | undefined;
|
|
748
|
+
|
|
749
|
+
PropertyMap: {
|
|
750
|
+
[key: string]: string;
|
|
751
|
+
} | undefined;
|
|
752
|
+
}
|
|
753
|
+
export declare namespace PropertyGroup {
|
|
754
|
+
|
|
755
|
+
const filterSensitiveLog: (obj: PropertyGroup) => any;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
export interface EnvironmentProperties {
|
|
759
|
+
|
|
760
|
+
PropertyGroups: PropertyGroup[] | undefined;
|
|
761
|
+
}
|
|
762
|
+
export declare namespace EnvironmentProperties {
|
|
763
|
+
|
|
764
|
+
const filterSensitiveLog: (obj: EnvironmentProperties) => any;
|
|
765
|
+
}
|
|
766
|
+
export declare enum ConfigurationType {
|
|
767
|
+
CUSTOM = "CUSTOM",
|
|
768
|
+
DEFAULT = "DEFAULT"
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
export interface CheckpointConfiguration {
|
|
772
|
+
|
|
773
|
+
ConfigurationType: ConfigurationType | string | undefined;
|
|
774
|
+
|
|
775
|
+
CheckpointingEnabled?: boolean;
|
|
776
|
+
|
|
777
|
+
CheckpointInterval?: number;
|
|
778
|
+
|
|
779
|
+
MinPauseBetweenCheckpoints?: number;
|
|
780
|
+
}
|
|
781
|
+
export declare namespace CheckpointConfiguration {
|
|
782
|
+
|
|
783
|
+
const filterSensitiveLog: (obj: CheckpointConfiguration) => any;
|
|
784
|
+
}
|
|
785
|
+
export declare enum LogLevel {
|
|
786
|
+
DEBUG = "DEBUG",
|
|
787
|
+
ERROR = "ERROR",
|
|
788
|
+
INFO = "INFO",
|
|
789
|
+
WARN = "WARN"
|
|
790
|
+
}
|
|
791
|
+
export declare enum MetricsLevel {
|
|
792
|
+
APPLICATION = "APPLICATION",
|
|
793
|
+
OPERATOR = "OPERATOR",
|
|
794
|
+
PARALLELISM = "PARALLELISM",
|
|
795
|
+
TASK = "TASK"
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
export interface MonitoringConfiguration {
|
|
799
|
+
|
|
800
|
+
ConfigurationType: ConfigurationType | string | undefined;
|
|
801
|
+
|
|
802
|
+
MetricsLevel?: MetricsLevel | string;
|
|
803
|
+
|
|
804
|
+
LogLevel?: LogLevel | string;
|
|
805
|
+
}
|
|
806
|
+
export declare namespace MonitoringConfiguration {
|
|
807
|
+
|
|
808
|
+
const filterSensitiveLog: (obj: MonitoringConfiguration) => any;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
export interface ParallelismConfiguration {
|
|
812
|
+
|
|
813
|
+
ConfigurationType: ConfigurationType | string | undefined;
|
|
814
|
+
|
|
815
|
+
Parallelism?: number;
|
|
816
|
+
|
|
817
|
+
ParallelismPerKPU?: number;
|
|
818
|
+
|
|
819
|
+
AutoScalingEnabled?: boolean;
|
|
820
|
+
}
|
|
821
|
+
export declare namespace ParallelismConfiguration {
|
|
822
|
+
|
|
823
|
+
const filterSensitiveLog: (obj: ParallelismConfiguration) => any;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
export interface FlinkApplicationConfiguration {
|
|
827
|
+
|
|
828
|
+
CheckpointConfiguration?: CheckpointConfiguration;
|
|
829
|
+
|
|
830
|
+
MonitoringConfiguration?: MonitoringConfiguration;
|
|
831
|
+
|
|
832
|
+
ParallelismConfiguration?: ParallelismConfiguration;
|
|
833
|
+
}
|
|
834
|
+
export declare namespace FlinkApplicationConfiguration {
|
|
835
|
+
|
|
836
|
+
const filterSensitiveLog: (obj: FlinkApplicationConfiguration) => any;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
export interface SqlApplicationConfiguration {
|
|
840
|
+
|
|
841
|
+
Inputs?: Input[];
|
|
842
|
+
|
|
843
|
+
Outputs?: Output[];
|
|
844
|
+
|
|
845
|
+
ReferenceDataSources?: ReferenceDataSource[];
|
|
846
|
+
}
|
|
847
|
+
export declare namespace SqlApplicationConfiguration {
|
|
848
|
+
|
|
849
|
+
const filterSensitiveLog: (obj: SqlApplicationConfiguration) => any;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
export interface GlueDataCatalogConfiguration {
|
|
853
|
+
|
|
854
|
+
DatabaseARN: string | undefined;
|
|
855
|
+
}
|
|
856
|
+
export declare namespace GlueDataCatalogConfiguration {
|
|
857
|
+
|
|
858
|
+
const filterSensitiveLog: (obj: GlueDataCatalogConfiguration) => any;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
export interface CatalogConfiguration {
|
|
862
|
+
|
|
863
|
+
GlueDataCatalogConfiguration: GlueDataCatalogConfiguration | undefined;
|
|
864
|
+
}
|
|
865
|
+
export declare namespace CatalogConfiguration {
|
|
866
|
+
|
|
867
|
+
const filterSensitiveLog: (obj: CatalogConfiguration) => any;
|
|
868
|
+
}
|
|
869
|
+
export declare enum ArtifactType {
|
|
870
|
+
DEPENDENCY_JAR = "DEPENDENCY_JAR",
|
|
871
|
+
UDF = "UDF"
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
export interface MavenReference {
|
|
875
|
+
|
|
876
|
+
GroupId: string | undefined;
|
|
877
|
+
|
|
878
|
+
ArtifactId: string | undefined;
|
|
879
|
+
|
|
880
|
+
Version: string | undefined;
|
|
881
|
+
}
|
|
882
|
+
export declare namespace MavenReference {
|
|
883
|
+
|
|
884
|
+
const filterSensitiveLog: (obj: MavenReference) => any;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
export interface CustomArtifactConfiguration {
|
|
888
|
+
|
|
889
|
+
ArtifactType: ArtifactType | string | undefined;
|
|
890
|
+
|
|
891
|
+
S3ContentLocation?: S3ContentLocation;
|
|
892
|
+
|
|
893
|
+
MavenReference?: MavenReference;
|
|
894
|
+
}
|
|
895
|
+
export declare namespace CustomArtifactConfiguration {
|
|
896
|
+
|
|
897
|
+
const filterSensitiveLog: (obj: CustomArtifactConfiguration) => any;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
export interface S3ContentBaseLocation {
|
|
901
|
+
|
|
902
|
+
BucketARN: string | undefined;
|
|
903
|
+
|
|
904
|
+
BasePath?: string;
|
|
905
|
+
}
|
|
906
|
+
export declare namespace S3ContentBaseLocation {
|
|
907
|
+
|
|
908
|
+
const filterSensitiveLog: (obj: S3ContentBaseLocation) => any;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
export interface DeployAsApplicationConfiguration {
|
|
912
|
+
|
|
913
|
+
S3ContentLocation: S3ContentBaseLocation | undefined;
|
|
914
|
+
}
|
|
915
|
+
export declare namespace DeployAsApplicationConfiguration {
|
|
916
|
+
|
|
917
|
+
const filterSensitiveLog: (obj: DeployAsApplicationConfiguration) => any;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
export interface ZeppelinMonitoringConfiguration {
|
|
921
|
+
|
|
922
|
+
LogLevel: LogLevel | string | undefined;
|
|
923
|
+
}
|
|
924
|
+
export declare namespace ZeppelinMonitoringConfiguration {
|
|
925
|
+
|
|
926
|
+
const filterSensitiveLog: (obj: ZeppelinMonitoringConfiguration) => any;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
export interface ZeppelinApplicationConfiguration {
|
|
930
|
+
|
|
931
|
+
MonitoringConfiguration?: ZeppelinMonitoringConfiguration;
|
|
932
|
+
|
|
933
|
+
CatalogConfiguration?: CatalogConfiguration;
|
|
934
|
+
|
|
935
|
+
DeployAsApplicationConfiguration?: DeployAsApplicationConfiguration;
|
|
936
|
+
|
|
937
|
+
CustomArtifactsConfiguration?: CustomArtifactConfiguration[];
|
|
938
|
+
}
|
|
939
|
+
export declare namespace ZeppelinApplicationConfiguration {
|
|
940
|
+
|
|
941
|
+
const filterSensitiveLog: (obj: ZeppelinApplicationConfiguration) => any;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
export interface ApplicationConfiguration {
|
|
945
|
+
|
|
946
|
+
SqlApplicationConfiguration?: SqlApplicationConfiguration;
|
|
947
|
+
|
|
948
|
+
FlinkApplicationConfiguration?: FlinkApplicationConfiguration;
|
|
949
|
+
|
|
950
|
+
EnvironmentProperties?: EnvironmentProperties;
|
|
951
|
+
|
|
952
|
+
ApplicationCodeConfiguration?: ApplicationCodeConfiguration;
|
|
953
|
+
|
|
954
|
+
ApplicationSnapshotConfiguration?: ApplicationSnapshotConfiguration;
|
|
955
|
+
|
|
956
|
+
VpcConfigurations?: VpcConfiguration[];
|
|
957
|
+
|
|
958
|
+
ZeppelinApplicationConfiguration?: ZeppelinApplicationConfiguration;
|
|
959
|
+
}
|
|
960
|
+
export declare namespace ApplicationConfiguration {
|
|
961
|
+
|
|
962
|
+
const filterSensitiveLog: (obj: ApplicationConfiguration) => any;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
export interface ApplicationSnapshotConfigurationDescription {
|
|
966
|
+
|
|
967
|
+
SnapshotsEnabled: boolean | undefined;
|
|
968
|
+
}
|
|
969
|
+
export declare namespace ApplicationSnapshotConfigurationDescription {
|
|
970
|
+
|
|
971
|
+
const filterSensitiveLog: (obj: ApplicationSnapshotConfigurationDescription) => any;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
export interface EnvironmentPropertyDescriptions {
|
|
975
|
+
|
|
976
|
+
PropertyGroupDescriptions?: PropertyGroup[];
|
|
977
|
+
}
|
|
978
|
+
export declare namespace EnvironmentPropertyDescriptions {
|
|
979
|
+
|
|
980
|
+
const filterSensitiveLog: (obj: EnvironmentPropertyDescriptions) => any;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
export interface CheckpointConfigurationDescription {
|
|
984
|
+
|
|
985
|
+
ConfigurationType?: ConfigurationType | string;
|
|
986
|
+
|
|
987
|
+
CheckpointingEnabled?: boolean;
|
|
988
|
+
|
|
989
|
+
CheckpointInterval?: number;
|
|
990
|
+
|
|
991
|
+
MinPauseBetweenCheckpoints?: number;
|
|
992
|
+
}
|
|
993
|
+
export declare namespace CheckpointConfigurationDescription {
|
|
994
|
+
|
|
995
|
+
const filterSensitiveLog: (obj: CheckpointConfigurationDescription) => any;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
export interface MonitoringConfigurationDescription {
|
|
999
|
+
|
|
1000
|
+
ConfigurationType?: ConfigurationType | string;
|
|
1001
|
+
|
|
1002
|
+
MetricsLevel?: MetricsLevel | string;
|
|
1003
|
+
|
|
1004
|
+
LogLevel?: LogLevel | string;
|
|
1005
|
+
}
|
|
1006
|
+
export declare namespace MonitoringConfigurationDescription {
|
|
1007
|
+
|
|
1008
|
+
const filterSensitiveLog: (obj: MonitoringConfigurationDescription) => any;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
export interface ParallelismConfigurationDescription {
|
|
1012
|
+
|
|
1013
|
+
ConfigurationType?: ConfigurationType | string;
|
|
1014
|
+
|
|
1015
|
+
Parallelism?: number;
|
|
1016
|
+
|
|
1017
|
+
ParallelismPerKPU?: number;
|
|
1018
|
+
|
|
1019
|
+
CurrentParallelism?: number;
|
|
1020
|
+
|
|
1021
|
+
AutoScalingEnabled?: boolean;
|
|
1022
|
+
}
|
|
1023
|
+
export declare namespace ParallelismConfigurationDescription {
|
|
1024
|
+
|
|
1025
|
+
const filterSensitiveLog: (obj: ParallelismConfigurationDescription) => any;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
export interface FlinkApplicationConfigurationDescription {
|
|
1029
|
+
|
|
1030
|
+
CheckpointConfigurationDescription?: CheckpointConfigurationDescription;
|
|
1031
|
+
|
|
1032
|
+
MonitoringConfigurationDescription?: MonitoringConfigurationDescription;
|
|
1033
|
+
|
|
1034
|
+
ParallelismConfigurationDescription?: ParallelismConfigurationDescription;
|
|
1035
|
+
|
|
1036
|
+
JobPlanDescription?: string;
|
|
1037
|
+
}
|
|
1038
|
+
export declare namespace FlinkApplicationConfigurationDescription {
|
|
1039
|
+
|
|
1040
|
+
const filterSensitiveLog: (obj: FlinkApplicationConfigurationDescription) => any;
|
|
1041
|
+
}
|
|
1042
|
+
export declare enum ApplicationRestoreType {
|
|
1043
|
+
RESTORE_FROM_CUSTOM_SNAPSHOT = "RESTORE_FROM_CUSTOM_SNAPSHOT",
|
|
1044
|
+
RESTORE_FROM_LATEST_SNAPSHOT = "RESTORE_FROM_LATEST_SNAPSHOT",
|
|
1045
|
+
SKIP_RESTORE_FROM_SNAPSHOT = "SKIP_RESTORE_FROM_SNAPSHOT"
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
export interface ApplicationRestoreConfiguration {
|
|
1049
|
+
|
|
1050
|
+
ApplicationRestoreType: ApplicationRestoreType | string | undefined;
|
|
1051
|
+
|
|
1052
|
+
SnapshotName?: string;
|
|
1053
|
+
}
|
|
1054
|
+
export declare namespace ApplicationRestoreConfiguration {
|
|
1055
|
+
|
|
1056
|
+
const filterSensitiveLog: (obj: ApplicationRestoreConfiguration) => any;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
export interface FlinkRunConfiguration {
|
|
1060
|
+
|
|
1061
|
+
AllowNonRestoredState?: boolean;
|
|
1062
|
+
}
|
|
1063
|
+
export declare namespace FlinkRunConfiguration {
|
|
1064
|
+
|
|
1065
|
+
const filterSensitiveLog: (obj: FlinkRunConfiguration) => any;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
export interface RunConfigurationDescription {
|
|
1069
|
+
|
|
1070
|
+
ApplicationRestoreConfigurationDescription?: ApplicationRestoreConfiguration;
|
|
1071
|
+
|
|
1072
|
+
FlinkRunConfigurationDescription?: FlinkRunConfiguration;
|
|
1073
|
+
}
|
|
1074
|
+
export declare namespace RunConfigurationDescription {
|
|
1075
|
+
|
|
1076
|
+
const filterSensitiveLog: (obj: RunConfigurationDescription) => any;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
export interface SqlApplicationConfigurationDescription {
|
|
1080
|
+
|
|
1081
|
+
InputDescriptions?: InputDescription[];
|
|
1082
|
+
|
|
1083
|
+
OutputDescriptions?: OutputDescription[];
|
|
1084
|
+
|
|
1085
|
+
ReferenceDataSourceDescriptions?: ReferenceDataSourceDescription[];
|
|
1086
|
+
}
|
|
1087
|
+
export declare namespace SqlApplicationConfigurationDescription {
|
|
1088
|
+
|
|
1089
|
+
const filterSensitiveLog: (obj: SqlApplicationConfigurationDescription) => any;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
export interface GlueDataCatalogConfigurationDescription {
|
|
1093
|
+
|
|
1094
|
+
DatabaseARN: string | undefined;
|
|
1095
|
+
}
|
|
1096
|
+
export declare namespace GlueDataCatalogConfigurationDescription {
|
|
1097
|
+
|
|
1098
|
+
const filterSensitiveLog: (obj: GlueDataCatalogConfigurationDescription) => any;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
export interface CatalogConfigurationDescription {
|
|
1102
|
+
|
|
1103
|
+
GlueDataCatalogConfigurationDescription: GlueDataCatalogConfigurationDescription | undefined;
|
|
1104
|
+
}
|
|
1105
|
+
export declare namespace CatalogConfigurationDescription {
|
|
1106
|
+
|
|
1107
|
+
const filterSensitiveLog: (obj: CatalogConfigurationDescription) => any;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
export interface CustomArtifactConfigurationDescription {
|
|
1111
|
+
|
|
1112
|
+
ArtifactType?: ArtifactType | string;
|
|
1113
|
+
|
|
1114
|
+
S3ContentLocationDescription?: S3ContentLocation;
|
|
1115
|
+
|
|
1116
|
+
MavenReferenceDescription?: MavenReference;
|
|
1117
|
+
}
|
|
1118
|
+
export declare namespace CustomArtifactConfigurationDescription {
|
|
1119
|
+
|
|
1120
|
+
const filterSensitiveLog: (obj: CustomArtifactConfigurationDescription) => any;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
export interface S3ContentBaseLocationDescription {
|
|
1124
|
+
|
|
1125
|
+
BucketARN: string | undefined;
|
|
1126
|
+
|
|
1127
|
+
BasePath?: string;
|
|
1128
|
+
}
|
|
1129
|
+
export declare namespace S3ContentBaseLocationDescription {
|
|
1130
|
+
|
|
1131
|
+
const filterSensitiveLog: (obj: S3ContentBaseLocationDescription) => any;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
export interface DeployAsApplicationConfigurationDescription {
|
|
1135
|
+
|
|
1136
|
+
S3ContentLocationDescription: S3ContentBaseLocationDescription | undefined;
|
|
1137
|
+
}
|
|
1138
|
+
export declare namespace DeployAsApplicationConfigurationDescription {
|
|
1139
|
+
|
|
1140
|
+
const filterSensitiveLog: (obj: DeployAsApplicationConfigurationDescription) => any;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
export interface ZeppelinMonitoringConfigurationDescription {
|
|
1144
|
+
|
|
1145
|
+
LogLevel?: LogLevel | string;
|
|
1146
|
+
}
|
|
1147
|
+
export declare namespace ZeppelinMonitoringConfigurationDescription {
|
|
1148
|
+
|
|
1149
|
+
const filterSensitiveLog: (obj: ZeppelinMonitoringConfigurationDescription) => any;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
export interface ZeppelinApplicationConfigurationDescription {
|
|
1153
|
+
|
|
1154
|
+
MonitoringConfigurationDescription: ZeppelinMonitoringConfigurationDescription | undefined;
|
|
1155
|
+
|
|
1156
|
+
CatalogConfigurationDescription?: CatalogConfigurationDescription;
|
|
1157
|
+
|
|
1158
|
+
DeployAsApplicationConfigurationDescription?: DeployAsApplicationConfigurationDescription;
|
|
1159
|
+
|
|
1160
|
+
CustomArtifactsConfigurationDescription?: CustomArtifactConfigurationDescription[];
|
|
1161
|
+
}
|
|
1162
|
+
export declare namespace ZeppelinApplicationConfigurationDescription {
|
|
1163
|
+
|
|
1164
|
+
const filterSensitiveLog: (obj: ZeppelinApplicationConfigurationDescription) => any;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
export interface ApplicationConfigurationDescription {
|
|
1168
|
+
|
|
1169
|
+
SqlApplicationConfigurationDescription?: SqlApplicationConfigurationDescription;
|
|
1170
|
+
|
|
1171
|
+
ApplicationCodeConfigurationDescription?: ApplicationCodeConfigurationDescription;
|
|
1172
|
+
|
|
1173
|
+
RunConfigurationDescription?: RunConfigurationDescription;
|
|
1174
|
+
|
|
1175
|
+
FlinkApplicationConfigurationDescription?: FlinkApplicationConfigurationDescription;
|
|
1176
|
+
|
|
1177
|
+
EnvironmentPropertyDescriptions?: EnvironmentPropertyDescriptions;
|
|
1178
|
+
|
|
1179
|
+
ApplicationSnapshotConfigurationDescription?: ApplicationSnapshotConfigurationDescription;
|
|
1180
|
+
|
|
1181
|
+
VpcConfigurationDescriptions?: VpcConfigurationDescription[];
|
|
1182
|
+
|
|
1183
|
+
ZeppelinApplicationConfigurationDescription?: ZeppelinApplicationConfigurationDescription;
|
|
1184
|
+
}
|
|
1185
|
+
export declare namespace ApplicationConfigurationDescription {
|
|
1186
|
+
|
|
1187
|
+
const filterSensitiveLog: (obj: ApplicationConfigurationDescription) => any;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
export interface ApplicationSnapshotConfigurationUpdate {
|
|
1191
|
+
|
|
1192
|
+
SnapshotsEnabledUpdate: boolean | undefined;
|
|
1193
|
+
}
|
|
1194
|
+
export declare namespace ApplicationSnapshotConfigurationUpdate {
|
|
1195
|
+
|
|
1196
|
+
const filterSensitiveLog: (obj: ApplicationSnapshotConfigurationUpdate) => any;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
export interface EnvironmentPropertyUpdates {
|
|
1200
|
+
|
|
1201
|
+
PropertyGroups: PropertyGroup[] | undefined;
|
|
1202
|
+
}
|
|
1203
|
+
export declare namespace EnvironmentPropertyUpdates {
|
|
1204
|
+
|
|
1205
|
+
const filterSensitiveLog: (obj: EnvironmentPropertyUpdates) => any;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
export interface CheckpointConfigurationUpdate {
|
|
1209
|
+
|
|
1210
|
+
ConfigurationTypeUpdate?: ConfigurationType | string;
|
|
1211
|
+
|
|
1212
|
+
CheckpointingEnabledUpdate?: boolean;
|
|
1213
|
+
|
|
1214
|
+
CheckpointIntervalUpdate?: number;
|
|
1215
|
+
|
|
1216
|
+
MinPauseBetweenCheckpointsUpdate?: number;
|
|
1217
|
+
}
|
|
1218
|
+
export declare namespace CheckpointConfigurationUpdate {
|
|
1219
|
+
|
|
1220
|
+
const filterSensitiveLog: (obj: CheckpointConfigurationUpdate) => any;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
export interface MonitoringConfigurationUpdate {
|
|
1224
|
+
|
|
1225
|
+
ConfigurationTypeUpdate?: ConfigurationType | string;
|
|
1226
|
+
|
|
1227
|
+
MetricsLevelUpdate?: MetricsLevel | string;
|
|
1228
|
+
|
|
1229
|
+
LogLevelUpdate?: LogLevel | string;
|
|
1230
|
+
}
|
|
1231
|
+
export declare namespace MonitoringConfigurationUpdate {
|
|
1232
|
+
|
|
1233
|
+
const filterSensitiveLog: (obj: MonitoringConfigurationUpdate) => any;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
export interface ParallelismConfigurationUpdate {
|
|
1237
|
+
|
|
1238
|
+
ConfigurationTypeUpdate?: ConfigurationType | string;
|
|
1239
|
+
|
|
1240
|
+
ParallelismUpdate?: number;
|
|
1241
|
+
|
|
1242
|
+
ParallelismPerKPUUpdate?: number;
|
|
1243
|
+
|
|
1244
|
+
AutoScalingEnabledUpdate?: boolean;
|
|
1245
|
+
}
|
|
1246
|
+
export declare namespace ParallelismConfigurationUpdate {
|
|
1247
|
+
|
|
1248
|
+
const filterSensitiveLog: (obj: ParallelismConfigurationUpdate) => any;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
export interface FlinkApplicationConfigurationUpdate {
|
|
1252
|
+
|
|
1253
|
+
CheckpointConfigurationUpdate?: CheckpointConfigurationUpdate;
|
|
1254
|
+
|
|
1255
|
+
MonitoringConfigurationUpdate?: MonitoringConfigurationUpdate;
|
|
1256
|
+
|
|
1257
|
+
ParallelismConfigurationUpdate?: ParallelismConfigurationUpdate;
|
|
1258
|
+
}
|
|
1259
|
+
export declare namespace FlinkApplicationConfigurationUpdate {
|
|
1260
|
+
|
|
1261
|
+
const filterSensitiveLog: (obj: FlinkApplicationConfigurationUpdate) => any;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
export interface InputParallelismUpdate {
|
|
1265
|
+
|
|
1266
|
+
CountUpdate: number | undefined;
|
|
1267
|
+
}
|
|
1268
|
+
export declare namespace InputParallelismUpdate {
|
|
1269
|
+
|
|
1270
|
+
const filterSensitiveLog: (obj: InputParallelismUpdate) => any;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
export interface InputLambdaProcessorUpdate {
|
|
1274
|
+
|
|
1275
|
+
ResourceARNUpdate: string | undefined;
|
|
1276
|
+
}
|
|
1277
|
+
export declare namespace InputLambdaProcessorUpdate {
|
|
1278
|
+
|
|
1279
|
+
const filterSensitiveLog: (obj: InputLambdaProcessorUpdate) => any;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
export interface InputProcessingConfigurationUpdate {
|
|
1283
|
+
|
|
1284
|
+
InputLambdaProcessorUpdate: InputLambdaProcessorUpdate | undefined;
|
|
1285
|
+
}
|
|
1286
|
+
export declare namespace InputProcessingConfigurationUpdate {
|
|
1287
|
+
|
|
1288
|
+
const filterSensitiveLog: (obj: InputProcessingConfigurationUpdate) => any;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
export interface InputSchemaUpdate {
|
|
1292
|
+
|
|
1293
|
+
RecordFormatUpdate?: RecordFormat;
|
|
1294
|
+
|
|
1295
|
+
RecordEncodingUpdate?: string;
|
|
1296
|
+
|
|
1297
|
+
RecordColumnUpdates?: RecordColumn[];
|
|
1298
|
+
}
|
|
1299
|
+
export declare namespace InputSchemaUpdate {
|
|
1300
|
+
|
|
1301
|
+
const filterSensitiveLog: (obj: InputSchemaUpdate) => any;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
export interface KinesisFirehoseInputUpdate {
|
|
1305
|
+
|
|
1306
|
+
ResourceARNUpdate: string | undefined;
|
|
1307
|
+
}
|
|
1308
|
+
export declare namespace KinesisFirehoseInputUpdate {
|
|
1309
|
+
|
|
1310
|
+
const filterSensitiveLog: (obj: KinesisFirehoseInputUpdate) => any;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
export interface KinesisStreamsInputUpdate {
|
|
1314
|
+
|
|
1315
|
+
ResourceARNUpdate: string | undefined;
|
|
1316
|
+
}
|
|
1317
|
+
export declare namespace KinesisStreamsInputUpdate {
|
|
1318
|
+
|
|
1319
|
+
const filterSensitiveLog: (obj: KinesisStreamsInputUpdate) => any;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
export interface InputUpdate {
|
|
1323
|
+
|
|
1324
|
+
InputId: string | undefined;
|
|
1325
|
+
|
|
1326
|
+
NamePrefixUpdate?: string;
|
|
1327
|
+
|
|
1328
|
+
InputProcessingConfigurationUpdate?: InputProcessingConfigurationUpdate;
|
|
1329
|
+
|
|
1330
|
+
KinesisStreamsInputUpdate?: KinesisStreamsInputUpdate;
|
|
1331
|
+
|
|
1332
|
+
KinesisFirehoseInputUpdate?: KinesisFirehoseInputUpdate;
|
|
1333
|
+
|
|
1334
|
+
InputSchemaUpdate?: InputSchemaUpdate;
|
|
1335
|
+
|
|
1336
|
+
InputParallelismUpdate?: InputParallelismUpdate;
|
|
1337
|
+
}
|
|
1338
|
+
export declare namespace InputUpdate {
|
|
1339
|
+
|
|
1340
|
+
const filterSensitiveLog: (obj: InputUpdate) => any;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
export interface KinesisFirehoseOutputUpdate {
|
|
1344
|
+
|
|
1345
|
+
ResourceARNUpdate: string | undefined;
|
|
1346
|
+
}
|
|
1347
|
+
export declare namespace KinesisFirehoseOutputUpdate {
|
|
1348
|
+
|
|
1349
|
+
const filterSensitiveLog: (obj: KinesisFirehoseOutputUpdate) => any;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
export interface KinesisStreamsOutputUpdate {
|
|
1353
|
+
|
|
1354
|
+
ResourceARNUpdate: string | undefined;
|
|
1355
|
+
}
|
|
1356
|
+
export declare namespace KinesisStreamsOutputUpdate {
|
|
1357
|
+
|
|
1358
|
+
const filterSensitiveLog: (obj: KinesisStreamsOutputUpdate) => any;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
export interface LambdaOutputUpdate {
|
|
1362
|
+
|
|
1363
|
+
ResourceARNUpdate: string | undefined;
|
|
1364
|
+
}
|
|
1365
|
+
export declare namespace LambdaOutputUpdate {
|
|
1366
|
+
|
|
1367
|
+
const filterSensitiveLog: (obj: LambdaOutputUpdate) => any;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
export interface OutputUpdate {
|
|
1371
|
+
|
|
1372
|
+
OutputId: string | undefined;
|
|
1373
|
+
|
|
1374
|
+
NameUpdate?: string;
|
|
1375
|
+
|
|
1376
|
+
KinesisStreamsOutputUpdate?: KinesisStreamsOutputUpdate;
|
|
1377
|
+
|
|
1378
|
+
KinesisFirehoseOutputUpdate?: KinesisFirehoseOutputUpdate;
|
|
1379
|
+
|
|
1380
|
+
LambdaOutputUpdate?: LambdaOutputUpdate;
|
|
1381
|
+
|
|
1382
|
+
DestinationSchemaUpdate?: DestinationSchema;
|
|
1383
|
+
}
|
|
1384
|
+
export declare namespace OutputUpdate {
|
|
1385
|
+
|
|
1386
|
+
const filterSensitiveLog: (obj: OutputUpdate) => any;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
export interface S3ReferenceDataSourceUpdate {
|
|
1390
|
+
|
|
1391
|
+
BucketARNUpdate?: string;
|
|
1392
|
+
|
|
1393
|
+
FileKeyUpdate?: string;
|
|
1394
|
+
}
|
|
1395
|
+
export declare namespace S3ReferenceDataSourceUpdate {
|
|
1396
|
+
|
|
1397
|
+
const filterSensitiveLog: (obj: S3ReferenceDataSourceUpdate) => any;
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
export interface ReferenceDataSourceUpdate {
|
|
1401
|
+
|
|
1402
|
+
ReferenceId: string | undefined;
|
|
1403
|
+
|
|
1404
|
+
TableNameUpdate?: string;
|
|
1405
|
+
|
|
1406
|
+
S3ReferenceDataSourceUpdate?: S3ReferenceDataSourceUpdate;
|
|
1407
|
+
|
|
1408
|
+
ReferenceSchemaUpdate?: SourceSchema;
|
|
1409
|
+
}
|
|
1410
|
+
export declare namespace ReferenceDataSourceUpdate {
|
|
1411
|
+
|
|
1412
|
+
const filterSensitiveLog: (obj: ReferenceDataSourceUpdate) => any;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
export interface SqlApplicationConfigurationUpdate {
|
|
1416
|
+
|
|
1417
|
+
InputUpdates?: InputUpdate[];
|
|
1418
|
+
|
|
1419
|
+
OutputUpdates?: OutputUpdate[];
|
|
1420
|
+
|
|
1421
|
+
ReferenceDataSourceUpdates?: ReferenceDataSourceUpdate[];
|
|
1422
|
+
}
|
|
1423
|
+
export declare namespace SqlApplicationConfigurationUpdate {
|
|
1424
|
+
|
|
1425
|
+
const filterSensitiveLog: (obj: SqlApplicationConfigurationUpdate) => any;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
export interface VpcConfigurationUpdate {
|
|
1429
|
+
|
|
1430
|
+
VpcConfigurationId: string | undefined;
|
|
1431
|
+
|
|
1432
|
+
SubnetIdUpdates?: string[];
|
|
1433
|
+
|
|
1434
|
+
SecurityGroupIdUpdates?: string[];
|
|
1435
|
+
}
|
|
1436
|
+
export declare namespace VpcConfigurationUpdate {
|
|
1437
|
+
|
|
1438
|
+
const filterSensitiveLog: (obj: VpcConfigurationUpdate) => any;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
export interface GlueDataCatalogConfigurationUpdate {
|
|
1442
|
+
|
|
1443
|
+
DatabaseARNUpdate: string | undefined;
|
|
1444
|
+
}
|
|
1445
|
+
export declare namespace GlueDataCatalogConfigurationUpdate {
|
|
1446
|
+
|
|
1447
|
+
const filterSensitiveLog: (obj: GlueDataCatalogConfigurationUpdate) => any;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
export interface CatalogConfigurationUpdate {
|
|
1451
|
+
|
|
1452
|
+
GlueDataCatalogConfigurationUpdate: GlueDataCatalogConfigurationUpdate | undefined;
|
|
1453
|
+
}
|
|
1454
|
+
export declare namespace CatalogConfigurationUpdate {
|
|
1455
|
+
|
|
1456
|
+
const filterSensitiveLog: (obj: CatalogConfigurationUpdate) => any;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
export interface S3ContentBaseLocationUpdate {
|
|
1460
|
+
|
|
1461
|
+
BucketARNUpdate?: string;
|
|
1462
|
+
|
|
1463
|
+
BasePathUpdate?: string;
|
|
1464
|
+
}
|
|
1465
|
+
export declare namespace S3ContentBaseLocationUpdate {
|
|
1466
|
+
|
|
1467
|
+
const filterSensitiveLog: (obj: S3ContentBaseLocationUpdate) => any;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
export interface DeployAsApplicationConfigurationUpdate {
|
|
1471
|
+
|
|
1472
|
+
S3ContentLocationUpdate?: S3ContentBaseLocationUpdate;
|
|
1473
|
+
}
|
|
1474
|
+
export declare namespace DeployAsApplicationConfigurationUpdate {
|
|
1475
|
+
|
|
1476
|
+
const filterSensitiveLog: (obj: DeployAsApplicationConfigurationUpdate) => any;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
export interface ZeppelinMonitoringConfigurationUpdate {
|
|
1480
|
+
|
|
1481
|
+
LogLevelUpdate: LogLevel | string | undefined;
|
|
1482
|
+
}
|
|
1483
|
+
export declare namespace ZeppelinMonitoringConfigurationUpdate {
|
|
1484
|
+
|
|
1485
|
+
const filterSensitiveLog: (obj: ZeppelinMonitoringConfigurationUpdate) => any;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
export interface ZeppelinApplicationConfigurationUpdate {
|
|
1489
|
+
|
|
1490
|
+
MonitoringConfigurationUpdate?: ZeppelinMonitoringConfigurationUpdate;
|
|
1491
|
+
|
|
1492
|
+
CatalogConfigurationUpdate?: CatalogConfigurationUpdate;
|
|
1493
|
+
|
|
1494
|
+
DeployAsApplicationConfigurationUpdate?: DeployAsApplicationConfigurationUpdate;
|
|
1495
|
+
|
|
1496
|
+
CustomArtifactsConfigurationUpdate?: CustomArtifactConfiguration[];
|
|
1497
|
+
}
|
|
1498
|
+
export declare namespace ZeppelinApplicationConfigurationUpdate {
|
|
1499
|
+
|
|
1500
|
+
const filterSensitiveLog: (obj: ZeppelinApplicationConfigurationUpdate) => any;
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
export interface ApplicationConfigurationUpdate {
|
|
1504
|
+
|
|
1505
|
+
SqlApplicationConfigurationUpdate?: SqlApplicationConfigurationUpdate;
|
|
1506
|
+
|
|
1507
|
+
ApplicationCodeConfigurationUpdate?: ApplicationCodeConfigurationUpdate;
|
|
1508
|
+
|
|
1509
|
+
FlinkApplicationConfigurationUpdate?: FlinkApplicationConfigurationUpdate;
|
|
1510
|
+
|
|
1511
|
+
EnvironmentPropertyUpdates?: EnvironmentPropertyUpdates;
|
|
1512
|
+
|
|
1513
|
+
ApplicationSnapshotConfigurationUpdate?: ApplicationSnapshotConfigurationUpdate;
|
|
1514
|
+
|
|
1515
|
+
VpcConfigurationUpdates?: VpcConfigurationUpdate[];
|
|
1516
|
+
|
|
1517
|
+
ZeppelinApplicationConfigurationUpdate?: ZeppelinApplicationConfigurationUpdate;
|
|
1518
|
+
}
|
|
1519
|
+
export declare namespace ApplicationConfigurationUpdate {
|
|
1520
|
+
|
|
1521
|
+
const filterSensitiveLog: (obj: ApplicationConfigurationUpdate) => any;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
export interface ApplicationMaintenanceConfigurationDescription {
|
|
1525
|
+
|
|
1526
|
+
ApplicationMaintenanceWindowStartTime: string | undefined;
|
|
1527
|
+
|
|
1528
|
+
ApplicationMaintenanceWindowEndTime: string | undefined;
|
|
1529
|
+
}
|
|
1530
|
+
export declare namespace ApplicationMaintenanceConfigurationDescription {
|
|
1531
|
+
|
|
1532
|
+
const filterSensitiveLog: (obj: ApplicationMaintenanceConfigurationDescription) => any;
|
|
1533
|
+
}
|
|
1534
|
+
export declare enum ApplicationMode {
|
|
1535
|
+
INTERACTIVE = "INTERACTIVE",
|
|
1536
|
+
STREAMING = "STREAMING"
|
|
1537
|
+
}
|
|
1538
|
+
export declare enum ApplicationStatus {
|
|
1539
|
+
AUTOSCALING = "AUTOSCALING",
|
|
1540
|
+
DELETING = "DELETING",
|
|
1541
|
+
FORCE_STOPPING = "FORCE_STOPPING",
|
|
1542
|
+
MAINTENANCE = "MAINTENANCE",
|
|
1543
|
+
READY = "READY",
|
|
1544
|
+
ROLLED_BACK = "ROLLED_BACK",
|
|
1545
|
+
ROLLING_BACK = "ROLLING_BACK",
|
|
1546
|
+
RUNNING = "RUNNING",
|
|
1547
|
+
STARTING = "STARTING",
|
|
1548
|
+
STOPPING = "STOPPING",
|
|
1549
|
+
UPDATING = "UPDATING"
|
|
1550
|
+
}
|
|
1551
|
+
export declare enum RuntimeEnvironment {
|
|
1552
|
+
FLINK_1_11 = "FLINK-1_11",
|
|
1553
|
+
FLINK_1_13 = "FLINK-1_13",
|
|
1554
|
+
FLINK_1_6 = "FLINK-1_6",
|
|
1555
|
+
FLINK_1_8 = "FLINK-1_8",
|
|
1556
|
+
SQL_1_0 = "SQL-1_0",
|
|
1557
|
+
ZEPPELIN_FLINK_1_0 = "ZEPPELIN-FLINK-1_0",
|
|
1558
|
+
ZEPPELIN_FLINK_2_0 = "ZEPPELIN-FLINK-2_0"
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
export interface ApplicationDetail {
|
|
1562
|
+
|
|
1563
|
+
ApplicationARN: string | undefined;
|
|
1564
|
+
|
|
1565
|
+
ApplicationDescription?: string;
|
|
1566
|
+
|
|
1567
|
+
ApplicationName: string | undefined;
|
|
1568
|
+
|
|
1569
|
+
RuntimeEnvironment: RuntimeEnvironment | string | undefined;
|
|
1570
|
+
|
|
1571
|
+
ServiceExecutionRole?: string;
|
|
1572
|
+
|
|
1573
|
+
ApplicationStatus: ApplicationStatus | string | undefined;
|
|
1574
|
+
|
|
1575
|
+
ApplicationVersionId: number | undefined;
|
|
1576
|
+
|
|
1577
|
+
CreateTimestamp?: Date;
|
|
1578
|
+
|
|
1579
|
+
LastUpdateTimestamp?: Date;
|
|
1580
|
+
|
|
1581
|
+
ApplicationConfigurationDescription?: ApplicationConfigurationDescription;
|
|
1582
|
+
|
|
1583
|
+
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[];
|
|
1584
|
+
|
|
1585
|
+
ApplicationMaintenanceConfigurationDescription?: ApplicationMaintenanceConfigurationDescription;
|
|
1586
|
+
|
|
1587
|
+
ApplicationVersionUpdatedFrom?: number;
|
|
1588
|
+
|
|
1589
|
+
ApplicationVersionRolledBackFrom?: number;
|
|
1590
|
+
|
|
1591
|
+
ConditionalToken?: string;
|
|
1592
|
+
|
|
1593
|
+
ApplicationVersionRolledBackTo?: number;
|
|
1594
|
+
|
|
1595
|
+
ApplicationMode?: ApplicationMode | string;
|
|
1596
|
+
}
|
|
1597
|
+
export declare namespace ApplicationDetail {
|
|
1598
|
+
|
|
1599
|
+
const filterSensitiveLog: (obj: ApplicationDetail) => any;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
export interface ApplicationMaintenanceConfigurationUpdate {
|
|
1603
|
+
|
|
1604
|
+
ApplicationMaintenanceWindowStartTimeUpdate: string | undefined;
|
|
1605
|
+
}
|
|
1606
|
+
export declare namespace ApplicationMaintenanceConfigurationUpdate {
|
|
1607
|
+
|
|
1608
|
+
const filterSensitiveLog: (obj: ApplicationMaintenanceConfigurationUpdate) => any;
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
export interface ApplicationSummary {
|
|
1612
|
+
|
|
1613
|
+
ApplicationName: string | undefined;
|
|
1614
|
+
|
|
1615
|
+
ApplicationARN: string | undefined;
|
|
1616
|
+
|
|
1617
|
+
ApplicationStatus: ApplicationStatus | string | undefined;
|
|
1618
|
+
|
|
1619
|
+
ApplicationVersionId: number | undefined;
|
|
1620
|
+
|
|
1621
|
+
RuntimeEnvironment: RuntimeEnvironment | string | undefined;
|
|
1622
|
+
|
|
1623
|
+
ApplicationMode?: ApplicationMode | string;
|
|
1624
|
+
}
|
|
1625
|
+
export declare namespace ApplicationSummary {
|
|
1626
|
+
|
|
1627
|
+
const filterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
export interface ApplicationVersionSummary {
|
|
1631
|
+
|
|
1632
|
+
ApplicationVersionId: number | undefined;
|
|
1633
|
+
|
|
1634
|
+
ApplicationStatus: ApplicationStatus | string | undefined;
|
|
1635
|
+
}
|
|
1636
|
+
export declare namespace ApplicationVersionSummary {
|
|
1637
|
+
|
|
1638
|
+
const filterSensitiveLog: (obj: ApplicationVersionSummary) => any;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
export interface CloudWatchLoggingOptionUpdate {
|
|
1642
|
+
|
|
1643
|
+
CloudWatchLoggingOptionId: string | undefined;
|
|
1644
|
+
|
|
1645
|
+
LogStreamARNUpdate?: string;
|
|
1646
|
+
}
|
|
1647
|
+
export declare namespace CloudWatchLoggingOptionUpdate {
|
|
1648
|
+
|
|
1649
|
+
const filterSensitiveLog: (obj: CloudWatchLoggingOptionUpdate) => any;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
export interface Tag {
|
|
1653
|
+
|
|
1654
|
+
Key: string | undefined;
|
|
1655
|
+
|
|
1656
|
+
Value?: string;
|
|
1657
|
+
}
|
|
1658
|
+
export declare namespace Tag {
|
|
1659
|
+
|
|
1660
|
+
const filterSensitiveLog: (obj: Tag) => any;
|
|
1661
|
+
}
|
|
1662
|
+
export interface CreateApplicationRequest {
|
|
1663
|
+
|
|
1664
|
+
ApplicationName: string | undefined;
|
|
1665
|
+
|
|
1666
|
+
ApplicationDescription?: string;
|
|
1667
|
+
|
|
1668
|
+
RuntimeEnvironment: RuntimeEnvironment | string | undefined;
|
|
1669
|
+
|
|
1670
|
+
ServiceExecutionRole: string | undefined;
|
|
1671
|
+
|
|
1672
|
+
ApplicationConfiguration?: ApplicationConfiguration;
|
|
1673
|
+
|
|
1674
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOption[];
|
|
1675
|
+
|
|
1676
|
+
Tags?: Tag[];
|
|
1677
|
+
|
|
1678
|
+
ApplicationMode?: ApplicationMode | string;
|
|
1679
|
+
}
|
|
1680
|
+
export declare namespace CreateApplicationRequest {
|
|
1681
|
+
|
|
1682
|
+
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
1683
|
+
}
|
|
1684
|
+
export interface CreateApplicationResponse {
|
|
1685
|
+
|
|
1686
|
+
ApplicationDetail: ApplicationDetail | undefined;
|
|
1687
|
+
}
|
|
1688
|
+
export declare namespace CreateApplicationResponse {
|
|
1689
|
+
|
|
1690
|
+
const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
1694
|
+
name: "LimitExceededException";
|
|
1695
|
+
$fault: "client";
|
|
1696
|
+
Message?: string;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
|
|
1700
|
+
name: "TooManyTagsException";
|
|
1701
|
+
$fault: "client";
|
|
1702
|
+
message?: string;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
export interface UnsupportedOperationException extends __SmithyException, $MetadataBearer {
|
|
1706
|
+
name: "UnsupportedOperationException";
|
|
1707
|
+
$fault: "client";
|
|
1708
|
+
Message?: string;
|
|
1709
|
+
}
|
|
1710
|
+
export declare enum UrlType {
|
|
1711
|
+
FLINK_DASHBOARD_URL = "FLINK_DASHBOARD_URL",
|
|
1712
|
+
ZEPPELIN_UI_URL = "ZEPPELIN_UI_URL"
|
|
1713
|
+
}
|
|
1714
|
+
export interface CreateApplicationPresignedUrlRequest {
|
|
1715
|
+
|
|
1716
|
+
ApplicationName: string | undefined;
|
|
1717
|
+
|
|
1718
|
+
UrlType: UrlType | string | undefined;
|
|
1719
|
+
|
|
1720
|
+
SessionExpirationDurationInSeconds?: number;
|
|
1721
|
+
}
|
|
1722
|
+
export declare namespace CreateApplicationPresignedUrlRequest {
|
|
1723
|
+
|
|
1724
|
+
const filterSensitiveLog: (obj: CreateApplicationPresignedUrlRequest) => any;
|
|
1725
|
+
}
|
|
1726
|
+
export interface CreateApplicationPresignedUrlResponse {
|
|
1727
|
+
|
|
1728
|
+
AuthorizedUrl?: string;
|
|
1729
|
+
}
|
|
1730
|
+
export declare namespace CreateApplicationPresignedUrlResponse {
|
|
1731
|
+
|
|
1732
|
+
const filterSensitiveLog: (obj: CreateApplicationPresignedUrlResponse) => any;
|
|
1733
|
+
}
|
|
1734
|
+
export interface CreateApplicationSnapshotRequest {
|
|
1735
|
+
|
|
1736
|
+
ApplicationName: string | undefined;
|
|
1737
|
+
|
|
1738
|
+
SnapshotName: string | undefined;
|
|
1739
|
+
}
|
|
1740
|
+
export declare namespace CreateApplicationSnapshotRequest {
|
|
1741
|
+
|
|
1742
|
+
const filterSensitiveLog: (obj: CreateApplicationSnapshotRequest) => any;
|
|
1743
|
+
}
|
|
1744
|
+
export interface CreateApplicationSnapshotResponse {
|
|
1745
|
+
}
|
|
1746
|
+
export declare namespace CreateApplicationSnapshotResponse {
|
|
1747
|
+
|
|
1748
|
+
const filterSensitiveLog: (obj: CreateApplicationSnapshotResponse) => any;
|
|
1749
|
+
}
|
|
1750
|
+
export interface DeleteApplicationRequest {
|
|
1751
|
+
|
|
1752
|
+
ApplicationName: string | undefined;
|
|
1753
|
+
|
|
1754
|
+
CreateTimestamp: Date | undefined;
|
|
1755
|
+
}
|
|
1756
|
+
export declare namespace DeleteApplicationRequest {
|
|
1757
|
+
|
|
1758
|
+
const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
1759
|
+
}
|
|
1760
|
+
export interface DeleteApplicationResponse {
|
|
1761
|
+
}
|
|
1762
|
+
export declare namespace DeleteApplicationResponse {
|
|
1763
|
+
|
|
1764
|
+
const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
1765
|
+
}
|
|
1766
|
+
export interface DeleteApplicationCloudWatchLoggingOptionRequest {
|
|
1767
|
+
|
|
1768
|
+
ApplicationName: string | undefined;
|
|
1769
|
+
|
|
1770
|
+
CurrentApplicationVersionId?: number;
|
|
1771
|
+
|
|
1772
|
+
CloudWatchLoggingOptionId: string | undefined;
|
|
1773
|
+
|
|
1774
|
+
ConditionalToken?: string;
|
|
1775
|
+
}
|
|
1776
|
+
export declare namespace DeleteApplicationCloudWatchLoggingOptionRequest {
|
|
1777
|
+
|
|
1778
|
+
const filterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionRequest) => any;
|
|
1779
|
+
}
|
|
1780
|
+
export interface DeleteApplicationCloudWatchLoggingOptionResponse {
|
|
1781
|
+
|
|
1782
|
+
ApplicationARN?: string;
|
|
1783
|
+
|
|
1784
|
+
ApplicationVersionId?: number;
|
|
1785
|
+
|
|
1786
|
+
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[];
|
|
1787
|
+
}
|
|
1788
|
+
export declare namespace DeleteApplicationCloudWatchLoggingOptionResponse {
|
|
1789
|
+
|
|
1790
|
+
const filterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionResponse) => any;
|
|
1791
|
+
}
|
|
1792
|
+
export interface DeleteApplicationInputProcessingConfigurationRequest {
|
|
1793
|
+
|
|
1794
|
+
ApplicationName: string | undefined;
|
|
1795
|
+
|
|
1796
|
+
CurrentApplicationVersionId: number | undefined;
|
|
1797
|
+
|
|
1798
|
+
InputId: string | undefined;
|
|
1799
|
+
}
|
|
1800
|
+
export declare namespace DeleteApplicationInputProcessingConfigurationRequest {
|
|
1801
|
+
|
|
1802
|
+
const filterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationRequest) => any;
|
|
1803
|
+
}
|
|
1804
|
+
export interface DeleteApplicationInputProcessingConfigurationResponse {
|
|
1805
|
+
|
|
1806
|
+
ApplicationARN?: string;
|
|
1807
|
+
|
|
1808
|
+
ApplicationVersionId?: number;
|
|
1809
|
+
}
|
|
1810
|
+
export declare namespace DeleteApplicationInputProcessingConfigurationResponse {
|
|
1811
|
+
|
|
1812
|
+
const filterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationResponse) => any;
|
|
1813
|
+
}
|
|
1814
|
+
export interface DeleteApplicationOutputRequest {
|
|
1815
|
+
|
|
1816
|
+
ApplicationName: string | undefined;
|
|
1817
|
+
|
|
1818
|
+
CurrentApplicationVersionId: number | undefined;
|
|
1819
|
+
|
|
1820
|
+
OutputId: string | undefined;
|
|
1821
|
+
}
|
|
1822
|
+
export declare namespace DeleteApplicationOutputRequest {
|
|
1823
|
+
|
|
1824
|
+
const filterSensitiveLog: (obj: DeleteApplicationOutputRequest) => any;
|
|
1825
|
+
}
|
|
1826
|
+
export interface DeleteApplicationOutputResponse {
|
|
1827
|
+
|
|
1828
|
+
ApplicationARN?: string;
|
|
1829
|
+
|
|
1830
|
+
ApplicationVersionId?: number;
|
|
1831
|
+
}
|
|
1832
|
+
export declare namespace DeleteApplicationOutputResponse {
|
|
1833
|
+
|
|
1834
|
+
const filterSensitiveLog: (obj: DeleteApplicationOutputResponse) => any;
|
|
1835
|
+
}
|
|
1836
|
+
export interface DeleteApplicationReferenceDataSourceRequest {
|
|
1837
|
+
|
|
1838
|
+
ApplicationName: string | undefined;
|
|
1839
|
+
|
|
1840
|
+
CurrentApplicationVersionId: number | undefined;
|
|
1841
|
+
|
|
1842
|
+
ReferenceId: string | undefined;
|
|
1843
|
+
}
|
|
1844
|
+
export declare namespace DeleteApplicationReferenceDataSourceRequest {
|
|
1845
|
+
|
|
1846
|
+
const filterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceRequest) => any;
|
|
1847
|
+
}
|
|
1848
|
+
export interface DeleteApplicationReferenceDataSourceResponse {
|
|
1849
|
+
|
|
1850
|
+
ApplicationARN?: string;
|
|
1851
|
+
|
|
1852
|
+
ApplicationVersionId?: number;
|
|
1853
|
+
}
|
|
1854
|
+
export declare namespace DeleteApplicationReferenceDataSourceResponse {
|
|
1855
|
+
|
|
1856
|
+
const filterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceResponse) => any;
|
|
1857
|
+
}
|
|
1858
|
+
export interface DeleteApplicationSnapshotRequest {
|
|
1859
|
+
|
|
1860
|
+
ApplicationName: string | undefined;
|
|
1861
|
+
|
|
1862
|
+
SnapshotName: string | undefined;
|
|
1863
|
+
|
|
1864
|
+
SnapshotCreationTimestamp: Date | undefined;
|
|
1865
|
+
}
|
|
1866
|
+
export declare namespace DeleteApplicationSnapshotRequest {
|
|
1867
|
+
|
|
1868
|
+
const filterSensitiveLog: (obj: DeleteApplicationSnapshotRequest) => any;
|
|
1869
|
+
}
|
|
1870
|
+
export interface DeleteApplicationSnapshotResponse {
|
|
1871
|
+
}
|
|
1872
|
+
export declare namespace DeleteApplicationSnapshotResponse {
|
|
1873
|
+
|
|
1874
|
+
const filterSensitiveLog: (obj: DeleteApplicationSnapshotResponse) => any;
|
|
1875
|
+
}
|
|
1876
|
+
export interface DeleteApplicationVpcConfigurationRequest {
|
|
1877
|
+
|
|
1878
|
+
ApplicationName: string | undefined;
|
|
1879
|
+
|
|
1880
|
+
CurrentApplicationVersionId?: number;
|
|
1881
|
+
|
|
1882
|
+
VpcConfigurationId: string | undefined;
|
|
1883
|
+
|
|
1884
|
+
ConditionalToken?: string;
|
|
1885
|
+
}
|
|
1886
|
+
export declare namespace DeleteApplicationVpcConfigurationRequest {
|
|
1887
|
+
|
|
1888
|
+
const filterSensitiveLog: (obj: DeleteApplicationVpcConfigurationRequest) => any;
|
|
1889
|
+
}
|
|
1890
|
+
export interface DeleteApplicationVpcConfigurationResponse {
|
|
1891
|
+
|
|
1892
|
+
ApplicationARN?: string;
|
|
1893
|
+
|
|
1894
|
+
ApplicationVersionId?: number;
|
|
1895
|
+
}
|
|
1896
|
+
export declare namespace DeleteApplicationVpcConfigurationResponse {
|
|
1897
|
+
|
|
1898
|
+
const filterSensitiveLog: (obj: DeleteApplicationVpcConfigurationResponse) => any;
|
|
1899
|
+
}
|
|
1900
|
+
export interface DescribeApplicationRequest {
|
|
1901
|
+
|
|
1902
|
+
ApplicationName: string | undefined;
|
|
1903
|
+
|
|
1904
|
+
IncludeAdditionalDetails?: boolean;
|
|
1905
|
+
}
|
|
1906
|
+
export declare namespace DescribeApplicationRequest {
|
|
1907
|
+
|
|
1908
|
+
const filterSensitiveLog: (obj: DescribeApplicationRequest) => any;
|
|
1909
|
+
}
|
|
1910
|
+
export interface DescribeApplicationResponse {
|
|
1911
|
+
|
|
1912
|
+
ApplicationDetail: ApplicationDetail | undefined;
|
|
1913
|
+
}
|
|
1914
|
+
export declare namespace DescribeApplicationResponse {
|
|
1915
|
+
|
|
1916
|
+
const filterSensitiveLog: (obj: DescribeApplicationResponse) => any;
|
|
1917
|
+
}
|
|
1918
|
+
export interface DescribeApplicationSnapshotRequest {
|
|
1919
|
+
|
|
1920
|
+
ApplicationName: string | undefined;
|
|
1921
|
+
|
|
1922
|
+
SnapshotName: string | undefined;
|
|
1923
|
+
}
|
|
1924
|
+
export declare namespace DescribeApplicationSnapshotRequest {
|
|
1925
|
+
|
|
1926
|
+
const filterSensitiveLog: (obj: DescribeApplicationSnapshotRequest) => any;
|
|
1927
|
+
}
|
|
1928
|
+
export declare enum SnapshotStatus {
|
|
1929
|
+
CREATING = "CREATING",
|
|
1930
|
+
DELETING = "DELETING",
|
|
1931
|
+
FAILED = "FAILED",
|
|
1932
|
+
READY = "READY"
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
export interface SnapshotDetails {
|
|
1936
|
+
|
|
1937
|
+
SnapshotName: string | undefined;
|
|
1938
|
+
|
|
1939
|
+
SnapshotStatus: SnapshotStatus | string | undefined;
|
|
1940
|
+
|
|
1941
|
+
ApplicationVersionId: number | undefined;
|
|
1942
|
+
|
|
1943
|
+
SnapshotCreationTimestamp?: Date;
|
|
1944
|
+
}
|
|
1945
|
+
export declare namespace SnapshotDetails {
|
|
1946
|
+
|
|
1947
|
+
const filterSensitiveLog: (obj: SnapshotDetails) => any;
|
|
1948
|
+
}
|
|
1949
|
+
export interface DescribeApplicationSnapshotResponse {
|
|
1950
|
+
|
|
1951
|
+
SnapshotDetails: SnapshotDetails | undefined;
|
|
1952
|
+
}
|
|
1953
|
+
export declare namespace DescribeApplicationSnapshotResponse {
|
|
1954
|
+
|
|
1955
|
+
const filterSensitiveLog: (obj: DescribeApplicationSnapshotResponse) => any;
|
|
1956
|
+
}
|
|
1957
|
+
export interface DescribeApplicationVersionRequest {
|
|
1958
|
+
|
|
1959
|
+
ApplicationName: string | undefined;
|
|
1960
|
+
|
|
1961
|
+
ApplicationVersionId: number | undefined;
|
|
1962
|
+
}
|
|
1963
|
+
export declare namespace DescribeApplicationVersionRequest {
|
|
1964
|
+
|
|
1965
|
+
const filterSensitiveLog: (obj: DescribeApplicationVersionRequest) => any;
|
|
1966
|
+
}
|
|
1967
|
+
export interface DescribeApplicationVersionResponse {
|
|
1968
|
+
|
|
1969
|
+
ApplicationVersionDetail?: ApplicationDetail;
|
|
1970
|
+
}
|
|
1971
|
+
export declare namespace DescribeApplicationVersionResponse {
|
|
1972
|
+
|
|
1973
|
+
const filterSensitiveLog: (obj: DescribeApplicationVersionResponse) => any;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
export interface S3Configuration {
|
|
1977
|
+
|
|
1978
|
+
BucketARN: string | undefined;
|
|
1979
|
+
|
|
1980
|
+
FileKey: string | undefined;
|
|
1981
|
+
}
|
|
1982
|
+
export declare namespace S3Configuration {
|
|
1983
|
+
|
|
1984
|
+
const filterSensitiveLog: (obj: S3Configuration) => any;
|
|
1985
|
+
}
|
|
1986
|
+
export interface DiscoverInputSchemaRequest {
|
|
1987
|
+
|
|
1988
|
+
ResourceARN?: string;
|
|
1989
|
+
|
|
1990
|
+
ServiceExecutionRole: string | undefined;
|
|
1991
|
+
|
|
1992
|
+
InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
|
|
1993
|
+
|
|
1994
|
+
S3Configuration?: S3Configuration;
|
|
1995
|
+
|
|
1996
|
+
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
1997
|
+
}
|
|
1998
|
+
export declare namespace DiscoverInputSchemaRequest {
|
|
1999
|
+
|
|
2000
|
+
const filterSensitiveLog: (obj: DiscoverInputSchemaRequest) => any;
|
|
2001
|
+
}
|
|
2002
|
+
export interface DiscoverInputSchemaResponse {
|
|
2003
|
+
|
|
2004
|
+
InputSchema?: SourceSchema;
|
|
2005
|
+
|
|
2006
|
+
ParsedInputRecords?: string[][];
|
|
2007
|
+
|
|
2008
|
+
ProcessedInputRecords?: string[];
|
|
2009
|
+
|
|
2010
|
+
RawInputRecords?: string[];
|
|
2011
|
+
}
|
|
2012
|
+
export declare namespace DiscoverInputSchemaResponse {
|
|
2013
|
+
|
|
2014
|
+
const filterSensitiveLog: (obj: DiscoverInputSchemaResponse) => any;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
export interface ResourceProvisionedThroughputExceededException extends __SmithyException, $MetadataBearer {
|
|
2018
|
+
name: "ResourceProvisionedThroughputExceededException";
|
|
2019
|
+
$fault: "client";
|
|
2020
|
+
Message?: string;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
|
|
2024
|
+
name: "ServiceUnavailableException";
|
|
2025
|
+
$fault: "server";
|
|
2026
|
+
Message?: string;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
export interface UnableToDetectSchemaException extends __SmithyException, $MetadataBearer {
|
|
2030
|
+
name: "UnableToDetectSchemaException";
|
|
2031
|
+
$fault: "client";
|
|
2032
|
+
Message?: string;
|
|
2033
|
+
|
|
2034
|
+
RawInputRecords?: string[];
|
|
2035
|
+
|
|
2036
|
+
ProcessedInputRecords?: string[];
|
|
2037
|
+
}
|
|
2038
|
+
export interface ListApplicationsRequest {
|
|
2039
|
+
|
|
2040
|
+
Limit?: number;
|
|
2041
|
+
|
|
2042
|
+
NextToken?: string;
|
|
2043
|
+
}
|
|
2044
|
+
export declare namespace ListApplicationsRequest {
|
|
2045
|
+
|
|
2046
|
+
const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
2047
|
+
}
|
|
2048
|
+
export interface ListApplicationsResponse {
|
|
2049
|
+
|
|
2050
|
+
ApplicationSummaries: ApplicationSummary[] | undefined;
|
|
2051
|
+
|
|
2052
|
+
NextToken?: string;
|
|
2053
|
+
}
|
|
2054
|
+
export declare namespace ListApplicationsResponse {
|
|
2055
|
+
|
|
2056
|
+
const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
2057
|
+
}
|
|
2058
|
+
export interface ListApplicationSnapshotsRequest {
|
|
2059
|
+
|
|
2060
|
+
ApplicationName: string | undefined;
|
|
2061
|
+
|
|
2062
|
+
Limit?: number;
|
|
2063
|
+
|
|
2064
|
+
NextToken?: string;
|
|
2065
|
+
}
|
|
2066
|
+
export declare namespace ListApplicationSnapshotsRequest {
|
|
2067
|
+
|
|
2068
|
+
const filterSensitiveLog: (obj: ListApplicationSnapshotsRequest) => any;
|
|
2069
|
+
}
|
|
2070
|
+
export interface ListApplicationSnapshotsResponse {
|
|
2071
|
+
|
|
2072
|
+
SnapshotSummaries?: SnapshotDetails[];
|
|
2073
|
+
|
|
2074
|
+
NextToken?: string;
|
|
2075
|
+
}
|
|
2076
|
+
export declare namespace ListApplicationSnapshotsResponse {
|
|
2077
|
+
|
|
2078
|
+
const filterSensitiveLog: (obj: ListApplicationSnapshotsResponse) => any;
|
|
2079
|
+
}
|
|
2080
|
+
export interface ListApplicationVersionsRequest {
|
|
2081
|
+
|
|
2082
|
+
ApplicationName: string | undefined;
|
|
2083
|
+
|
|
2084
|
+
Limit?: number;
|
|
2085
|
+
|
|
2086
|
+
NextToken?: string;
|
|
2087
|
+
}
|
|
2088
|
+
export declare namespace ListApplicationVersionsRequest {
|
|
2089
|
+
|
|
2090
|
+
const filterSensitiveLog: (obj: ListApplicationVersionsRequest) => any;
|
|
2091
|
+
}
|
|
2092
|
+
export interface ListApplicationVersionsResponse {
|
|
2093
|
+
|
|
2094
|
+
ApplicationVersionSummaries?: ApplicationVersionSummary[];
|
|
2095
|
+
|
|
2096
|
+
NextToken?: string;
|
|
2097
|
+
}
|
|
2098
|
+
export declare namespace ListApplicationVersionsResponse {
|
|
2099
|
+
|
|
2100
|
+
const filterSensitiveLog: (obj: ListApplicationVersionsResponse) => any;
|
|
2101
|
+
}
|
|
2102
|
+
export interface ListTagsForResourceRequest {
|
|
2103
|
+
|
|
2104
|
+
ResourceARN: string | undefined;
|
|
2105
|
+
}
|
|
2106
|
+
export declare namespace ListTagsForResourceRequest {
|
|
2107
|
+
|
|
2108
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2109
|
+
}
|
|
2110
|
+
export interface ListTagsForResourceResponse {
|
|
2111
|
+
|
|
2112
|
+
Tags?: Tag[];
|
|
2113
|
+
}
|
|
2114
|
+
export declare namespace ListTagsForResourceResponse {
|
|
2115
|
+
|
|
2116
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2117
|
+
}
|
|
2118
|
+
export interface RollbackApplicationRequest {
|
|
2119
|
+
|
|
2120
|
+
ApplicationName: string | undefined;
|
|
2121
|
+
|
|
2122
|
+
CurrentApplicationVersionId: number | undefined;
|
|
2123
|
+
}
|
|
2124
|
+
export declare namespace RollbackApplicationRequest {
|
|
2125
|
+
|
|
2126
|
+
const filterSensitiveLog: (obj: RollbackApplicationRequest) => any;
|
|
2127
|
+
}
|
|
2128
|
+
export interface RollbackApplicationResponse {
|
|
2129
|
+
|
|
2130
|
+
ApplicationDetail: ApplicationDetail | undefined;
|
|
2131
|
+
}
|
|
2132
|
+
export declare namespace RollbackApplicationResponse {
|
|
2133
|
+
|
|
2134
|
+
const filterSensitiveLog: (obj: RollbackApplicationResponse) => any;
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
export interface SqlRunConfiguration {
|
|
2138
|
+
|
|
2139
|
+
InputId: string | undefined;
|
|
2140
|
+
|
|
2141
|
+
InputStartingPositionConfiguration: InputStartingPositionConfiguration | undefined;
|
|
2142
|
+
}
|
|
2143
|
+
export declare namespace SqlRunConfiguration {
|
|
2144
|
+
|
|
2145
|
+
const filterSensitiveLog: (obj: SqlRunConfiguration) => any;
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
export interface RunConfiguration {
|
|
2149
|
+
|
|
2150
|
+
FlinkRunConfiguration?: FlinkRunConfiguration;
|
|
2151
|
+
|
|
2152
|
+
SqlRunConfigurations?: SqlRunConfiguration[];
|
|
2153
|
+
|
|
2154
|
+
ApplicationRestoreConfiguration?: ApplicationRestoreConfiguration;
|
|
2155
|
+
}
|
|
2156
|
+
export declare namespace RunConfiguration {
|
|
2157
|
+
|
|
2158
|
+
const filterSensitiveLog: (obj: RunConfiguration) => any;
|
|
2159
|
+
}
|
|
2160
|
+
export interface StartApplicationRequest {
|
|
2161
|
+
|
|
2162
|
+
ApplicationName: string | undefined;
|
|
2163
|
+
|
|
2164
|
+
RunConfiguration?: RunConfiguration;
|
|
2165
|
+
}
|
|
2166
|
+
export declare namespace StartApplicationRequest {
|
|
2167
|
+
|
|
2168
|
+
const filterSensitiveLog: (obj: StartApplicationRequest) => any;
|
|
2169
|
+
}
|
|
2170
|
+
export interface StartApplicationResponse {
|
|
2171
|
+
}
|
|
2172
|
+
export declare namespace StartApplicationResponse {
|
|
2173
|
+
|
|
2174
|
+
const filterSensitiveLog: (obj: StartApplicationResponse) => any;
|
|
2175
|
+
}
|
|
2176
|
+
export interface StopApplicationRequest {
|
|
2177
|
+
|
|
2178
|
+
ApplicationName: string | undefined;
|
|
2179
|
+
|
|
2180
|
+
Force?: boolean;
|
|
2181
|
+
}
|
|
2182
|
+
export declare namespace StopApplicationRequest {
|
|
2183
|
+
|
|
2184
|
+
const filterSensitiveLog: (obj: StopApplicationRequest) => any;
|
|
2185
|
+
}
|
|
2186
|
+
export interface StopApplicationResponse {
|
|
2187
|
+
}
|
|
2188
|
+
export declare namespace StopApplicationResponse {
|
|
2189
|
+
|
|
2190
|
+
const filterSensitiveLog: (obj: StopApplicationResponse) => any;
|
|
2191
|
+
}
|
|
2192
|
+
export interface TagResourceRequest {
|
|
2193
|
+
|
|
2194
|
+
ResourceARN: string | undefined;
|
|
2195
|
+
|
|
2196
|
+
Tags: Tag[] | undefined;
|
|
2197
|
+
}
|
|
2198
|
+
export declare namespace TagResourceRequest {
|
|
2199
|
+
|
|
2200
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2201
|
+
}
|
|
2202
|
+
export interface TagResourceResponse {
|
|
2203
|
+
}
|
|
2204
|
+
export declare namespace TagResourceResponse {
|
|
2205
|
+
|
|
2206
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2207
|
+
}
|
|
2208
|
+
export interface UntagResourceRequest {
|
|
2209
|
+
|
|
2210
|
+
ResourceARN: string | undefined;
|
|
2211
|
+
|
|
2212
|
+
TagKeys: string[] | undefined;
|
|
2213
|
+
}
|
|
2214
|
+
export declare namespace UntagResourceRequest {
|
|
2215
|
+
|
|
2216
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2217
|
+
}
|
|
2218
|
+
export interface UntagResourceResponse {
|
|
2219
|
+
}
|
|
2220
|
+
export declare namespace UntagResourceResponse {
|
|
2221
|
+
|
|
2222
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
export interface RunConfigurationUpdate {
|
|
2226
|
+
|
|
2227
|
+
FlinkRunConfiguration?: FlinkRunConfiguration;
|
|
2228
|
+
|
|
2229
|
+
ApplicationRestoreConfiguration?: ApplicationRestoreConfiguration;
|
|
2230
|
+
}
|
|
2231
|
+
export declare namespace RunConfigurationUpdate {
|
|
2232
|
+
|
|
2233
|
+
const filterSensitiveLog: (obj: RunConfigurationUpdate) => any;
|
|
2234
|
+
}
|
|
2235
|
+
export interface UpdateApplicationRequest {
|
|
2236
|
+
|
|
2237
|
+
ApplicationName: string | undefined;
|
|
2238
|
+
|
|
2239
|
+
CurrentApplicationVersionId?: number;
|
|
2240
|
+
|
|
2241
|
+
ApplicationConfigurationUpdate?: ApplicationConfigurationUpdate;
|
|
2242
|
+
|
|
2243
|
+
ServiceExecutionRoleUpdate?: string;
|
|
2244
|
+
|
|
2245
|
+
RunConfigurationUpdate?: RunConfigurationUpdate;
|
|
2246
|
+
|
|
2247
|
+
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[];
|
|
2248
|
+
|
|
2249
|
+
ConditionalToken?: string;
|
|
2250
|
+
}
|
|
2251
|
+
export declare namespace UpdateApplicationRequest {
|
|
2252
|
+
|
|
2253
|
+
const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
2254
|
+
}
|
|
2255
|
+
export interface UpdateApplicationResponse {
|
|
2256
|
+
|
|
2257
|
+
ApplicationDetail: ApplicationDetail | undefined;
|
|
2258
|
+
}
|
|
2259
|
+
export declare namespace UpdateApplicationResponse {
|
|
2260
|
+
|
|
2261
|
+
const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
|
|
2262
|
+
}
|
|
2263
|
+
export interface UpdateApplicationMaintenanceConfigurationRequest {
|
|
2264
|
+
|
|
2265
|
+
ApplicationName: string | undefined;
|
|
2266
|
+
|
|
2267
|
+
ApplicationMaintenanceConfigurationUpdate: ApplicationMaintenanceConfigurationUpdate | undefined;
|
|
2268
|
+
}
|
|
2269
|
+
export declare namespace UpdateApplicationMaintenanceConfigurationRequest {
|
|
2270
|
+
|
|
2271
|
+
const filterSensitiveLog: (obj: UpdateApplicationMaintenanceConfigurationRequest) => any;
|
|
2272
|
+
}
|
|
2273
|
+
export interface UpdateApplicationMaintenanceConfigurationResponse {
|
|
2274
|
+
|
|
2275
|
+
ApplicationARN?: string;
|
|
2276
|
+
|
|
2277
|
+
ApplicationMaintenanceConfigurationDescription?: ApplicationMaintenanceConfigurationDescription;
|
|
2278
|
+
}
|
|
2279
|
+
export declare namespace UpdateApplicationMaintenanceConfigurationResponse {
|
|
2280
|
+
|
|
2281
|
+
const filterSensitiveLog: (obj: UpdateApplicationMaintenanceConfigurationResponse) => any;
|
|
2282
|
+
}
|