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