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