@aws-sdk/client-kinesis-analytics 3.170.0 → 3.178.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 +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/KinesisAnalytics.d.ts +0 -20
- package/dist-types/ts3.4/KinesisAnalyticsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/KinesisAnalyticsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -331
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,24 +1,18 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException";
|
|
3
|
-
|
|
4
3
|
export interface CloudWatchLoggingOption {
|
|
5
4
|
LogStreamARN: string | undefined;
|
|
6
|
-
|
|
7
5
|
RoleARN: string | undefined;
|
|
8
6
|
}
|
|
9
7
|
export interface AddApplicationCloudWatchLoggingOptionRequest {
|
|
10
8
|
ApplicationName: string | undefined;
|
|
11
|
-
|
|
12
9
|
CurrentApplicationVersionId: number | undefined;
|
|
13
|
-
|
|
14
10
|
CloudWatchLoggingOption: CloudWatchLoggingOption | undefined;
|
|
15
11
|
}
|
|
16
12
|
export interface AddApplicationCloudWatchLoggingOptionResponse {}
|
|
17
|
-
|
|
18
13
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
19
14
|
readonly name: "ConcurrentModificationException";
|
|
20
15
|
readonly $fault: "client";
|
|
21
|
-
|
|
22
16
|
constructor(
|
|
23
17
|
opts: __ExceptionOptionType<
|
|
24
18
|
ConcurrentModificationException,
|
|
@@ -26,222 +20,152 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
26
20
|
>
|
|
27
21
|
);
|
|
28
22
|
}
|
|
29
|
-
|
|
30
23
|
export declare class InvalidArgumentException extends __BaseException {
|
|
31
24
|
readonly name: "InvalidArgumentException";
|
|
32
25
|
readonly $fault: "client";
|
|
33
|
-
|
|
34
26
|
constructor(
|
|
35
27
|
opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
|
|
36
28
|
);
|
|
37
29
|
}
|
|
38
|
-
|
|
39
30
|
export declare class ResourceInUseException extends __BaseException {
|
|
40
31
|
readonly name: "ResourceInUseException";
|
|
41
32
|
readonly $fault: "client";
|
|
42
|
-
|
|
43
33
|
constructor(
|
|
44
34
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
45
35
|
);
|
|
46
36
|
}
|
|
47
|
-
|
|
48
37
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
49
38
|
readonly name: "ResourceNotFoundException";
|
|
50
39
|
readonly $fault: "client";
|
|
51
|
-
|
|
52
40
|
constructor(
|
|
53
41
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
54
42
|
);
|
|
55
43
|
}
|
|
56
|
-
|
|
57
44
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
58
45
|
readonly name: "UnsupportedOperationException";
|
|
59
46
|
readonly $fault: "client";
|
|
60
|
-
|
|
61
47
|
constructor(
|
|
62
48
|
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
63
49
|
);
|
|
64
50
|
}
|
|
65
|
-
|
|
66
51
|
export interface InputParallelism {
|
|
67
52
|
Count?: number;
|
|
68
53
|
}
|
|
69
|
-
|
|
70
54
|
export interface InputLambdaProcessor {
|
|
71
55
|
ResourceARN: string | undefined;
|
|
72
|
-
|
|
73
56
|
RoleARN: string | undefined;
|
|
74
57
|
}
|
|
75
|
-
|
|
76
58
|
export interface InputProcessingConfiguration {
|
|
77
59
|
InputLambdaProcessor: InputLambdaProcessor | undefined;
|
|
78
60
|
}
|
|
79
|
-
|
|
80
61
|
export interface RecordColumn {
|
|
81
62
|
Name: string | undefined;
|
|
82
|
-
|
|
83
63
|
Mapping?: string;
|
|
84
|
-
|
|
85
64
|
SqlType: string | undefined;
|
|
86
65
|
}
|
|
87
|
-
|
|
88
66
|
export interface CSVMappingParameters {
|
|
89
67
|
RecordRowDelimiter: string | undefined;
|
|
90
|
-
|
|
91
68
|
RecordColumnDelimiter: string | undefined;
|
|
92
69
|
}
|
|
93
|
-
|
|
94
70
|
export interface JSONMappingParameters {
|
|
95
71
|
RecordRowPath: string | undefined;
|
|
96
72
|
}
|
|
97
|
-
|
|
98
73
|
export interface MappingParameters {
|
|
99
74
|
JSONMappingParameters?: JSONMappingParameters;
|
|
100
|
-
|
|
101
75
|
CSVMappingParameters?: CSVMappingParameters;
|
|
102
76
|
}
|
|
103
77
|
export declare enum RecordFormatType {
|
|
104
78
|
CSV = "CSV",
|
|
105
79
|
JSON = "JSON",
|
|
106
80
|
}
|
|
107
|
-
|
|
108
81
|
export interface RecordFormat {
|
|
109
82
|
RecordFormatType: RecordFormatType | string | undefined;
|
|
110
|
-
|
|
111
83
|
MappingParameters?: MappingParameters;
|
|
112
84
|
}
|
|
113
|
-
|
|
114
85
|
export interface SourceSchema {
|
|
115
86
|
RecordFormat: RecordFormat | undefined;
|
|
116
|
-
|
|
117
87
|
RecordEncoding?: string;
|
|
118
|
-
|
|
119
88
|
RecordColumns: RecordColumn[] | undefined;
|
|
120
89
|
}
|
|
121
|
-
|
|
122
90
|
export interface KinesisFirehoseInput {
|
|
123
91
|
ResourceARN: string | undefined;
|
|
124
|
-
|
|
125
92
|
RoleARN: string | undefined;
|
|
126
93
|
}
|
|
127
|
-
|
|
128
94
|
export interface KinesisStreamsInput {
|
|
129
95
|
ResourceARN: string | undefined;
|
|
130
|
-
|
|
131
96
|
RoleARN: string | undefined;
|
|
132
97
|
}
|
|
133
|
-
|
|
134
98
|
export interface Input {
|
|
135
99
|
NamePrefix: string | undefined;
|
|
136
|
-
|
|
137
100
|
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
138
|
-
|
|
139
101
|
KinesisStreamsInput?: KinesisStreamsInput;
|
|
140
|
-
|
|
141
102
|
KinesisFirehoseInput?: KinesisFirehoseInput;
|
|
142
|
-
|
|
143
103
|
InputParallelism?: InputParallelism;
|
|
144
|
-
|
|
145
104
|
InputSchema: SourceSchema | undefined;
|
|
146
105
|
}
|
|
147
|
-
|
|
148
106
|
export interface AddApplicationInputRequest {
|
|
149
107
|
ApplicationName: string | undefined;
|
|
150
|
-
|
|
151
108
|
CurrentApplicationVersionId: number | undefined;
|
|
152
|
-
|
|
153
109
|
Input: Input | undefined;
|
|
154
110
|
}
|
|
155
|
-
|
|
156
111
|
export interface AddApplicationInputResponse {}
|
|
157
|
-
|
|
158
112
|
export declare class CodeValidationException extends __BaseException {
|
|
159
113
|
readonly name: "CodeValidationException";
|
|
160
114
|
readonly $fault: "client";
|
|
161
|
-
|
|
162
115
|
constructor(
|
|
163
116
|
opts: __ExceptionOptionType<CodeValidationException, __BaseException>
|
|
164
117
|
);
|
|
165
118
|
}
|
|
166
119
|
export interface AddApplicationInputProcessingConfigurationRequest {
|
|
167
120
|
ApplicationName: string | undefined;
|
|
168
|
-
|
|
169
121
|
CurrentApplicationVersionId: number | undefined;
|
|
170
|
-
|
|
171
122
|
InputId: string | undefined;
|
|
172
|
-
|
|
173
123
|
InputProcessingConfiguration: InputProcessingConfiguration | undefined;
|
|
174
124
|
}
|
|
175
125
|
export interface AddApplicationInputProcessingConfigurationResponse {}
|
|
176
|
-
|
|
177
126
|
export interface DestinationSchema {
|
|
178
127
|
RecordFormatType: RecordFormatType | string | undefined;
|
|
179
128
|
}
|
|
180
|
-
|
|
181
129
|
export interface KinesisFirehoseOutput {
|
|
182
130
|
ResourceARN: string | undefined;
|
|
183
|
-
|
|
184
131
|
RoleARN: string | undefined;
|
|
185
132
|
}
|
|
186
|
-
|
|
187
133
|
export interface KinesisStreamsOutput {
|
|
188
134
|
ResourceARN: string | undefined;
|
|
189
|
-
|
|
190
135
|
RoleARN: string | undefined;
|
|
191
136
|
}
|
|
192
|
-
|
|
193
137
|
export interface LambdaOutput {
|
|
194
138
|
ResourceARN: string | undefined;
|
|
195
|
-
|
|
196
139
|
RoleARN: string | undefined;
|
|
197
140
|
}
|
|
198
|
-
|
|
199
141
|
export interface Output {
|
|
200
142
|
Name: string | undefined;
|
|
201
|
-
|
|
202
143
|
KinesisStreamsOutput?: KinesisStreamsOutput;
|
|
203
|
-
|
|
204
144
|
KinesisFirehoseOutput?: KinesisFirehoseOutput;
|
|
205
|
-
|
|
206
145
|
LambdaOutput?: LambdaOutput;
|
|
207
|
-
|
|
208
146
|
DestinationSchema: DestinationSchema | undefined;
|
|
209
147
|
}
|
|
210
|
-
|
|
211
148
|
export interface AddApplicationOutputRequest {
|
|
212
149
|
ApplicationName: string | undefined;
|
|
213
|
-
|
|
214
150
|
CurrentApplicationVersionId: number | undefined;
|
|
215
|
-
|
|
216
151
|
Output: Output | undefined;
|
|
217
152
|
}
|
|
218
|
-
|
|
219
153
|
export interface AddApplicationOutputResponse {}
|
|
220
|
-
|
|
221
154
|
export interface S3ReferenceDataSource {
|
|
222
155
|
BucketARN: string | undefined;
|
|
223
|
-
|
|
224
156
|
FileKey: string | undefined;
|
|
225
|
-
|
|
226
157
|
ReferenceRoleARN: string | undefined;
|
|
227
158
|
}
|
|
228
|
-
|
|
229
159
|
export interface ReferenceDataSource {
|
|
230
160
|
TableName: string | undefined;
|
|
231
|
-
|
|
232
161
|
S3ReferenceDataSource?: S3ReferenceDataSource;
|
|
233
|
-
|
|
234
162
|
ReferenceSchema: SourceSchema | undefined;
|
|
235
163
|
}
|
|
236
|
-
|
|
237
164
|
export interface AddApplicationReferenceDataSourceRequest {
|
|
238
165
|
ApplicationName: string | undefined;
|
|
239
|
-
|
|
240
166
|
CurrentApplicationVersionId: number | undefined;
|
|
241
|
-
|
|
242
167
|
ReferenceDataSource: ReferenceDataSource | undefined;
|
|
243
168
|
}
|
|
244
|
-
|
|
245
169
|
export interface AddApplicationReferenceDataSourceResponse {}
|
|
246
170
|
export declare enum ApplicationStatus {
|
|
247
171
|
DELETING = "DELETING",
|
|
@@ -251,21 +175,15 @@ export declare enum ApplicationStatus {
|
|
|
251
175
|
STOPPING = "STOPPING",
|
|
252
176
|
UPDATING = "UPDATING",
|
|
253
177
|
}
|
|
254
|
-
|
|
255
178
|
export interface CloudWatchLoggingOptionDescription {
|
|
256
179
|
CloudWatchLoggingOptionId?: string;
|
|
257
|
-
|
|
258
180
|
LogStreamARN: string | undefined;
|
|
259
|
-
|
|
260
181
|
RoleARN: string | undefined;
|
|
261
182
|
}
|
|
262
|
-
|
|
263
183
|
export interface InputLambdaProcessorDescription {
|
|
264
184
|
ResourceARN?: string;
|
|
265
|
-
|
|
266
185
|
RoleARN?: string;
|
|
267
186
|
}
|
|
268
|
-
|
|
269
187
|
export interface InputProcessingConfigurationDescription {
|
|
270
188
|
InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
|
|
271
189
|
}
|
|
@@ -274,376 +192,241 @@ export declare enum InputStartingPosition {
|
|
|
274
192
|
NOW = "NOW",
|
|
275
193
|
TRIM_HORIZON = "TRIM_HORIZON",
|
|
276
194
|
}
|
|
277
|
-
|
|
278
195
|
export interface InputStartingPositionConfiguration {
|
|
279
196
|
InputStartingPosition?: InputStartingPosition | string;
|
|
280
197
|
}
|
|
281
|
-
|
|
282
198
|
export interface KinesisFirehoseInputDescription {
|
|
283
199
|
ResourceARN?: string;
|
|
284
|
-
|
|
285
200
|
RoleARN?: string;
|
|
286
201
|
}
|
|
287
|
-
|
|
288
202
|
export interface KinesisStreamsInputDescription {
|
|
289
203
|
ResourceARN?: string;
|
|
290
|
-
|
|
291
204
|
RoleARN?: string;
|
|
292
205
|
}
|
|
293
|
-
|
|
294
206
|
export interface InputDescription {
|
|
295
207
|
InputId?: string;
|
|
296
|
-
|
|
297
208
|
NamePrefix?: string;
|
|
298
|
-
|
|
299
209
|
InAppStreamNames?: string[];
|
|
300
|
-
|
|
301
210
|
InputProcessingConfigurationDescription?: InputProcessingConfigurationDescription;
|
|
302
|
-
|
|
303
211
|
KinesisStreamsInputDescription?: KinesisStreamsInputDescription;
|
|
304
|
-
|
|
305
212
|
KinesisFirehoseInputDescription?: KinesisFirehoseInputDescription;
|
|
306
|
-
|
|
307
213
|
InputSchema?: SourceSchema;
|
|
308
|
-
|
|
309
214
|
InputParallelism?: InputParallelism;
|
|
310
|
-
|
|
311
215
|
InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
|
|
312
216
|
}
|
|
313
|
-
|
|
314
217
|
export interface KinesisFirehoseOutputDescription {
|
|
315
218
|
ResourceARN?: string;
|
|
316
|
-
|
|
317
219
|
RoleARN?: string;
|
|
318
220
|
}
|
|
319
|
-
|
|
320
221
|
export interface KinesisStreamsOutputDescription {
|
|
321
222
|
ResourceARN?: string;
|
|
322
|
-
|
|
323
223
|
RoleARN?: string;
|
|
324
224
|
}
|
|
325
|
-
|
|
326
225
|
export interface LambdaOutputDescription {
|
|
327
226
|
ResourceARN?: string;
|
|
328
|
-
|
|
329
227
|
RoleARN?: string;
|
|
330
228
|
}
|
|
331
|
-
|
|
332
229
|
export interface OutputDescription {
|
|
333
230
|
OutputId?: string;
|
|
334
|
-
|
|
335
231
|
Name?: string;
|
|
336
|
-
|
|
337
232
|
KinesisStreamsOutputDescription?: KinesisStreamsOutputDescription;
|
|
338
|
-
|
|
339
233
|
KinesisFirehoseOutputDescription?: KinesisFirehoseOutputDescription;
|
|
340
|
-
|
|
341
234
|
LambdaOutputDescription?: LambdaOutputDescription;
|
|
342
|
-
|
|
343
235
|
DestinationSchema?: DestinationSchema;
|
|
344
236
|
}
|
|
345
|
-
|
|
346
237
|
export interface S3ReferenceDataSourceDescription {
|
|
347
238
|
BucketARN: string | undefined;
|
|
348
|
-
|
|
349
239
|
FileKey: string | undefined;
|
|
350
|
-
|
|
351
240
|
ReferenceRoleARN: string | undefined;
|
|
352
241
|
}
|
|
353
|
-
|
|
354
242
|
export interface ReferenceDataSourceDescription {
|
|
355
243
|
ReferenceId: string | undefined;
|
|
356
|
-
|
|
357
244
|
TableName: string | undefined;
|
|
358
|
-
|
|
359
245
|
S3ReferenceDataSourceDescription:
|
|
360
246
|
| S3ReferenceDataSourceDescription
|
|
361
247
|
| undefined;
|
|
362
|
-
|
|
363
248
|
ReferenceSchema?: SourceSchema;
|
|
364
249
|
}
|
|
365
|
-
|
|
366
250
|
export interface ApplicationDetail {
|
|
367
251
|
ApplicationName: string | undefined;
|
|
368
|
-
|
|
369
252
|
ApplicationDescription?: string;
|
|
370
|
-
|
|
371
253
|
ApplicationARN: string | undefined;
|
|
372
|
-
|
|
373
254
|
ApplicationStatus: ApplicationStatus | string | undefined;
|
|
374
|
-
|
|
375
255
|
CreateTimestamp?: Date;
|
|
376
|
-
|
|
377
256
|
LastUpdateTimestamp?: Date;
|
|
378
|
-
|
|
379
257
|
InputDescriptions?: InputDescription[];
|
|
380
|
-
|
|
381
258
|
OutputDescriptions?: OutputDescription[];
|
|
382
|
-
|
|
383
259
|
ReferenceDataSourceDescriptions?: ReferenceDataSourceDescription[];
|
|
384
|
-
|
|
385
260
|
CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescription[];
|
|
386
|
-
|
|
387
261
|
ApplicationCode?: string;
|
|
388
|
-
|
|
389
262
|
ApplicationVersionId: number | undefined;
|
|
390
263
|
}
|
|
391
|
-
|
|
392
264
|
export interface ApplicationSummary {
|
|
393
265
|
ApplicationName: string | undefined;
|
|
394
|
-
|
|
395
266
|
ApplicationARN: string | undefined;
|
|
396
|
-
|
|
397
267
|
ApplicationStatus: ApplicationStatus | string | undefined;
|
|
398
268
|
}
|
|
399
|
-
|
|
400
269
|
export interface CloudWatchLoggingOptionUpdate {
|
|
401
270
|
CloudWatchLoggingOptionId: string | undefined;
|
|
402
|
-
|
|
403
271
|
LogStreamARNUpdate?: string;
|
|
404
|
-
|
|
405
272
|
RoleARNUpdate?: string;
|
|
406
273
|
}
|
|
407
|
-
|
|
408
274
|
export interface InputParallelismUpdate {
|
|
409
275
|
CountUpdate?: number;
|
|
410
276
|
}
|
|
411
|
-
|
|
412
277
|
export interface InputLambdaProcessorUpdate {
|
|
413
278
|
ResourceARNUpdate?: string;
|
|
414
|
-
|
|
415
279
|
RoleARNUpdate?: string;
|
|
416
280
|
}
|
|
417
|
-
|
|
418
281
|
export interface InputProcessingConfigurationUpdate {
|
|
419
282
|
InputLambdaProcessorUpdate: InputLambdaProcessorUpdate | undefined;
|
|
420
283
|
}
|
|
421
|
-
|
|
422
284
|
export interface InputSchemaUpdate {
|
|
423
285
|
RecordFormatUpdate?: RecordFormat;
|
|
424
|
-
|
|
425
286
|
RecordEncodingUpdate?: string;
|
|
426
|
-
|
|
427
287
|
RecordColumnUpdates?: RecordColumn[];
|
|
428
288
|
}
|
|
429
|
-
|
|
430
289
|
export interface KinesisFirehoseInputUpdate {
|
|
431
290
|
ResourceARNUpdate?: string;
|
|
432
|
-
|
|
433
291
|
RoleARNUpdate?: string;
|
|
434
292
|
}
|
|
435
|
-
|
|
436
293
|
export interface KinesisStreamsInputUpdate {
|
|
437
294
|
ResourceARNUpdate?: string;
|
|
438
|
-
|
|
439
295
|
RoleARNUpdate?: string;
|
|
440
296
|
}
|
|
441
|
-
|
|
442
297
|
export interface InputUpdate {
|
|
443
298
|
InputId: string | undefined;
|
|
444
|
-
|
|
445
299
|
NamePrefixUpdate?: string;
|
|
446
|
-
|
|
447
300
|
InputProcessingConfigurationUpdate?: InputProcessingConfigurationUpdate;
|
|
448
|
-
|
|
449
301
|
KinesisStreamsInputUpdate?: KinesisStreamsInputUpdate;
|
|
450
|
-
|
|
451
302
|
KinesisFirehoseInputUpdate?: KinesisFirehoseInputUpdate;
|
|
452
|
-
|
|
453
303
|
InputSchemaUpdate?: InputSchemaUpdate;
|
|
454
|
-
|
|
455
304
|
InputParallelismUpdate?: InputParallelismUpdate;
|
|
456
305
|
}
|
|
457
|
-
|
|
458
306
|
export interface KinesisFirehoseOutputUpdate {
|
|
459
307
|
ResourceARNUpdate?: string;
|
|
460
|
-
|
|
461
308
|
RoleARNUpdate?: string;
|
|
462
309
|
}
|
|
463
|
-
|
|
464
310
|
export interface KinesisStreamsOutputUpdate {
|
|
465
311
|
ResourceARNUpdate?: string;
|
|
466
|
-
|
|
467
312
|
RoleARNUpdate?: string;
|
|
468
313
|
}
|
|
469
|
-
|
|
470
314
|
export interface LambdaOutputUpdate {
|
|
471
315
|
ResourceARNUpdate?: string;
|
|
472
|
-
|
|
473
316
|
RoleARNUpdate?: string;
|
|
474
317
|
}
|
|
475
|
-
|
|
476
318
|
export interface OutputUpdate {
|
|
477
319
|
OutputId: string | undefined;
|
|
478
|
-
|
|
479
320
|
NameUpdate?: string;
|
|
480
|
-
|
|
481
321
|
KinesisStreamsOutputUpdate?: KinesisStreamsOutputUpdate;
|
|
482
|
-
|
|
483
322
|
KinesisFirehoseOutputUpdate?: KinesisFirehoseOutputUpdate;
|
|
484
|
-
|
|
485
323
|
LambdaOutputUpdate?: LambdaOutputUpdate;
|
|
486
|
-
|
|
487
324
|
DestinationSchemaUpdate?: DestinationSchema;
|
|
488
325
|
}
|
|
489
|
-
|
|
490
326
|
export interface S3ReferenceDataSourceUpdate {
|
|
491
327
|
BucketARNUpdate?: string;
|
|
492
|
-
|
|
493
328
|
FileKeyUpdate?: string;
|
|
494
|
-
|
|
495
329
|
ReferenceRoleARNUpdate?: string;
|
|
496
330
|
}
|
|
497
|
-
|
|
498
331
|
export interface ReferenceDataSourceUpdate {
|
|
499
332
|
ReferenceId: string | undefined;
|
|
500
|
-
|
|
501
333
|
TableNameUpdate?: string;
|
|
502
|
-
|
|
503
334
|
S3ReferenceDataSourceUpdate?: S3ReferenceDataSourceUpdate;
|
|
504
|
-
|
|
505
335
|
ReferenceSchemaUpdate?: SourceSchema;
|
|
506
336
|
}
|
|
507
|
-
|
|
508
337
|
export interface ApplicationUpdate {
|
|
509
338
|
InputUpdates?: InputUpdate[];
|
|
510
|
-
|
|
511
339
|
ApplicationCodeUpdate?: string;
|
|
512
|
-
|
|
513
340
|
OutputUpdates?: OutputUpdate[];
|
|
514
|
-
|
|
515
341
|
ReferenceDataSourceUpdates?: ReferenceDataSourceUpdate[];
|
|
516
|
-
|
|
517
342
|
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[];
|
|
518
343
|
}
|
|
519
|
-
|
|
520
344
|
export interface Tag {
|
|
521
345
|
Key: string | undefined;
|
|
522
|
-
|
|
523
346
|
Value?: string;
|
|
524
347
|
}
|
|
525
|
-
|
|
526
348
|
export interface CreateApplicationRequest {
|
|
527
349
|
ApplicationName: string | undefined;
|
|
528
|
-
|
|
529
350
|
ApplicationDescription?: string;
|
|
530
|
-
|
|
531
351
|
Inputs?: Input[];
|
|
532
|
-
|
|
533
352
|
Outputs?: Output[];
|
|
534
|
-
|
|
535
353
|
CloudWatchLoggingOptions?: CloudWatchLoggingOption[];
|
|
536
|
-
|
|
537
354
|
ApplicationCode?: string;
|
|
538
|
-
|
|
539
355
|
Tags?: Tag[];
|
|
540
356
|
}
|
|
541
|
-
|
|
542
357
|
export interface CreateApplicationResponse {
|
|
543
358
|
ApplicationSummary: ApplicationSummary | undefined;
|
|
544
359
|
}
|
|
545
|
-
|
|
546
360
|
export declare class LimitExceededException extends __BaseException {
|
|
547
361
|
readonly name: "LimitExceededException";
|
|
548
362
|
readonly $fault: "client";
|
|
549
|
-
|
|
550
363
|
constructor(
|
|
551
364
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
552
365
|
);
|
|
553
366
|
}
|
|
554
|
-
|
|
555
367
|
export declare class TooManyTagsException extends __BaseException {
|
|
556
368
|
readonly name: "TooManyTagsException";
|
|
557
369
|
readonly $fault: "client";
|
|
558
|
-
|
|
559
370
|
constructor(
|
|
560
371
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
561
372
|
);
|
|
562
373
|
}
|
|
563
|
-
|
|
564
374
|
export interface DeleteApplicationRequest {
|
|
565
375
|
ApplicationName: string | undefined;
|
|
566
|
-
|
|
567
376
|
CreateTimestamp: Date | undefined;
|
|
568
377
|
}
|
|
569
|
-
|
|
570
378
|
export interface DeleteApplicationResponse {}
|
|
571
379
|
export interface DeleteApplicationCloudWatchLoggingOptionRequest {
|
|
572
380
|
ApplicationName: string | undefined;
|
|
573
|
-
|
|
574
381
|
CurrentApplicationVersionId: number | undefined;
|
|
575
|
-
|
|
576
382
|
CloudWatchLoggingOptionId: string | undefined;
|
|
577
383
|
}
|
|
578
384
|
export interface DeleteApplicationCloudWatchLoggingOptionResponse {}
|
|
579
385
|
export interface DeleteApplicationInputProcessingConfigurationRequest {
|
|
580
386
|
ApplicationName: string | undefined;
|
|
581
|
-
|
|
582
387
|
CurrentApplicationVersionId: number | undefined;
|
|
583
|
-
|
|
584
388
|
InputId: string | undefined;
|
|
585
389
|
}
|
|
586
390
|
export interface DeleteApplicationInputProcessingConfigurationResponse {}
|
|
587
|
-
|
|
588
391
|
export interface DeleteApplicationOutputRequest {
|
|
589
392
|
ApplicationName: string | undefined;
|
|
590
|
-
|
|
591
393
|
CurrentApplicationVersionId: number | undefined;
|
|
592
|
-
|
|
593
394
|
OutputId: string | undefined;
|
|
594
395
|
}
|
|
595
|
-
|
|
596
396
|
export interface DeleteApplicationOutputResponse {}
|
|
597
397
|
export interface DeleteApplicationReferenceDataSourceRequest {
|
|
598
398
|
ApplicationName: string | undefined;
|
|
599
|
-
|
|
600
399
|
CurrentApplicationVersionId: number | undefined;
|
|
601
|
-
|
|
602
400
|
ReferenceId: string | undefined;
|
|
603
401
|
}
|
|
604
402
|
export interface DeleteApplicationReferenceDataSourceResponse {}
|
|
605
|
-
|
|
606
403
|
export interface DescribeApplicationRequest {
|
|
607
404
|
ApplicationName: string | undefined;
|
|
608
405
|
}
|
|
609
|
-
|
|
610
406
|
export interface DescribeApplicationResponse {
|
|
611
407
|
ApplicationDetail: ApplicationDetail | undefined;
|
|
612
408
|
}
|
|
613
|
-
|
|
614
409
|
export interface S3Configuration {
|
|
615
410
|
RoleARN: string | undefined;
|
|
616
|
-
|
|
617
411
|
BucketARN: string | undefined;
|
|
618
|
-
|
|
619
412
|
FileKey: string | undefined;
|
|
620
413
|
}
|
|
621
414
|
export interface DiscoverInputSchemaRequest {
|
|
622
415
|
ResourceARN?: string;
|
|
623
|
-
|
|
624
416
|
RoleARN?: string;
|
|
625
|
-
|
|
626
417
|
InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
|
|
627
|
-
|
|
628
418
|
S3Configuration?: S3Configuration;
|
|
629
|
-
|
|
630
419
|
InputProcessingConfiguration?: InputProcessingConfiguration;
|
|
631
420
|
}
|
|
632
|
-
|
|
633
421
|
export interface DiscoverInputSchemaResponse {
|
|
634
422
|
InputSchema?: SourceSchema;
|
|
635
|
-
|
|
636
423
|
ParsedInputRecords?: string[][];
|
|
637
|
-
|
|
638
424
|
ProcessedInputRecords?: string[];
|
|
639
|
-
|
|
640
425
|
RawInputRecords?: string[];
|
|
641
426
|
}
|
|
642
|
-
|
|
643
427
|
export declare class ResourceProvisionedThroughputExceededException extends __BaseException {
|
|
644
428
|
readonly name: "ResourceProvisionedThroughputExceededException";
|
|
645
429
|
readonly $fault: "client";
|
|
646
|
-
|
|
647
430
|
constructor(
|
|
648
431
|
opts: __ExceptionOptionType<
|
|
649
432
|
ResourceProvisionedThroughputExceededException,
|
|
@@ -651,39 +434,31 @@ export declare class ResourceProvisionedThroughputExceededException extends __Ba
|
|
|
651
434
|
>
|
|
652
435
|
);
|
|
653
436
|
}
|
|
654
|
-
|
|
655
437
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
656
438
|
readonly name: "ServiceUnavailableException";
|
|
657
439
|
readonly $fault: "server";
|
|
658
|
-
|
|
659
440
|
constructor(
|
|
660
441
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
661
442
|
);
|
|
662
443
|
}
|
|
663
|
-
|
|
664
444
|
export declare class UnableToDetectSchemaException extends __BaseException {
|
|
665
445
|
readonly name: "UnableToDetectSchemaException";
|
|
666
446
|
readonly $fault: "client";
|
|
667
447
|
RawInputRecords?: string[];
|
|
668
448
|
ProcessedInputRecords?: string[];
|
|
669
|
-
|
|
670
449
|
constructor(
|
|
671
450
|
opts: __ExceptionOptionType<UnableToDetectSchemaException, __BaseException>
|
|
672
451
|
);
|
|
673
452
|
}
|
|
674
|
-
|
|
675
453
|
export interface InputConfiguration {
|
|
676
454
|
Id: string | undefined;
|
|
677
|
-
|
|
678
455
|
InputStartingPositionConfiguration:
|
|
679
456
|
| InputStartingPositionConfiguration
|
|
680
457
|
| undefined;
|
|
681
458
|
}
|
|
682
|
-
|
|
683
459
|
export declare class InvalidApplicationConfigurationException extends __BaseException {
|
|
684
460
|
readonly name: "InvalidApplicationConfigurationException";
|
|
685
461
|
readonly $fault: "client";
|
|
686
|
-
|
|
687
462
|
constructor(
|
|
688
463
|
opts: __ExceptionOptionType<
|
|
689
464
|
InvalidApplicationConfigurationException,
|
|
@@ -691,16 +466,12 @@ export declare class InvalidApplicationConfigurationException extends __BaseExce
|
|
|
691
466
|
>
|
|
692
467
|
);
|
|
693
468
|
}
|
|
694
|
-
|
|
695
469
|
export interface ListApplicationsRequest {
|
|
696
470
|
Limit?: number;
|
|
697
|
-
|
|
698
471
|
ExclusiveStartApplicationName?: string;
|
|
699
472
|
}
|
|
700
|
-
|
|
701
473
|
export interface ListApplicationsResponse {
|
|
702
474
|
ApplicationSummaries: ApplicationSummary[] | undefined;
|
|
703
|
-
|
|
704
475
|
HasMoreApplications: boolean | undefined;
|
|
705
476
|
}
|
|
706
477
|
export interface ListTagsForResourceRequest {
|
|
@@ -709,391 +480,289 @@ export interface ListTagsForResourceRequest {
|
|
|
709
480
|
export interface ListTagsForResourceResponse {
|
|
710
481
|
Tags?: Tag[];
|
|
711
482
|
}
|
|
712
|
-
|
|
713
483
|
export interface StartApplicationRequest {
|
|
714
484
|
ApplicationName: string | undefined;
|
|
715
|
-
|
|
716
485
|
InputConfigurations: InputConfiguration[] | undefined;
|
|
717
486
|
}
|
|
718
|
-
|
|
719
487
|
export interface StartApplicationResponse {}
|
|
720
|
-
|
|
721
488
|
export interface StopApplicationRequest {
|
|
722
489
|
ApplicationName: string | undefined;
|
|
723
490
|
}
|
|
724
|
-
|
|
725
491
|
export interface StopApplicationResponse {}
|
|
726
492
|
export interface TagResourceRequest {
|
|
727
493
|
ResourceARN: string | undefined;
|
|
728
|
-
|
|
729
494
|
Tags: Tag[] | undefined;
|
|
730
495
|
}
|
|
731
496
|
export interface TagResourceResponse {}
|
|
732
497
|
export interface UntagResourceRequest {
|
|
733
498
|
ResourceARN: string | undefined;
|
|
734
|
-
|
|
735
499
|
TagKeys: string[] | undefined;
|
|
736
500
|
}
|
|
737
501
|
export interface UntagResourceResponse {}
|
|
738
502
|
export interface UpdateApplicationRequest {
|
|
739
503
|
ApplicationName: string | undefined;
|
|
740
|
-
|
|
741
504
|
CurrentApplicationVersionId: number | undefined;
|
|
742
|
-
|
|
743
505
|
ApplicationUpdate: ApplicationUpdate | undefined;
|
|
744
506
|
}
|
|
745
507
|
export interface UpdateApplicationResponse {}
|
|
746
|
-
|
|
747
508
|
export declare const CloudWatchLoggingOptionFilterSensitiveLog: (
|
|
748
509
|
obj: CloudWatchLoggingOption
|
|
749
510
|
) => any;
|
|
750
|
-
|
|
751
511
|
export declare const AddApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog: (
|
|
752
512
|
obj: AddApplicationCloudWatchLoggingOptionRequest
|
|
753
513
|
) => any;
|
|
754
|
-
|
|
755
514
|
export declare const AddApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog: (
|
|
756
515
|
obj: AddApplicationCloudWatchLoggingOptionResponse
|
|
757
516
|
) => any;
|
|
758
|
-
|
|
759
517
|
export declare const InputParallelismFilterSensitiveLog: (
|
|
760
518
|
obj: InputParallelism
|
|
761
519
|
) => any;
|
|
762
|
-
|
|
763
520
|
export declare const InputLambdaProcessorFilterSensitiveLog: (
|
|
764
521
|
obj: InputLambdaProcessor
|
|
765
522
|
) => any;
|
|
766
|
-
|
|
767
523
|
export declare const InputProcessingConfigurationFilterSensitiveLog: (
|
|
768
524
|
obj: InputProcessingConfiguration
|
|
769
525
|
) => any;
|
|
770
|
-
|
|
771
526
|
export declare const RecordColumnFilterSensitiveLog: (obj: RecordColumn) => any;
|
|
772
|
-
|
|
773
527
|
export declare const CSVMappingParametersFilterSensitiveLog: (
|
|
774
528
|
obj: CSVMappingParameters
|
|
775
529
|
) => any;
|
|
776
|
-
|
|
777
530
|
export declare const JSONMappingParametersFilterSensitiveLog: (
|
|
778
531
|
obj: JSONMappingParameters
|
|
779
532
|
) => any;
|
|
780
|
-
|
|
781
533
|
export declare const MappingParametersFilterSensitiveLog: (
|
|
782
534
|
obj: MappingParameters
|
|
783
535
|
) => any;
|
|
784
|
-
|
|
785
536
|
export declare const RecordFormatFilterSensitiveLog: (obj: RecordFormat) => any;
|
|
786
|
-
|
|
787
537
|
export declare const SourceSchemaFilterSensitiveLog: (obj: SourceSchema) => any;
|
|
788
|
-
|
|
789
538
|
export declare const KinesisFirehoseInputFilterSensitiveLog: (
|
|
790
539
|
obj: KinesisFirehoseInput
|
|
791
540
|
) => any;
|
|
792
|
-
|
|
793
541
|
export declare const KinesisStreamsInputFilterSensitiveLog: (
|
|
794
542
|
obj: KinesisStreamsInput
|
|
795
543
|
) => any;
|
|
796
|
-
|
|
797
544
|
export declare const InputFilterSensitiveLog: (obj: Input) => any;
|
|
798
|
-
|
|
799
545
|
export declare const AddApplicationInputRequestFilterSensitiveLog: (
|
|
800
546
|
obj: AddApplicationInputRequest
|
|
801
547
|
) => any;
|
|
802
|
-
|
|
803
548
|
export declare const AddApplicationInputResponseFilterSensitiveLog: (
|
|
804
549
|
obj: AddApplicationInputResponse
|
|
805
550
|
) => any;
|
|
806
|
-
|
|
807
551
|
export declare const AddApplicationInputProcessingConfigurationRequestFilterSensitiveLog: (
|
|
808
552
|
obj: AddApplicationInputProcessingConfigurationRequest
|
|
809
553
|
) => any;
|
|
810
|
-
|
|
811
554
|
export declare const AddApplicationInputProcessingConfigurationResponseFilterSensitiveLog: (
|
|
812
555
|
obj: AddApplicationInputProcessingConfigurationResponse
|
|
813
556
|
) => any;
|
|
814
|
-
|
|
815
557
|
export declare const DestinationSchemaFilterSensitiveLog: (
|
|
816
558
|
obj: DestinationSchema
|
|
817
559
|
) => any;
|
|
818
|
-
|
|
819
560
|
export declare const KinesisFirehoseOutputFilterSensitiveLog: (
|
|
820
561
|
obj: KinesisFirehoseOutput
|
|
821
562
|
) => any;
|
|
822
|
-
|
|
823
563
|
export declare const KinesisStreamsOutputFilterSensitiveLog: (
|
|
824
564
|
obj: KinesisStreamsOutput
|
|
825
565
|
) => any;
|
|
826
|
-
|
|
827
566
|
export declare const LambdaOutputFilterSensitiveLog: (obj: LambdaOutput) => any;
|
|
828
|
-
|
|
829
567
|
export declare const OutputFilterSensitiveLog: (obj: Output) => any;
|
|
830
|
-
|
|
831
568
|
export declare const AddApplicationOutputRequestFilterSensitiveLog: (
|
|
832
569
|
obj: AddApplicationOutputRequest
|
|
833
570
|
) => any;
|
|
834
|
-
|
|
835
571
|
export declare const AddApplicationOutputResponseFilterSensitiveLog: (
|
|
836
572
|
obj: AddApplicationOutputResponse
|
|
837
573
|
) => any;
|
|
838
|
-
|
|
839
574
|
export declare const S3ReferenceDataSourceFilterSensitiveLog: (
|
|
840
575
|
obj: S3ReferenceDataSource
|
|
841
576
|
) => any;
|
|
842
|
-
|
|
843
577
|
export declare const ReferenceDataSourceFilterSensitiveLog: (
|
|
844
578
|
obj: ReferenceDataSource
|
|
845
579
|
) => any;
|
|
846
|
-
|
|
847
580
|
export declare const AddApplicationReferenceDataSourceRequestFilterSensitiveLog: (
|
|
848
581
|
obj: AddApplicationReferenceDataSourceRequest
|
|
849
582
|
) => any;
|
|
850
|
-
|
|
851
583
|
export declare const AddApplicationReferenceDataSourceResponseFilterSensitiveLog: (
|
|
852
584
|
obj: AddApplicationReferenceDataSourceResponse
|
|
853
585
|
) => any;
|
|
854
|
-
|
|
855
586
|
export declare const CloudWatchLoggingOptionDescriptionFilterSensitiveLog: (
|
|
856
587
|
obj: CloudWatchLoggingOptionDescription
|
|
857
588
|
) => any;
|
|
858
|
-
|
|
859
589
|
export declare const InputLambdaProcessorDescriptionFilterSensitiveLog: (
|
|
860
590
|
obj: InputLambdaProcessorDescription
|
|
861
591
|
) => any;
|
|
862
|
-
|
|
863
592
|
export declare const InputProcessingConfigurationDescriptionFilterSensitiveLog: (
|
|
864
593
|
obj: InputProcessingConfigurationDescription
|
|
865
594
|
) => any;
|
|
866
|
-
|
|
867
595
|
export declare const InputStartingPositionConfigurationFilterSensitiveLog: (
|
|
868
596
|
obj: InputStartingPositionConfiguration
|
|
869
597
|
) => any;
|
|
870
|
-
|
|
871
598
|
export declare const KinesisFirehoseInputDescriptionFilterSensitiveLog: (
|
|
872
599
|
obj: KinesisFirehoseInputDescription
|
|
873
600
|
) => any;
|
|
874
|
-
|
|
875
601
|
export declare const KinesisStreamsInputDescriptionFilterSensitiveLog: (
|
|
876
602
|
obj: KinesisStreamsInputDescription
|
|
877
603
|
) => any;
|
|
878
|
-
|
|
879
604
|
export declare const InputDescriptionFilterSensitiveLog: (
|
|
880
605
|
obj: InputDescription
|
|
881
606
|
) => any;
|
|
882
|
-
|
|
883
607
|
export declare const KinesisFirehoseOutputDescriptionFilterSensitiveLog: (
|
|
884
608
|
obj: KinesisFirehoseOutputDescription
|
|
885
609
|
) => any;
|
|
886
|
-
|
|
887
610
|
export declare const KinesisStreamsOutputDescriptionFilterSensitiveLog: (
|
|
888
611
|
obj: KinesisStreamsOutputDescription
|
|
889
612
|
) => any;
|
|
890
|
-
|
|
891
613
|
export declare const LambdaOutputDescriptionFilterSensitiveLog: (
|
|
892
614
|
obj: LambdaOutputDescription
|
|
893
615
|
) => any;
|
|
894
|
-
|
|
895
616
|
export declare const OutputDescriptionFilterSensitiveLog: (
|
|
896
617
|
obj: OutputDescription
|
|
897
618
|
) => any;
|
|
898
|
-
|
|
899
619
|
export declare const S3ReferenceDataSourceDescriptionFilterSensitiveLog: (
|
|
900
620
|
obj: S3ReferenceDataSourceDescription
|
|
901
621
|
) => any;
|
|
902
|
-
|
|
903
622
|
export declare const ReferenceDataSourceDescriptionFilterSensitiveLog: (
|
|
904
623
|
obj: ReferenceDataSourceDescription
|
|
905
624
|
) => any;
|
|
906
|
-
|
|
907
625
|
export declare const ApplicationDetailFilterSensitiveLog: (
|
|
908
626
|
obj: ApplicationDetail
|
|
909
627
|
) => any;
|
|
910
|
-
|
|
911
628
|
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
912
629
|
obj: ApplicationSummary
|
|
913
630
|
) => any;
|
|
914
|
-
|
|
915
631
|
export declare const CloudWatchLoggingOptionUpdateFilterSensitiveLog: (
|
|
916
632
|
obj: CloudWatchLoggingOptionUpdate
|
|
917
633
|
) => any;
|
|
918
|
-
|
|
919
634
|
export declare const InputParallelismUpdateFilterSensitiveLog: (
|
|
920
635
|
obj: InputParallelismUpdate
|
|
921
636
|
) => any;
|
|
922
|
-
|
|
923
637
|
export declare const InputLambdaProcessorUpdateFilterSensitiveLog: (
|
|
924
638
|
obj: InputLambdaProcessorUpdate
|
|
925
639
|
) => any;
|
|
926
|
-
|
|
927
640
|
export declare const InputProcessingConfigurationUpdateFilterSensitiveLog: (
|
|
928
641
|
obj: InputProcessingConfigurationUpdate
|
|
929
642
|
) => any;
|
|
930
|
-
|
|
931
643
|
export declare const InputSchemaUpdateFilterSensitiveLog: (
|
|
932
644
|
obj: InputSchemaUpdate
|
|
933
645
|
) => any;
|
|
934
|
-
|
|
935
646
|
export declare const KinesisFirehoseInputUpdateFilterSensitiveLog: (
|
|
936
647
|
obj: KinesisFirehoseInputUpdate
|
|
937
648
|
) => any;
|
|
938
|
-
|
|
939
649
|
export declare const KinesisStreamsInputUpdateFilterSensitiveLog: (
|
|
940
650
|
obj: KinesisStreamsInputUpdate
|
|
941
651
|
) => any;
|
|
942
|
-
|
|
943
652
|
export declare const InputUpdateFilterSensitiveLog: (obj: InputUpdate) => any;
|
|
944
|
-
|
|
945
653
|
export declare const KinesisFirehoseOutputUpdateFilterSensitiveLog: (
|
|
946
654
|
obj: KinesisFirehoseOutputUpdate
|
|
947
655
|
) => any;
|
|
948
|
-
|
|
949
656
|
export declare const KinesisStreamsOutputUpdateFilterSensitiveLog: (
|
|
950
657
|
obj: KinesisStreamsOutputUpdate
|
|
951
658
|
) => any;
|
|
952
|
-
|
|
953
659
|
export declare const LambdaOutputUpdateFilterSensitiveLog: (
|
|
954
660
|
obj: LambdaOutputUpdate
|
|
955
661
|
) => any;
|
|
956
|
-
|
|
957
662
|
export declare const OutputUpdateFilterSensitiveLog: (obj: OutputUpdate) => any;
|
|
958
|
-
|
|
959
663
|
export declare const S3ReferenceDataSourceUpdateFilterSensitiveLog: (
|
|
960
664
|
obj: S3ReferenceDataSourceUpdate
|
|
961
665
|
) => any;
|
|
962
|
-
|
|
963
666
|
export declare const ReferenceDataSourceUpdateFilterSensitiveLog: (
|
|
964
667
|
obj: ReferenceDataSourceUpdate
|
|
965
668
|
) => any;
|
|
966
|
-
|
|
967
669
|
export declare const ApplicationUpdateFilterSensitiveLog: (
|
|
968
670
|
obj: ApplicationUpdate
|
|
969
671
|
) => any;
|
|
970
|
-
|
|
971
672
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
972
|
-
|
|
973
673
|
export declare const CreateApplicationRequestFilterSensitiveLog: (
|
|
974
674
|
obj: CreateApplicationRequest
|
|
975
675
|
) => any;
|
|
976
|
-
|
|
977
676
|
export declare const CreateApplicationResponseFilterSensitiveLog: (
|
|
978
677
|
obj: CreateApplicationResponse
|
|
979
678
|
) => any;
|
|
980
|
-
|
|
981
679
|
export declare const DeleteApplicationRequestFilterSensitiveLog: (
|
|
982
680
|
obj: DeleteApplicationRequest
|
|
983
681
|
) => any;
|
|
984
|
-
|
|
985
682
|
export declare const DeleteApplicationResponseFilterSensitiveLog: (
|
|
986
683
|
obj: DeleteApplicationResponse
|
|
987
684
|
) => any;
|
|
988
|
-
|
|
989
685
|
export declare const DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog: (
|
|
990
686
|
obj: DeleteApplicationCloudWatchLoggingOptionRequest
|
|
991
687
|
) => any;
|
|
992
|
-
|
|
993
688
|
export declare const DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog: (
|
|
994
689
|
obj: DeleteApplicationCloudWatchLoggingOptionResponse
|
|
995
690
|
) => any;
|
|
996
|
-
|
|
997
691
|
export declare const DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog: (
|
|
998
692
|
obj: DeleteApplicationInputProcessingConfigurationRequest
|
|
999
693
|
) => any;
|
|
1000
|
-
|
|
1001
694
|
export declare const DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog: (
|
|
1002
695
|
obj: DeleteApplicationInputProcessingConfigurationResponse
|
|
1003
696
|
) => any;
|
|
1004
|
-
|
|
1005
697
|
export declare const DeleteApplicationOutputRequestFilterSensitiveLog: (
|
|
1006
698
|
obj: DeleteApplicationOutputRequest
|
|
1007
699
|
) => any;
|
|
1008
|
-
|
|
1009
700
|
export declare const DeleteApplicationOutputResponseFilterSensitiveLog: (
|
|
1010
701
|
obj: DeleteApplicationOutputResponse
|
|
1011
702
|
) => any;
|
|
1012
|
-
|
|
1013
703
|
export declare const DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog: (
|
|
1014
704
|
obj: DeleteApplicationReferenceDataSourceRequest
|
|
1015
705
|
) => any;
|
|
1016
|
-
|
|
1017
706
|
export declare const DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog: (
|
|
1018
707
|
obj: DeleteApplicationReferenceDataSourceResponse
|
|
1019
708
|
) => any;
|
|
1020
|
-
|
|
1021
709
|
export declare const DescribeApplicationRequestFilterSensitiveLog: (
|
|
1022
710
|
obj: DescribeApplicationRequest
|
|
1023
711
|
) => any;
|
|
1024
|
-
|
|
1025
712
|
export declare const DescribeApplicationResponseFilterSensitiveLog: (
|
|
1026
713
|
obj: DescribeApplicationResponse
|
|
1027
714
|
) => any;
|
|
1028
|
-
|
|
1029
715
|
export declare const S3ConfigurationFilterSensitiveLog: (
|
|
1030
716
|
obj: S3Configuration
|
|
1031
717
|
) => any;
|
|
1032
|
-
|
|
1033
718
|
export declare const DiscoverInputSchemaRequestFilterSensitiveLog: (
|
|
1034
719
|
obj: DiscoverInputSchemaRequest
|
|
1035
720
|
) => any;
|
|
1036
|
-
|
|
1037
721
|
export declare const DiscoverInputSchemaResponseFilterSensitiveLog: (
|
|
1038
722
|
obj: DiscoverInputSchemaResponse
|
|
1039
723
|
) => any;
|
|
1040
|
-
|
|
1041
724
|
export declare const InputConfigurationFilterSensitiveLog: (
|
|
1042
725
|
obj: InputConfiguration
|
|
1043
726
|
) => any;
|
|
1044
|
-
|
|
1045
727
|
export declare const ListApplicationsRequestFilterSensitiveLog: (
|
|
1046
728
|
obj: ListApplicationsRequest
|
|
1047
729
|
) => any;
|
|
1048
|
-
|
|
1049
730
|
export declare const ListApplicationsResponseFilterSensitiveLog: (
|
|
1050
731
|
obj: ListApplicationsResponse
|
|
1051
732
|
) => any;
|
|
1052
|
-
|
|
1053
733
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1054
734
|
obj: ListTagsForResourceRequest
|
|
1055
735
|
) => any;
|
|
1056
|
-
|
|
1057
736
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1058
737
|
obj: ListTagsForResourceResponse
|
|
1059
738
|
) => any;
|
|
1060
|
-
|
|
1061
739
|
export declare const StartApplicationRequestFilterSensitiveLog: (
|
|
1062
740
|
obj: StartApplicationRequest
|
|
1063
741
|
) => any;
|
|
1064
|
-
|
|
1065
742
|
export declare const StartApplicationResponseFilterSensitiveLog: (
|
|
1066
743
|
obj: StartApplicationResponse
|
|
1067
744
|
) => any;
|
|
1068
|
-
|
|
1069
745
|
export declare const StopApplicationRequestFilterSensitiveLog: (
|
|
1070
746
|
obj: StopApplicationRequest
|
|
1071
747
|
) => any;
|
|
1072
|
-
|
|
1073
748
|
export declare const StopApplicationResponseFilterSensitiveLog: (
|
|
1074
749
|
obj: StopApplicationResponse
|
|
1075
750
|
) => any;
|
|
1076
|
-
|
|
1077
751
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1078
752
|
obj: TagResourceRequest
|
|
1079
753
|
) => any;
|
|
1080
|
-
|
|
1081
754
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1082
755
|
obj: TagResourceResponse
|
|
1083
756
|
) => any;
|
|
1084
|
-
|
|
1085
757
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1086
758
|
obj: UntagResourceRequest
|
|
1087
759
|
) => any;
|
|
1088
|
-
|
|
1089
760
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1090
761
|
obj: UntagResourceResponse
|
|
1091
762
|
) => any;
|
|
1092
|
-
|
|
1093
763
|
export declare const UpdateApplicationRequestFilterSensitiveLog: (
|
|
1094
764
|
obj: UpdateApplicationRequest
|
|
1095
765
|
) => any;
|
|
1096
|
-
|
|
1097
766
|
export declare const UpdateApplicationResponseFilterSensitiveLog: (
|
|
1098
767
|
obj: UpdateApplicationResponse
|
|
1099
768
|
) => any;
|