@aws-sdk/client-kinesis-analytics 3.131.0 → 3.137.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 +11 -0
  2. package/dist-cjs/commands/AddApplicationCloudWatchLoggingOptionCommand.js +2 -2
  3. package/dist-cjs/commands/AddApplicationInputCommand.js +2 -2
  4. package/dist-cjs/commands/AddApplicationInputProcessingConfigurationCommand.js +2 -2
  5. package/dist-cjs/commands/AddApplicationOutputCommand.js +2 -2
  6. package/dist-cjs/commands/AddApplicationReferenceDataSourceCommand.js +2 -2
  7. package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
  10. package/dist-cjs/commands/DeleteApplicationInputProcessingConfigurationCommand.js +2 -2
  11. package/dist-cjs/commands/DeleteApplicationOutputCommand.js +2 -2
  12. package/dist-cjs/commands/DeleteApplicationReferenceDataSourceCommand.js +2 -2
  13. package/dist-cjs/commands/DescribeApplicationCommand.js +2 -2
  14. package/dist-cjs/commands/DiscoverInputSchemaCommand.js +2 -2
  15. package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  17. package/dist-cjs/commands/StartApplicationCommand.js +2 -2
  18. package/dist-cjs/commands/StopApplicationCommand.js +2 -2
  19. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  20. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  21. package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
  22. package/dist-cjs/models/models_0.js +375 -561
  23. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +3 -3
  24. package/dist-es/commands/AddApplicationInputCommand.js +3 -3
  25. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +3 -3
  26. package/dist-es/commands/AddApplicationOutputCommand.js +3 -3
  27. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +3 -3
  28. package/dist-es/commands/CreateApplicationCommand.js +3 -3
  29. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +3 -3
  30. package/dist-es/commands/DeleteApplicationCommand.js +3 -3
  31. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +3 -3
  32. package/dist-es/commands/DeleteApplicationOutputCommand.js +3 -3
  33. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +3 -3
  34. package/dist-es/commands/DescribeApplicationCommand.js +3 -3
  35. package/dist-es/commands/DiscoverInputSchemaCommand.js +3 -3
  36. package/dist-es/commands/ListApplicationsCommand.js +3 -3
  37. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  38. package/dist-es/commands/StartApplicationCommand.js +3 -3
  39. package/dist-es/commands/StopApplicationCommand.js +3 -3
  40. package/dist-es/commands/TagResourceCommand.js +3 -3
  41. package/dist-es/commands/UntagResourceCommand.js +3 -3
  42. package/dist-es/commands/UpdateApplicationCommand.js +3 -3
  43. package/dist-es/models/models_0.js +93 -372
  44. package/dist-types/models/models_0.d.ts +372 -558
  45. package/dist-types/ts3.4/models/models_0.d.ts +186 -372
  46. package/package.json +6 -6
@@ -16,12 +16,6 @@ export interface CloudWatchLoggingOption {
16
16
  */
17
17
  RoleARN: string | undefined;
18
18
  }
19
- export declare namespace CloudWatchLoggingOption {
20
- /**
21
- * @internal
22
- */
23
- const filterSensitiveLog: (obj: CloudWatchLoggingOption) => any;
24
- }
25
19
  export interface AddApplicationCloudWatchLoggingOptionRequest {
26
20
  /**
27
21
  * <p>The Kinesis Analytics application name.</p>
@@ -38,20 +32,8 @@ export interface AddApplicationCloudWatchLoggingOptionRequest {
38
32
  */
39
33
  CloudWatchLoggingOption: CloudWatchLoggingOption | undefined;
40
34
  }
41
- export declare namespace AddApplicationCloudWatchLoggingOptionRequest {
42
- /**
43
- * @internal
44
- */
45
- const filterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionRequest) => any;
46
- }
47
35
  export interface AddApplicationCloudWatchLoggingOptionResponse {
48
36
  }
49
- export declare namespace AddApplicationCloudWatchLoggingOptionResponse {
50
- /**
51
- * @internal
52
- */
53
- const filterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionResponse) => any;
54
- }
55
37
  /**
56
38
  * <p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
57
39
  */
@@ -121,12 +103,6 @@ export interface InputParallelism {
121
103
  */
122
104
  Count?: number;
123
105
  }
124
- export declare namespace InputParallelism {
125
- /**
126
- * @internal
127
- */
128
- const filterSensitiveLog: (obj: InputParallelism) => any;
129
- }
130
106
  /**
131
107
  * <p>An object that contains the Amazon Resource Name (ARN) of the <a href="https://docs.aws.amazon.com/lambda/">AWS Lambda</a> function that
132
108
  * is used to preprocess records in the stream, and the ARN of the IAM role that is used to
@@ -147,12 +123,6 @@ export interface InputLambdaProcessor {
147
123
  */
148
124
  RoleARN: string | undefined;
149
125
  }
150
- export declare namespace InputLambdaProcessor {
151
- /**
152
- * @internal
153
- */
154
- const filterSensitiveLog: (obj: InputLambdaProcessor) => any;
155
- }
156
126
  /**
157
127
  * <p>Provides a description of a processor that is used to preprocess the records in the
158
128
  * stream before being processed by your application code. Currently, the only input
@@ -166,12 +136,6 @@ export interface InputProcessingConfiguration {
166
136
  */
167
137
  InputLambdaProcessor: InputLambdaProcessor | undefined;
168
138
  }
169
- export declare namespace InputProcessingConfiguration {
170
- /**
171
- * @internal
172
- */
173
- const filterSensitiveLog: (obj: InputProcessingConfiguration) => any;
174
- }
175
139
  /**
176
140
  * <p>Describes the mapping of each data element in the streaming
177
141
  * source to the corresponding column in the in-application stream.</p>
@@ -192,12 +156,6 @@ export interface RecordColumn {
192
156
  */
193
157
  SqlType: string | undefined;
194
158
  }
195
- export declare namespace RecordColumn {
196
- /**
197
- * @internal
198
- */
199
- const filterSensitiveLog: (obj: RecordColumn) => any;
200
- }
201
159
  /**
202
160
  * <p>Provides additional mapping information when the record format
203
161
  * uses delimiters, such as CSV. For example, the following sample records
@@ -221,12 +179,6 @@ export interface CSVMappingParameters {
221
179
  */
222
180
  RecordColumnDelimiter: string | undefined;
223
181
  }
224
- export declare namespace CSVMappingParameters {
225
- /**
226
- * @internal
227
- */
228
- const filterSensitiveLog: (obj: CSVMappingParameters) => any;
229
- }
230
182
  /**
231
183
  * <p>Provides additional mapping information when JSON is the record format on the streaming source.</p>
232
184
  */
@@ -236,12 +188,6 @@ export interface JSONMappingParameters {
236
188
  */
237
189
  RecordRowPath: string | undefined;
238
190
  }
239
- export declare namespace JSONMappingParameters {
240
- /**
241
- * @internal
242
- */
243
- const filterSensitiveLog: (obj: JSONMappingParameters) => any;
244
- }
245
191
  /**
246
192
  * <p>When configuring application input
247
193
  * at the time of creating or updating an application,
@@ -260,12 +206,6 @@ export interface MappingParameters {
260
206
  */
261
207
  CSVMappingParameters?: CSVMappingParameters;
262
208
  }
263
- export declare namespace MappingParameters {
264
- /**
265
- * @internal
266
- */
267
- const filterSensitiveLog: (obj: MappingParameters) => any;
268
- }
269
209
  export declare enum RecordFormatType {
270
210
  CSV = "CSV",
271
211
  JSON = "JSON"
@@ -286,12 +226,6 @@ export interface RecordFormat {
286
226
  */
287
227
  MappingParameters?: MappingParameters;
288
228
  }
289
- export declare namespace RecordFormat {
290
- /**
291
- * @internal
292
- */
293
- const filterSensitiveLog: (obj: RecordFormat) => any;
294
- }
295
229
  /**
296
230
  * <p>Describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.</p>
297
231
  */
@@ -309,12 +243,6 @@ export interface SourceSchema {
309
243
  */
310
244
  RecordColumns: RecordColumn[] | undefined;
311
245
  }
312
- export declare namespace SourceSchema {
313
- /**
314
- * @internal
315
- */
316
- const filterSensitiveLog: (obj: SourceSchema) => any;
317
- }
318
246
  /**
319
247
  * <p> Identifies an Amazon Kinesis Firehose delivery stream as the streaming source. You
320
248
  * provide the delivery stream's Amazon Resource Name (ARN) and an IAM role ARN that
@@ -332,12 +260,6 @@ export interface KinesisFirehoseInput {
332
260
  */
333
261
  RoleARN: string | undefined;
334
262
  }
335
- export declare namespace KinesisFirehoseInput {
336
- /**
337
- * @internal
338
- */
339
- const filterSensitiveLog: (obj: KinesisFirehoseInput) => any;
340
- }
341
263
  /**
342
264
  * <p> Identifies an Amazon Kinesis stream as the streaming source. You provide the
343
265
  * stream's Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis
@@ -353,12 +275,6 @@ export interface KinesisStreamsInput {
353
275
  */
354
276
  RoleARN: string | undefined;
355
277
  }
356
- export declare namespace KinesisStreamsInput {
357
- /**
358
- * @internal
359
- */
360
- const filterSensitiveLog: (obj: KinesisStreamsInput) => any;
361
- }
362
278
  /**
363
279
  * <p>When you configure the application input, you specify the streaming source, the
364
280
  * in-application stream name that is created, and the mapping between the two.
@@ -406,12 +322,6 @@ export interface Input {
406
322
  */
407
323
  InputSchema: SourceSchema | undefined;
408
324
  }
409
- export declare namespace Input {
410
- /**
411
- * @internal
412
- */
413
- const filterSensitiveLog: (obj: Input) => any;
414
- }
415
325
  /**
416
326
  * <p></p>
417
327
  */
@@ -430,23 +340,11 @@ export interface AddApplicationInputRequest {
430
340
  */
431
341
  Input: Input | undefined;
432
342
  }
433
- export declare namespace AddApplicationInputRequest {
434
- /**
435
- * @internal
436
- */
437
- const filterSensitiveLog: (obj: AddApplicationInputRequest) => any;
438
- }
439
343
  /**
440
344
  * <p></p>
441
345
  */
442
346
  export interface AddApplicationInputResponse {
443
347
  }
444
- export declare namespace AddApplicationInputResponse {
445
- /**
446
- * @internal
447
- */
448
- const filterSensitiveLog: (obj: AddApplicationInputResponse) => any;
449
- }
450
348
  /**
451
349
  * <p>User-provided application code (query) is invalid. This can be a simple syntax error.</p>
452
350
  */
@@ -479,20 +377,8 @@ export interface AddApplicationInputProcessingConfigurationRequest {
479
377
  */
480
378
  InputProcessingConfiguration: InputProcessingConfiguration | undefined;
481
379
  }
482
- export declare namespace AddApplicationInputProcessingConfigurationRequest {
483
- /**
484
- * @internal
485
- */
486
- const filterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationRequest) => any;
487
- }
488
380
  export interface AddApplicationInputProcessingConfigurationResponse {
489
381
  }
490
- export declare namespace AddApplicationInputProcessingConfigurationResponse {
491
- /**
492
- * @internal
493
- */
494
- const filterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationResponse) => any;
495
- }
496
382
  /**
497
383
  * <p>Describes the data format when records are written to the destination.
498
384
  * For more information,
@@ -507,12 +393,6 @@ export interface DestinationSchema {
507
393
  */
508
394
  RecordFormatType: RecordFormatType | string | undefined;
509
395
  }
510
- export declare namespace DestinationSchema {
511
- /**
512
- * @internal
513
- */
514
- const filterSensitiveLog: (obj: DestinationSchema) => any;
515
- }
516
396
  /**
517
397
  * <p>When configuring application output,
518
398
  * identifies an Amazon Kinesis Firehose delivery stream as the destination.
@@ -529,12 +409,6 @@ export interface KinesisFirehoseOutput {
529
409
  */
530
410
  RoleARN: string | undefined;
531
411
  }
532
- export declare namespace KinesisFirehoseOutput {
533
- /**
534
- * @internal
535
- */
536
- const filterSensitiveLog: (obj: KinesisFirehoseOutput) => any;
537
- }
538
412
  /**
539
413
  * <p>When configuring application output, identifies an Amazon Kinesis stream as the
540
414
  * destination. You provide the stream Amazon Resource Name (ARN) and also an IAM role ARN
@@ -550,12 +424,6 @@ export interface KinesisStreamsOutput {
550
424
  */
551
425
  RoleARN: string | undefined;
552
426
  }
553
- export declare namespace KinesisStreamsOutput {
554
- /**
555
- * @internal
556
- */
557
- const filterSensitiveLog: (obj: KinesisStreamsOutput) => any;
558
- }
559
427
  /**
560
428
  * <p>When configuring application output, identifies an AWS Lambda function as the
561
429
  * destination. You provide the function Amazon Resource Name (ARN) and also an IAM role
@@ -576,12 +444,6 @@ export interface LambdaOutput {
576
444
  */
577
445
  RoleARN: string | undefined;
578
446
  }
579
- export declare namespace LambdaOutput {
580
- /**
581
- * @internal
582
- */
583
- const filterSensitiveLog: (obj: LambdaOutput) => any;
584
- }
585
447
  /**
586
448
  * <p>
587
449
  * Describes application output configuration in which you identify
@@ -619,12 +481,6 @@ export interface Output {
619
481
  */
620
482
  DestinationSchema: DestinationSchema | undefined;
621
483
  }
622
- export declare namespace Output {
623
- /**
624
- * @internal
625
- */
626
- const filterSensitiveLog: (obj: Output) => any;
627
- }
628
484
  /**
629
485
  * <p></p>
630
486
  */
@@ -648,23 +504,11 @@ export interface AddApplicationOutputRequest {
648
504
  */
649
505
  Output: Output | undefined;
650
506
  }
651
- export declare namespace AddApplicationOutputRequest {
652
- /**
653
- * @internal
654
- */
655
- const filterSensitiveLog: (obj: AddApplicationOutputRequest) => any;
656
- }
657
507
  /**
658
508
  * <p></p>
659
509
  */
660
510
  export interface AddApplicationOutputResponse {
661
511
  }
662
- export declare namespace AddApplicationOutputResponse {
663
- /**
664
- * @internal
665
- */
666
- const filterSensitiveLog: (obj: AddApplicationOutputResponse) => any;
667
- }
668
512
  /**
669
513
  * <p>Identifies the S3 bucket and object that contains the reference data. Also identifies the IAM role Amazon Kinesis Analytics can assume to read this object on your behalf.</p>
670
514
  * <p>An Amazon Kinesis Analytics application loads reference data only once. If the data changes,
@@ -685,12 +529,6 @@ export interface S3ReferenceDataSource {
685
529
  */
686
530
  ReferenceRoleARN: string | undefined;
687
531
  }
688
- export declare namespace S3ReferenceDataSource {
689
- /**
690
- * @internal
691
- */
692
- const filterSensitiveLog: (obj: S3ReferenceDataSource) => any;
693
- }
694
532
  /**
695
533
  * <p>Describes the reference data source by providing the source information (S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.</p>
696
534
  */
@@ -710,12 +548,6 @@ export interface ReferenceDataSource {
710
548
  */
711
549
  ReferenceSchema: SourceSchema | undefined;
712
550
  }
713
- export declare namespace ReferenceDataSource {
714
- /**
715
- * @internal
716
- */
717
- const filterSensitiveLog: (obj: ReferenceDataSource) => any;
718
- }
719
551
  /**
720
552
  * <p></p>
721
553
  */
@@ -736,23 +568,11 @@ export interface AddApplicationReferenceDataSourceRequest {
736
568
  */
737
569
  ReferenceDataSource: ReferenceDataSource | undefined;
738
570
  }
739
- export declare namespace AddApplicationReferenceDataSourceRequest {
740
- /**
741
- * @internal
742
- */
743
- const filterSensitiveLog: (obj: AddApplicationReferenceDataSourceRequest) => any;
744
- }
745
571
  /**
746
572
  * <p></p>
747
573
  */
748
574
  export interface AddApplicationReferenceDataSourceResponse {
749
575
  }
750
- export declare namespace AddApplicationReferenceDataSourceResponse {
751
- /**
752
- * @internal
753
- */
754
- const filterSensitiveLog: (obj: AddApplicationReferenceDataSourceResponse) => any;
755
- }
756
576
  export declare enum ApplicationStatus {
757
577
  DELETING = "DELETING",
758
578
  READY = "READY",
@@ -778,12 +598,6 @@ export interface CloudWatchLoggingOptionDescription {
778
598
  */
779
599
  RoleARN: string | undefined;
780
600
  }
781
- export declare namespace CloudWatchLoggingOptionDescription {
782
- /**
783
- * @internal
784
- */
785
- const filterSensitiveLog: (obj: CloudWatchLoggingOptionDescription) => any;
786
- }
787
601
  /**
788
602
  * <p>An object that contains the Amazon Resource Name (ARN) of the <a href="https://docs.aws.amazon.com/lambda/">AWS Lambda</a> function that
789
603
  * is used to preprocess records in the stream, and the ARN of the IAM role that is used
@@ -799,12 +613,6 @@ export interface InputLambdaProcessorDescription {
799
613
  */
800
614
  RoleARN?: string;
801
615
  }
802
- export declare namespace InputLambdaProcessorDescription {
803
- /**
804
- * @internal
805
- */
806
- const filterSensitiveLog: (obj: InputLambdaProcessorDescription) => any;
807
- }
808
616
  /**
809
617
  * <p>Provides configuration information about an input processor. Currently, the only input processor available is
810
618
  * <a href="https://docs.aws.amazon.com/lambda/">AWS Lambda</a>.</p>
@@ -815,12 +623,6 @@ export interface InputProcessingConfigurationDescription {
815
623
  */
816
624
  InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
817
625
  }
818
- export declare namespace InputProcessingConfigurationDescription {
819
- /**
820
- * @internal
821
- */
822
- const filterSensitiveLog: (obj: InputProcessingConfigurationDescription) => any;
823
- }
824
626
  export declare enum InputStartingPosition {
825
627
  LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
826
628
  NOW = "NOW",
@@ -855,12 +657,6 @@ export interface InputStartingPositionConfiguration {
855
657
  */
856
658
  InputStartingPosition?: InputStartingPosition | string;
857
659
  }
858
- export declare namespace InputStartingPositionConfiguration {
859
- /**
860
- * @internal
861
- */
862
- const filterSensitiveLog: (obj: InputStartingPositionConfiguration) => any;
863
- }
864
660
  /**
865
661
  * <p>
866
662
  * Describes the Amazon Kinesis Firehose delivery stream that is configured as the streaming source
@@ -877,12 +673,6 @@ export interface KinesisFirehoseInputDescription {
877
673
  */
878
674
  RoleARN?: string;
879
675
  }
880
- export declare namespace KinesisFirehoseInputDescription {
881
- /**
882
- * @internal
883
- */
884
- const filterSensitiveLog: (obj: KinesisFirehoseInputDescription) => any;
885
- }
886
676
  /**
887
677
  * <p>
888
678
  * Describes the Amazon Kinesis stream that is configured as the streaming source
@@ -899,12 +689,6 @@ export interface KinesisStreamsInputDescription {
899
689
  */
900
690
  RoleARN?: string;
901
691
  }
902
- export declare namespace KinesisStreamsInputDescription {
903
- /**
904
- * @internal
905
- */
906
- const filterSensitiveLog: (obj: KinesisStreamsInputDescription) => any;
907
- }
908
692
  /**
909
693
  * <p>Describes the application input configuration.
910
694
  * For more information,
@@ -958,12 +742,6 @@ export interface InputDescription {
958
742
  */
959
743
  InputStartingPositionConfiguration?: InputStartingPositionConfiguration;
960
744
  }
961
- export declare namespace InputDescription {
962
- /**
963
- * @internal
964
- */
965
- const filterSensitiveLog: (obj: InputDescription) => any;
966
- }
967
745
  /**
968
746
  * <p>
969
747
  * For an application output, describes
@@ -980,12 +758,6 @@ export interface KinesisFirehoseOutputDescription {
980
758
  */
981
759
  RoleARN?: string;
982
760
  }
983
- export declare namespace KinesisFirehoseOutputDescription {
984
- /**
985
- * @internal
986
- */
987
- const filterSensitiveLog: (obj: KinesisFirehoseOutputDescription) => any;
988
- }
989
761
  /**
990
762
  * <p>
991
763
  * For an application output, describes
@@ -1002,12 +774,6 @@ export interface KinesisStreamsOutputDescription {
1002
774
  */
1003
775
  RoleARN?: string;
1004
776
  }
1005
- export declare namespace KinesisStreamsOutputDescription {
1006
- /**
1007
- * @internal
1008
- */
1009
- const filterSensitiveLog: (obj: KinesisStreamsOutputDescription) => any;
1010
- }
1011
777
  /**
1012
778
  * <p>For an application output, describes the AWS Lambda function configured as its
1013
779
  * destination. </p>
@@ -1022,12 +788,6 @@ export interface LambdaOutputDescription {
1022
788
  */
1023
789
  RoleARN?: string;
1024
790
  }
1025
- export declare namespace LambdaOutputDescription {
1026
- /**
1027
- * @internal
1028
- */
1029
- const filterSensitiveLog: (obj: LambdaOutputDescription) => any;
1030
- }
1031
791
  /**
1032
792
  * <p>Describes the application output configuration, which includes
1033
793
  * the in-application stream name and the destination where the stream data
@@ -1064,12 +824,6 @@ export interface OutputDescription {
1064
824
  */
1065
825
  DestinationSchema?: DestinationSchema;
1066
826
  }
1067
- export declare namespace OutputDescription {
1068
- /**
1069
- * @internal
1070
- */
1071
- const filterSensitiveLog: (obj: OutputDescription) => any;
1072
- }
1073
827
  /**
1074
828
  * <p>Provides the bucket name and object key name that stores the reference data.</p>
1075
829
  */
@@ -1087,12 +841,6 @@ export interface S3ReferenceDataSourceDescription {
1087
841
  */
1088
842
  ReferenceRoleARN: string | undefined;
1089
843
  }
1090
- export declare namespace S3ReferenceDataSourceDescription {
1091
- /**
1092
- * @internal
1093
- */
1094
- const filterSensitiveLog: (obj: S3ReferenceDataSourceDescription) => any;
1095
- }
1096
844
  /**
1097
845
  * <p>Describes the reference data source configured for an application.</p>
1098
846
  */
@@ -1116,12 +864,6 @@ export interface ReferenceDataSourceDescription {
1116
864
  */
1117
865
  ReferenceSchema?: SourceSchema;
1118
866
  }
1119
- export declare namespace ReferenceDataSourceDescription {
1120
- /**
1121
- * @internal
1122
- */
1123
- const filterSensitiveLog: (obj: ReferenceDataSourceDescription) => any;
1124
- }
1125
867
  /**
1126
868
  * <note>
1127
869
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
@@ -1194,12 +936,6 @@ export interface ApplicationDetail {
1194
936
  */
1195
937
  ApplicationVersionId: number | undefined;
1196
938
  }
1197
- export declare namespace ApplicationDetail {
1198
- /**
1199
- * @internal
1200
- */
1201
- const filterSensitiveLog: (obj: ApplicationDetail) => any;
1202
- }
1203
939
  /**
1204
940
  * <note>
1205
941
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
@@ -1220,12 +956,6 @@ export interface ApplicationSummary {
1220
956
  */
1221
957
  ApplicationStatus: ApplicationStatus | string | undefined;
1222
958
  }
1223
- export declare namespace ApplicationSummary {
1224
- /**
1225
- * @internal
1226
- */
1227
- const filterSensitiveLog: (obj: ApplicationSummary) => any;
1228
- }
1229
959
  /**
1230
960
  * <p>Describes CloudWatch logging option updates.</p>
1231
961
  */
@@ -1243,12 +973,6 @@ export interface CloudWatchLoggingOptionUpdate {
1243
973
  */
1244
974
  RoleARNUpdate?: string;
1245
975
  }
1246
- export declare namespace CloudWatchLoggingOptionUpdate {
1247
- /**
1248
- * @internal
1249
- */
1250
- const filterSensitiveLog: (obj: CloudWatchLoggingOptionUpdate) => any;
1251
- }
1252
976
  /**
1253
977
  * <p>Provides updates to the parallelism count.</p>
1254
978
  */
@@ -1259,12 +983,6 @@ export interface InputParallelismUpdate {
1259
983
  */
1260
984
  CountUpdate?: number;
1261
985
  }
1262
- export declare namespace InputParallelismUpdate {
1263
- /**
1264
- * @internal
1265
- */
1266
- const filterSensitiveLog: (obj: InputParallelismUpdate) => any;
1267
- }
1268
986
  /**
1269
987
  * <p>Represents an update to the <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html">InputLambdaProcessor</a> that is used to preprocess the records in the stream.</p>
1270
988
  */
@@ -1284,12 +1002,6 @@ export interface InputLambdaProcessorUpdate {
1284
1002
  */
1285
1003
  RoleARNUpdate?: string;
1286
1004
  }
1287
- export declare namespace InputLambdaProcessorUpdate {
1288
- /**
1289
- * @internal
1290
- */
1291
- const filterSensitiveLog: (obj: InputLambdaProcessorUpdate) => any;
1292
- }
1293
1005
  /**
1294
1006
  * <p>Describes updates to an <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html">InputProcessingConfiguration</a>. </p>
1295
1007
  */
@@ -1299,12 +1011,6 @@ export interface InputProcessingConfigurationUpdate {
1299
1011
  */
1300
1012
  InputLambdaProcessorUpdate: InputLambdaProcessorUpdate | undefined;
1301
1013
  }
1302
- export declare namespace InputProcessingConfigurationUpdate {
1303
- /**
1304
- * @internal
1305
- */
1306
- const filterSensitiveLog: (obj: InputProcessingConfigurationUpdate) => any;
1307
- }
1308
1014
  /**
1309
1015
  * <p>Describes updates for the application's input schema.</p>
1310
1016
  */
@@ -1323,12 +1029,6 @@ export interface InputSchemaUpdate {
1323
1029
  */
1324
1030
  RecordColumnUpdates?: RecordColumn[];
1325
1031
  }
1326
- export declare namespace InputSchemaUpdate {
1327
- /**
1328
- * @internal
1329
- */
1330
- const filterSensitiveLog: (obj: InputSchemaUpdate) => any;
1331
- }
1332
1032
  /**
1333
1033
  * <p>When updating application input configuration, provides information about an
1334
1034
  * Amazon Kinesis Firehose delivery stream as the streaming source.</p>
@@ -1345,12 +1045,6 @@ export interface KinesisFirehoseInputUpdate {
1345
1045
  */
1346
1046
  RoleARNUpdate?: string;
1347
1047
  }
1348
- export declare namespace KinesisFirehoseInputUpdate {
1349
- /**
1350
- * @internal
1351
- */
1352
- const filterSensitiveLog: (obj: KinesisFirehoseInputUpdate) => any;
1353
- }
1354
1048
  /**
1355
1049
  * <p>When updating application input configuration, provides information about an
1356
1050
  * Amazon Kinesis stream as the streaming source.</p>
@@ -1365,12 +1059,6 @@ export interface KinesisStreamsInputUpdate {
1365
1059
  */
1366
1060
  RoleARNUpdate?: string;
1367
1061
  }
1368
- export declare namespace KinesisStreamsInputUpdate {
1369
- /**
1370
- * @internal
1371
- */
1372
- const filterSensitiveLog: (obj: KinesisStreamsInputUpdate) => any;
1373
- }
1374
1062
  /**
1375
1063
  * <p>Describes updates to a specific input configuration (identified by the
1376
1064
  * <code>InputId</code> of an application). </p>
@@ -1410,12 +1098,6 @@ export interface InputUpdate {
1410
1098
  */
1411
1099
  InputParallelismUpdate?: InputParallelismUpdate;
1412
1100
  }
1413
- export declare namespace InputUpdate {
1414
- /**
1415
- * @internal
1416
- */
1417
- const filterSensitiveLog: (obj: InputUpdate) => any;
1418
- }
1419
1101
  /**
1420
1102
  * <p>
1421
1103
  * When updating an output configuration using the
@@ -1435,12 +1117,6 @@ export interface KinesisFirehoseOutputUpdate {
1435
1117
  */
1436
1118
  RoleARNUpdate?: string;
1437
1119
  }
1438
- export declare namespace KinesisFirehoseOutputUpdate {
1439
- /**
1440
- * @internal
1441
- */
1442
- const filterSensitiveLog: (obj: KinesisFirehoseOutputUpdate) => any;
1443
- }
1444
1120
  /**
1445
1121
  * <p>
1446
1122
  * When updating an output configuration using the
@@ -1459,12 +1135,6 @@ export interface KinesisStreamsOutputUpdate {
1459
1135
  */
1460
1136
  RoleARNUpdate?: string;
1461
1137
  }
1462
- export declare namespace KinesisStreamsOutputUpdate {
1463
- /**
1464
- * @internal
1465
- */
1466
- const filterSensitiveLog: (obj: KinesisStreamsOutputUpdate) => any;
1467
- }
1468
1138
  /**
1469
1139
  * <p>When updating an output configuration using the <a href="https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html">UpdateApplication</a>
1470
1140
  * operation, provides information about an AWS Lambda function configured as the
@@ -1484,12 +1154,6 @@ export interface LambdaOutputUpdate {
1484
1154
  */
1485
1155
  RoleARNUpdate?: string;
1486
1156
  }
1487
- export declare namespace LambdaOutputUpdate {
1488
- /**
1489
- * @internal
1490
- */
1491
- const filterSensitiveLog: (obj: LambdaOutputUpdate) => any;
1492
- }
1493
1157
  /**
1494
1158
  * <p>
1495
1159
  * Describes updates to the output configuration identified by
@@ -1525,12 +1189,6 @@ export interface OutputUpdate {
1525
1189
  */
1526
1190
  DestinationSchemaUpdate?: DestinationSchema;
1527
1191
  }
1528
- export declare namespace OutputUpdate {
1529
- /**
1530
- * @internal
1531
- */
1532
- const filterSensitiveLog: (obj: OutputUpdate) => any;
1533
- }
1534
1192
  /**
1535
1193
  * <p>Describes the S3 bucket name, object key name, and IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf and populate the in-application reference table.</p>
1536
1194
  */
@@ -1548,12 +1206,6 @@ export interface S3ReferenceDataSourceUpdate {
1548
1206
  */
1549
1207
  ReferenceRoleARNUpdate?: string;
1550
1208
  }
1551
- export declare namespace S3ReferenceDataSourceUpdate {
1552
- /**
1553
- * @internal
1554
- */
1555
- const filterSensitiveLog: (obj: S3ReferenceDataSourceUpdate) => any;
1556
- }
1557
1209
  /**
1558
1210
  * <p>When you update a reference data source configuration for an application, this object provides all the updated values (such as the source bucket name and object key name), the in-application table name that is created, and updated mapping information that maps the data in the Amazon S3 object to the in-application reference table that is created.</p>
1559
1211
  */
@@ -1576,12 +1228,6 @@ export interface ReferenceDataSourceUpdate {
1576
1228
  */
1577
1229
  ReferenceSchemaUpdate?: SourceSchema;
1578
1230
  }
1579
- export declare namespace ReferenceDataSourceUpdate {
1580
- /**
1581
- * @internal
1582
- */
1583
- const filterSensitiveLog: (obj: ReferenceDataSourceUpdate) => any;
1584
- }
1585
1231
  /**
1586
1232
  * <p>Describes updates to apply to an existing Amazon Kinesis Analytics application.</p>
1587
1233
  */
@@ -1607,12 +1253,6 @@ export interface ApplicationUpdate {
1607
1253
  */
1608
1254
  CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[];
1609
1255
  }
1610
- export declare namespace ApplicationUpdate {
1611
- /**
1612
- * @internal
1613
- */
1614
- const filterSensitiveLog: (obj: ApplicationUpdate) => any;
1615
- }
1616
1256
  /**
1617
1257
  * <p>A key-value pair (the value is optional) that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. Note that
1618
1258
  * the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
@@ -1628,12 +1268,6 @@ export interface Tag {
1628
1268
  */
1629
1269
  Value?: string;
1630
1270
  }
1631
- export declare namespace Tag {
1632
- /**
1633
- * @internal
1634
- */
1635
- const filterSensitiveLog: (obj: Tag) => any;
1636
- }
1637
1271
  /**
1638
1272
  * <p>TBD</p>
1639
1273
  */
@@ -1698,12 +1332,6 @@ export interface CreateApplicationRequest {
1698
1332
  */
1699
1333
  Tags?: Tag[];
1700
1334
  }
1701
- export declare namespace CreateApplicationRequest {
1702
- /**
1703
- * @internal
1704
- */
1705
- const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
1706
- }
1707
1335
  /**
1708
1336
  * <p>TBD</p>
1709
1337
  */
@@ -1715,12 +1343,6 @@ export interface CreateApplicationResponse {
1715
1343
  */
1716
1344
  ApplicationSummary: ApplicationSummary | undefined;
1717
1345
  }
1718
- export declare namespace CreateApplicationResponse {
1719
- /**
1720
- * @internal
1721
- */
1722
- const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
1723
- }
1724
1346
  /**
1725
1347
  * <p>Exceeded the number of applications allowed.</p>
1726
1348
  */
@@ -1758,23 +1380,11 @@ export interface DeleteApplicationRequest {
1758
1380
  */
1759
1381
  CreateTimestamp: Date | undefined;
1760
1382
  }
1761
- export declare namespace DeleteApplicationRequest {
1762
- /**
1763
- * @internal
1764
- */
1765
- const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
1766
- }
1767
1383
  /**
1768
1384
  * <p></p>
1769
1385
  */
1770
1386
  export interface DeleteApplicationResponse {
1771
1387
  }
1772
- export declare namespace DeleteApplicationResponse {
1773
- /**
1774
- * @internal
1775
- */
1776
- const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
1777
- }
1778
1388
  export interface DeleteApplicationCloudWatchLoggingOptionRequest {
1779
1389
  /**
1780
1390
  * <p>The Kinesis Analytics application name.</p>
@@ -1790,20 +1400,8 @@ export interface DeleteApplicationCloudWatchLoggingOptionRequest {
1790
1400
  */
1791
1401
  CloudWatchLoggingOptionId: string | undefined;
1792
1402
  }
1793
- export declare namespace DeleteApplicationCloudWatchLoggingOptionRequest {
1794
- /**
1795
- * @internal
1796
- */
1797
- const filterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionRequest) => any;
1798
- }
1799
1403
  export interface DeleteApplicationCloudWatchLoggingOptionResponse {
1800
1404
  }
1801
- export declare namespace DeleteApplicationCloudWatchLoggingOptionResponse {
1802
- /**
1803
- * @internal
1804
- */
1805
- const filterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionResponse) => any;
1806
- }
1807
1405
  export interface DeleteApplicationInputProcessingConfigurationRequest {
1808
1406
  /**
1809
1407
  * <p>The Kinesis Analytics application name.</p>
@@ -1819,20 +1417,8 @@ export interface DeleteApplicationInputProcessingConfigurationRequest {
1819
1417
  */
1820
1418
  InputId: string | undefined;
1821
1419
  }
1822
- export declare namespace DeleteApplicationInputProcessingConfigurationRequest {
1823
- /**
1824
- * @internal
1825
- */
1826
- const filterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationRequest) => any;
1827
- }
1828
1420
  export interface DeleteApplicationInputProcessingConfigurationResponse {
1829
1421
  }
1830
- export declare namespace DeleteApplicationInputProcessingConfigurationResponse {
1831
- /**
1832
- * @internal
1833
- */
1834
- const filterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationResponse) => any;
1835
- }
1836
1422
  /**
1837
1423
  * <p></p>
1838
1424
  */
@@ -1861,23 +1447,11 @@ export interface DeleteApplicationOutputRequest {
1861
1447
  */
1862
1448
  OutputId: string | undefined;
1863
1449
  }
1864
- export declare namespace DeleteApplicationOutputRequest {
1865
- /**
1866
- * @internal
1867
- */
1868
- const filterSensitiveLog: (obj: DeleteApplicationOutputRequest) => any;
1869
- }
1870
1450
  /**
1871
1451
  * <p></p>
1872
1452
  */
1873
1453
  export interface DeleteApplicationOutputResponse {
1874
1454
  }
1875
- export declare namespace DeleteApplicationOutputResponse {
1876
- /**
1877
- * @internal
1878
- */
1879
- const filterSensitiveLog: (obj: DeleteApplicationOutputResponse) => any;
1880
- }
1881
1455
  export interface DeleteApplicationReferenceDataSourceRequest {
1882
1456
  /**
1883
1457
  * <p>Name of an existing application.</p>
@@ -1899,20 +1473,8 @@ export interface DeleteApplicationReferenceDataSourceRequest {
1899
1473
  */
1900
1474
  ReferenceId: string | undefined;
1901
1475
  }
1902
- export declare namespace DeleteApplicationReferenceDataSourceRequest {
1903
- /**
1904
- * @internal
1905
- */
1906
- const filterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceRequest) => any;
1907
- }
1908
1476
  export interface DeleteApplicationReferenceDataSourceResponse {
1909
1477
  }
1910
- export declare namespace DeleteApplicationReferenceDataSourceResponse {
1911
- /**
1912
- * @internal
1913
- */
1914
- const filterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceResponse) => any;
1915
- }
1916
1478
  /**
1917
1479
  * <p></p>
1918
1480
  */
@@ -1922,12 +1484,6 @@ export interface DescribeApplicationRequest {
1922
1484
  */
1923
1485
  ApplicationName: string | undefined;
1924
1486
  }
1925
- export declare namespace DescribeApplicationRequest {
1926
- /**
1927
- * @internal
1928
- */
1929
- const filterSensitiveLog: (obj: DescribeApplicationRequest) => any;
1930
- }
1931
1487
  /**
1932
1488
  * <p></p>
1933
1489
  */
@@ -1937,12 +1493,6 @@ export interface DescribeApplicationResponse {
1937
1493
  */
1938
1494
  ApplicationDetail: ApplicationDetail | undefined;
1939
1495
  }
1940
- export declare namespace DescribeApplicationResponse {
1941
- /**
1942
- * @internal
1943
- */
1944
- const filterSensitiveLog: (obj: DescribeApplicationResponse) => any;
1945
- }
1946
1496
  /**
1947
1497
  * <p>Provides a description of an Amazon S3 data source, including the Amazon Resource
1948
1498
  * Name (ARN) of the S3 bucket, the ARN of the IAM role that is used to access the bucket,
@@ -1962,12 +1512,6 @@ export interface S3Configuration {
1962
1512
  */
1963
1513
  FileKey: string | undefined;
1964
1514
  }
1965
- export declare namespace S3Configuration {
1966
- /**
1967
- * @internal
1968
- */
1969
- const filterSensitiveLog: (obj: S3Configuration) => any;
1970
- }
1971
1515
  export interface DiscoverInputSchemaRequest {
1972
1516
  /**
1973
1517
  * <p>Amazon Resource Name (ARN) of the streaming source.</p>
@@ -1991,12 +1535,6 @@ export interface DiscoverInputSchemaRequest {
1991
1535
  */
1992
1536
  InputProcessingConfiguration?: InputProcessingConfiguration;
1993
1537
  }
1994
- export declare namespace DiscoverInputSchemaRequest {
1995
- /**
1996
- * @internal
1997
- */
1998
- const filterSensitiveLog: (obj: DiscoverInputSchemaRequest) => any;
1999
- }
2000
1538
  /**
2001
1539
  * <p></p>
2002
1540
  */
@@ -2018,12 +1556,6 @@ export interface DiscoverInputSchemaResponse {
2018
1556
  */
2019
1557
  RawInputRecords?: string[];
2020
1558
  }
2021
- export declare namespace DiscoverInputSchemaResponse {
2022
- /**
2023
- * @internal
2024
- */
2025
- const filterSensitiveLog: (obj: DiscoverInputSchemaResponse) => any;
2026
- }
2027
1559
  /**
2028
1560
  * <p>Discovery failed to get a record from the
2029
1561
  * streaming source because of the Amazon Kinesis Streams
@@ -2081,12 +1613,6 @@ export interface InputConfiguration {
2081
1613
  */
2082
1614
  InputStartingPositionConfiguration: InputStartingPositionConfiguration | undefined;
2083
1615
  }
2084
- export declare namespace InputConfiguration {
2085
- /**
2086
- * @internal
2087
- */
2088
- const filterSensitiveLog: (obj: InputConfiguration) => any;
2089
- }
2090
1616
  /**
2091
1617
  * <p>User-provided application configuration is not valid.</p>
2092
1618
  */
@@ -2111,12 +1637,6 @@ export interface ListApplicationsRequest {
2111
1637
  */
2112
1638
  ExclusiveStartApplicationName?: string;
2113
1639
  }
2114
- export declare namespace ListApplicationsRequest {
2115
- /**
2116
- * @internal
2117
- */
2118
- const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
2119
- }
2120
1640
  /**
2121
1641
  * <p></p>
2122
1642
  */
@@ -2130,36 +1650,18 @@ export interface ListApplicationsResponse {
2130
1650
  */
2131
1651
  HasMoreApplications: boolean | undefined;
2132
1652
  }
2133
- export declare namespace ListApplicationsResponse {
2134
- /**
2135
- * @internal
2136
- */
2137
- const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
2138
- }
2139
1653
  export interface ListTagsForResourceRequest {
2140
1654
  /**
2141
1655
  * <p>The ARN of the application for which to retrieve tags.</p>
2142
1656
  */
2143
1657
  ResourceARN: string | undefined;
2144
1658
  }
2145
- export declare namespace ListTagsForResourceRequest {
2146
- /**
2147
- * @internal
2148
- */
2149
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
2150
- }
2151
1659
  export interface ListTagsForResourceResponse {
2152
1660
  /**
2153
1661
  * <p>The key-value tags assigned to the application.</p>
2154
1662
  */
2155
1663
  Tags?: Tag[];
2156
1664
  }
2157
- export declare namespace ListTagsForResourceResponse {
2158
- /**
2159
- * @internal
2160
- */
2161
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2162
- }
2163
1665
  /**
2164
1666
  * <p></p>
2165
1667
  */
@@ -2173,23 +1675,11 @@ export interface StartApplicationRequest {
2173
1675
  */
2174
1676
  InputConfigurations: InputConfiguration[] | undefined;
2175
1677
  }
2176
- export declare namespace StartApplicationRequest {
2177
- /**
2178
- * @internal
2179
- */
2180
- const filterSensitiveLog: (obj: StartApplicationRequest) => any;
2181
- }
2182
1678
  /**
2183
1679
  * <p></p>
2184
1680
  */
2185
1681
  export interface StartApplicationResponse {
2186
1682
  }
2187
- export declare namespace StartApplicationResponse {
2188
- /**
2189
- * @internal
2190
- */
2191
- const filterSensitiveLog: (obj: StartApplicationResponse) => any;
2192
- }
2193
1683
  /**
2194
1684
  * <p></p>
2195
1685
  */
@@ -2199,23 +1689,11 @@ export interface StopApplicationRequest {
2199
1689
  */
2200
1690
  ApplicationName: string | undefined;
2201
1691
  }
2202
- export declare namespace StopApplicationRequest {
2203
- /**
2204
- * @internal
2205
- */
2206
- const filterSensitiveLog: (obj: StopApplicationRequest) => any;
2207
- }
2208
1692
  /**
2209
1693
  * <p></p>
2210
1694
  */
2211
1695
  export interface StopApplicationResponse {
2212
1696
  }
2213
- export declare namespace StopApplicationResponse {
2214
- /**
2215
- * @internal
2216
- */
2217
- const filterSensitiveLog: (obj: StopApplicationResponse) => any;
2218
- }
2219
1697
  export interface TagResourceRequest {
2220
1698
  /**
2221
1699
  * <p>The ARN of the application to assign the tags.</p>
@@ -2226,20 +1704,8 @@ export interface TagResourceRequest {
2226
1704
  */
2227
1705
  Tags: Tag[] | undefined;
2228
1706
  }
2229
- export declare namespace TagResourceRequest {
2230
- /**
2231
- * @internal
2232
- */
2233
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
2234
- }
2235
1707
  export interface TagResourceResponse {
2236
1708
  }
2237
- export declare namespace TagResourceResponse {
2238
- /**
2239
- * @internal
2240
- */
2241
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
2242
- }
2243
1709
  export interface UntagResourceRequest {
2244
1710
  /**
2245
1711
  * <p>The ARN of the Kinesis Analytics application from which to remove the tags.</p>
@@ -2250,20 +1716,8 @@ export interface UntagResourceRequest {
2250
1716
  */
2251
1717
  TagKeys: string[] | undefined;
2252
1718
  }
2253
- export declare namespace UntagResourceRequest {
2254
- /**
2255
- * @internal
2256
- */
2257
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
2258
- }
2259
1719
  export interface UntagResourceResponse {
2260
1720
  }
2261
- export declare namespace UntagResourceResponse {
2262
- /**
2263
- * @internal
2264
- */
2265
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
2266
- }
2267
1721
  export interface UpdateApplicationRequest {
2268
1722
  /**
2269
1723
  * <p>Name of the Amazon Kinesis Analytics application to update.</p>
@@ -2279,17 +1733,377 @@ export interface UpdateApplicationRequest {
2279
1733
  */
2280
1734
  ApplicationUpdate: ApplicationUpdate | undefined;
2281
1735
  }
2282
- export declare namespace UpdateApplicationRequest {
2283
- /**
2284
- * @internal
2285
- */
2286
- const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
2287
- }
2288
1736
  export interface UpdateApplicationResponse {
2289
1737
  }
2290
- export declare namespace UpdateApplicationResponse {
2291
- /**
2292
- * @internal
2293
- */
2294
- const filterSensitiveLog: (obj: UpdateApplicationResponse) => any;
2295
- }
1738
+ /**
1739
+ * @internal
1740
+ */
1741
+ export declare const CloudWatchLoggingOptionFilterSensitiveLog: (obj: CloudWatchLoggingOption) => any;
1742
+ /**
1743
+ * @internal
1744
+ */
1745
+ export declare const AddApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionRequest) => any;
1746
+ /**
1747
+ * @internal
1748
+ */
1749
+ export declare const AddApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog: (obj: AddApplicationCloudWatchLoggingOptionResponse) => any;
1750
+ /**
1751
+ * @internal
1752
+ */
1753
+ export declare const InputParallelismFilterSensitiveLog: (obj: InputParallelism) => any;
1754
+ /**
1755
+ * @internal
1756
+ */
1757
+ export declare const InputLambdaProcessorFilterSensitiveLog: (obj: InputLambdaProcessor) => any;
1758
+ /**
1759
+ * @internal
1760
+ */
1761
+ export declare const InputProcessingConfigurationFilterSensitiveLog: (obj: InputProcessingConfiguration) => any;
1762
+ /**
1763
+ * @internal
1764
+ */
1765
+ export declare const RecordColumnFilterSensitiveLog: (obj: RecordColumn) => any;
1766
+ /**
1767
+ * @internal
1768
+ */
1769
+ export declare const CSVMappingParametersFilterSensitiveLog: (obj: CSVMappingParameters) => any;
1770
+ /**
1771
+ * @internal
1772
+ */
1773
+ export declare const JSONMappingParametersFilterSensitiveLog: (obj: JSONMappingParameters) => any;
1774
+ /**
1775
+ * @internal
1776
+ */
1777
+ export declare const MappingParametersFilterSensitiveLog: (obj: MappingParameters) => any;
1778
+ /**
1779
+ * @internal
1780
+ */
1781
+ export declare const RecordFormatFilterSensitiveLog: (obj: RecordFormat) => any;
1782
+ /**
1783
+ * @internal
1784
+ */
1785
+ export declare const SourceSchemaFilterSensitiveLog: (obj: SourceSchema) => any;
1786
+ /**
1787
+ * @internal
1788
+ */
1789
+ export declare const KinesisFirehoseInputFilterSensitiveLog: (obj: KinesisFirehoseInput) => any;
1790
+ /**
1791
+ * @internal
1792
+ */
1793
+ export declare const KinesisStreamsInputFilterSensitiveLog: (obj: KinesisStreamsInput) => any;
1794
+ /**
1795
+ * @internal
1796
+ */
1797
+ export declare const InputFilterSensitiveLog: (obj: Input) => any;
1798
+ /**
1799
+ * @internal
1800
+ */
1801
+ export declare const AddApplicationInputRequestFilterSensitiveLog: (obj: AddApplicationInputRequest) => any;
1802
+ /**
1803
+ * @internal
1804
+ */
1805
+ export declare const AddApplicationInputResponseFilterSensitiveLog: (obj: AddApplicationInputResponse) => any;
1806
+ /**
1807
+ * @internal
1808
+ */
1809
+ export declare const AddApplicationInputProcessingConfigurationRequestFilterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationRequest) => any;
1810
+ /**
1811
+ * @internal
1812
+ */
1813
+ export declare const AddApplicationInputProcessingConfigurationResponseFilterSensitiveLog: (obj: AddApplicationInputProcessingConfigurationResponse) => any;
1814
+ /**
1815
+ * @internal
1816
+ */
1817
+ export declare const DestinationSchemaFilterSensitiveLog: (obj: DestinationSchema) => any;
1818
+ /**
1819
+ * @internal
1820
+ */
1821
+ export declare const KinesisFirehoseOutputFilterSensitiveLog: (obj: KinesisFirehoseOutput) => any;
1822
+ /**
1823
+ * @internal
1824
+ */
1825
+ export declare const KinesisStreamsOutputFilterSensitiveLog: (obj: KinesisStreamsOutput) => any;
1826
+ /**
1827
+ * @internal
1828
+ */
1829
+ export declare const LambdaOutputFilterSensitiveLog: (obj: LambdaOutput) => any;
1830
+ /**
1831
+ * @internal
1832
+ */
1833
+ export declare const OutputFilterSensitiveLog: (obj: Output) => any;
1834
+ /**
1835
+ * @internal
1836
+ */
1837
+ export declare const AddApplicationOutputRequestFilterSensitiveLog: (obj: AddApplicationOutputRequest) => any;
1838
+ /**
1839
+ * @internal
1840
+ */
1841
+ export declare const AddApplicationOutputResponseFilterSensitiveLog: (obj: AddApplicationOutputResponse) => any;
1842
+ /**
1843
+ * @internal
1844
+ */
1845
+ export declare const S3ReferenceDataSourceFilterSensitiveLog: (obj: S3ReferenceDataSource) => any;
1846
+ /**
1847
+ * @internal
1848
+ */
1849
+ export declare const ReferenceDataSourceFilterSensitiveLog: (obj: ReferenceDataSource) => any;
1850
+ /**
1851
+ * @internal
1852
+ */
1853
+ export declare const AddApplicationReferenceDataSourceRequestFilterSensitiveLog: (obj: AddApplicationReferenceDataSourceRequest) => any;
1854
+ /**
1855
+ * @internal
1856
+ */
1857
+ export declare const AddApplicationReferenceDataSourceResponseFilterSensitiveLog: (obj: AddApplicationReferenceDataSourceResponse) => any;
1858
+ /**
1859
+ * @internal
1860
+ */
1861
+ export declare const CloudWatchLoggingOptionDescriptionFilterSensitiveLog: (obj: CloudWatchLoggingOptionDescription) => any;
1862
+ /**
1863
+ * @internal
1864
+ */
1865
+ export declare const InputLambdaProcessorDescriptionFilterSensitiveLog: (obj: InputLambdaProcessorDescription) => any;
1866
+ /**
1867
+ * @internal
1868
+ */
1869
+ export declare const InputProcessingConfigurationDescriptionFilterSensitiveLog: (obj: InputProcessingConfigurationDescription) => any;
1870
+ /**
1871
+ * @internal
1872
+ */
1873
+ export declare const InputStartingPositionConfigurationFilterSensitiveLog: (obj: InputStartingPositionConfiguration) => any;
1874
+ /**
1875
+ * @internal
1876
+ */
1877
+ export declare const KinesisFirehoseInputDescriptionFilterSensitiveLog: (obj: KinesisFirehoseInputDescription) => any;
1878
+ /**
1879
+ * @internal
1880
+ */
1881
+ export declare const KinesisStreamsInputDescriptionFilterSensitiveLog: (obj: KinesisStreamsInputDescription) => any;
1882
+ /**
1883
+ * @internal
1884
+ */
1885
+ export declare const InputDescriptionFilterSensitiveLog: (obj: InputDescription) => any;
1886
+ /**
1887
+ * @internal
1888
+ */
1889
+ export declare const KinesisFirehoseOutputDescriptionFilterSensitiveLog: (obj: KinesisFirehoseOutputDescription) => any;
1890
+ /**
1891
+ * @internal
1892
+ */
1893
+ export declare const KinesisStreamsOutputDescriptionFilterSensitiveLog: (obj: KinesisStreamsOutputDescription) => any;
1894
+ /**
1895
+ * @internal
1896
+ */
1897
+ export declare const LambdaOutputDescriptionFilterSensitiveLog: (obj: LambdaOutputDescription) => any;
1898
+ /**
1899
+ * @internal
1900
+ */
1901
+ export declare const OutputDescriptionFilterSensitiveLog: (obj: OutputDescription) => any;
1902
+ /**
1903
+ * @internal
1904
+ */
1905
+ export declare const S3ReferenceDataSourceDescriptionFilterSensitiveLog: (obj: S3ReferenceDataSourceDescription) => any;
1906
+ /**
1907
+ * @internal
1908
+ */
1909
+ export declare const ReferenceDataSourceDescriptionFilterSensitiveLog: (obj: ReferenceDataSourceDescription) => any;
1910
+ /**
1911
+ * @internal
1912
+ */
1913
+ export declare const ApplicationDetailFilterSensitiveLog: (obj: ApplicationDetail) => any;
1914
+ /**
1915
+ * @internal
1916
+ */
1917
+ export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
1918
+ /**
1919
+ * @internal
1920
+ */
1921
+ export declare const CloudWatchLoggingOptionUpdateFilterSensitiveLog: (obj: CloudWatchLoggingOptionUpdate) => any;
1922
+ /**
1923
+ * @internal
1924
+ */
1925
+ export declare const InputParallelismUpdateFilterSensitiveLog: (obj: InputParallelismUpdate) => any;
1926
+ /**
1927
+ * @internal
1928
+ */
1929
+ export declare const InputLambdaProcessorUpdateFilterSensitiveLog: (obj: InputLambdaProcessorUpdate) => any;
1930
+ /**
1931
+ * @internal
1932
+ */
1933
+ export declare const InputProcessingConfigurationUpdateFilterSensitiveLog: (obj: InputProcessingConfigurationUpdate) => any;
1934
+ /**
1935
+ * @internal
1936
+ */
1937
+ export declare const InputSchemaUpdateFilterSensitiveLog: (obj: InputSchemaUpdate) => any;
1938
+ /**
1939
+ * @internal
1940
+ */
1941
+ export declare const KinesisFirehoseInputUpdateFilterSensitiveLog: (obj: KinesisFirehoseInputUpdate) => any;
1942
+ /**
1943
+ * @internal
1944
+ */
1945
+ export declare const KinesisStreamsInputUpdateFilterSensitiveLog: (obj: KinesisStreamsInputUpdate) => any;
1946
+ /**
1947
+ * @internal
1948
+ */
1949
+ export declare const InputUpdateFilterSensitiveLog: (obj: InputUpdate) => any;
1950
+ /**
1951
+ * @internal
1952
+ */
1953
+ export declare const KinesisFirehoseOutputUpdateFilterSensitiveLog: (obj: KinesisFirehoseOutputUpdate) => any;
1954
+ /**
1955
+ * @internal
1956
+ */
1957
+ export declare const KinesisStreamsOutputUpdateFilterSensitiveLog: (obj: KinesisStreamsOutputUpdate) => any;
1958
+ /**
1959
+ * @internal
1960
+ */
1961
+ export declare const LambdaOutputUpdateFilterSensitiveLog: (obj: LambdaOutputUpdate) => any;
1962
+ /**
1963
+ * @internal
1964
+ */
1965
+ export declare const OutputUpdateFilterSensitiveLog: (obj: OutputUpdate) => any;
1966
+ /**
1967
+ * @internal
1968
+ */
1969
+ export declare const S3ReferenceDataSourceUpdateFilterSensitiveLog: (obj: S3ReferenceDataSourceUpdate) => any;
1970
+ /**
1971
+ * @internal
1972
+ */
1973
+ export declare const ReferenceDataSourceUpdateFilterSensitiveLog: (obj: ReferenceDataSourceUpdate) => any;
1974
+ /**
1975
+ * @internal
1976
+ */
1977
+ export declare const ApplicationUpdateFilterSensitiveLog: (obj: ApplicationUpdate) => any;
1978
+ /**
1979
+ * @internal
1980
+ */
1981
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1982
+ /**
1983
+ * @internal
1984
+ */
1985
+ export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
1986
+ /**
1987
+ * @internal
1988
+ */
1989
+ export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
1990
+ /**
1991
+ * @internal
1992
+ */
1993
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
1994
+ /**
1995
+ * @internal
1996
+ */
1997
+ export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
1998
+ /**
1999
+ * @internal
2000
+ */
2001
+ export declare const DeleteApplicationCloudWatchLoggingOptionRequestFilterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionRequest) => any;
2002
+ /**
2003
+ * @internal
2004
+ */
2005
+ export declare const DeleteApplicationCloudWatchLoggingOptionResponseFilterSensitiveLog: (obj: DeleteApplicationCloudWatchLoggingOptionResponse) => any;
2006
+ /**
2007
+ * @internal
2008
+ */
2009
+ export declare const DeleteApplicationInputProcessingConfigurationRequestFilterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationRequest) => any;
2010
+ /**
2011
+ * @internal
2012
+ */
2013
+ export declare const DeleteApplicationInputProcessingConfigurationResponseFilterSensitiveLog: (obj: DeleteApplicationInputProcessingConfigurationResponse) => any;
2014
+ /**
2015
+ * @internal
2016
+ */
2017
+ export declare const DeleteApplicationOutputRequestFilterSensitiveLog: (obj: DeleteApplicationOutputRequest) => any;
2018
+ /**
2019
+ * @internal
2020
+ */
2021
+ export declare const DeleteApplicationOutputResponseFilterSensitiveLog: (obj: DeleteApplicationOutputResponse) => any;
2022
+ /**
2023
+ * @internal
2024
+ */
2025
+ export declare const DeleteApplicationReferenceDataSourceRequestFilterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceRequest) => any;
2026
+ /**
2027
+ * @internal
2028
+ */
2029
+ export declare const DeleteApplicationReferenceDataSourceResponseFilterSensitiveLog: (obj: DeleteApplicationReferenceDataSourceResponse) => any;
2030
+ /**
2031
+ * @internal
2032
+ */
2033
+ export declare const DescribeApplicationRequestFilterSensitiveLog: (obj: DescribeApplicationRequest) => any;
2034
+ /**
2035
+ * @internal
2036
+ */
2037
+ export declare const DescribeApplicationResponseFilterSensitiveLog: (obj: DescribeApplicationResponse) => any;
2038
+ /**
2039
+ * @internal
2040
+ */
2041
+ export declare const S3ConfigurationFilterSensitiveLog: (obj: S3Configuration) => any;
2042
+ /**
2043
+ * @internal
2044
+ */
2045
+ export declare const DiscoverInputSchemaRequestFilterSensitiveLog: (obj: DiscoverInputSchemaRequest) => any;
2046
+ /**
2047
+ * @internal
2048
+ */
2049
+ export declare const DiscoverInputSchemaResponseFilterSensitiveLog: (obj: DiscoverInputSchemaResponse) => any;
2050
+ /**
2051
+ * @internal
2052
+ */
2053
+ export declare const InputConfigurationFilterSensitiveLog: (obj: InputConfiguration) => any;
2054
+ /**
2055
+ * @internal
2056
+ */
2057
+ export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
2058
+ /**
2059
+ * @internal
2060
+ */
2061
+ export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
2062
+ /**
2063
+ * @internal
2064
+ */
2065
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
2066
+ /**
2067
+ * @internal
2068
+ */
2069
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
2070
+ /**
2071
+ * @internal
2072
+ */
2073
+ export declare const StartApplicationRequestFilterSensitiveLog: (obj: StartApplicationRequest) => any;
2074
+ /**
2075
+ * @internal
2076
+ */
2077
+ export declare const StartApplicationResponseFilterSensitiveLog: (obj: StartApplicationResponse) => any;
2078
+ /**
2079
+ * @internal
2080
+ */
2081
+ export declare const StopApplicationRequestFilterSensitiveLog: (obj: StopApplicationRequest) => any;
2082
+ /**
2083
+ * @internal
2084
+ */
2085
+ export declare const StopApplicationResponseFilterSensitiveLog: (obj: StopApplicationResponse) => any;
2086
+ /**
2087
+ * @internal
2088
+ */
2089
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
2090
+ /**
2091
+ * @internal
2092
+ */
2093
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
2094
+ /**
2095
+ * @internal
2096
+ */
2097
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
2098
+ /**
2099
+ * @internal
2100
+ */
2101
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
2102
+ /**
2103
+ * @internal
2104
+ */
2105
+ export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
2106
+ /**
2107
+ * @internal
2108
+ */
2109
+ export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;