aws-sdk-kinesisanalytics 1.41.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,18 +10,6 @@
10
10
  module Aws::KinesisAnalytics
11
11
  module Types
12
12
 
13
- # @note When making an API call, you may pass AddApplicationCloudWatchLoggingOptionRequest
14
- # data as a hash:
15
- #
16
- # {
17
- # application_name: "ApplicationName", # required
18
- # current_application_version_id: 1, # required
19
- # cloud_watch_logging_option: { # required
20
- # log_stream_arn: "LogStreamARN", # required
21
- # role_arn: "RoleARN", # required
22
- # },
23
- # }
24
- #
25
13
  # @!attribute [rw] application_name
26
14
  # The Kinesis Analytics application name.
27
15
  # @return [String]
@@ -51,21 +39,6 @@ module Aws::KinesisAnalytics
51
39
  #
52
40
  class AddApplicationCloudWatchLoggingOptionResponse < Aws::EmptyStructure; end
53
41
 
54
- # @note When making an API call, you may pass AddApplicationInputProcessingConfigurationRequest
55
- # data as a hash:
56
- #
57
- # {
58
- # application_name: "ApplicationName", # required
59
- # current_application_version_id: 1, # required
60
- # input_id: "Id", # required
61
- # input_processing_configuration: { # required
62
- # input_lambda_processor: { # required
63
- # resource_arn: "ResourceARN", # required
64
- # role_arn: "RoleARN", # required
65
- # },
66
- # },
67
- # }
68
- #
69
42
  # @!attribute [rw] application_name
70
43
  # Name of the application to which you want to add the input
71
44
  # processing configuration.
@@ -116,56 +89,6 @@ module Aws::KinesisAnalytics
116
89
  #
117
90
  class AddApplicationInputProcessingConfigurationResponse < Aws::EmptyStructure; end
118
91
 
119
- # @note When making an API call, you may pass AddApplicationInputRequest
120
- # data as a hash:
121
- #
122
- # {
123
- # application_name: "ApplicationName", # required
124
- # current_application_version_id: 1, # required
125
- # input: { # required
126
- # name_prefix: "InAppStreamName", # required
127
- # input_processing_configuration: {
128
- # input_lambda_processor: { # required
129
- # resource_arn: "ResourceARN", # required
130
- # role_arn: "RoleARN", # required
131
- # },
132
- # },
133
- # kinesis_streams_input: {
134
- # resource_arn: "ResourceARN", # required
135
- # role_arn: "RoleARN", # required
136
- # },
137
- # kinesis_firehose_input: {
138
- # resource_arn: "ResourceARN", # required
139
- # role_arn: "RoleARN", # required
140
- # },
141
- # input_parallelism: {
142
- # count: 1,
143
- # },
144
- # input_schema: { # required
145
- # record_format: { # required
146
- # record_format_type: "JSON", # required, accepts JSON, CSV
147
- # mapping_parameters: {
148
- # json_mapping_parameters: {
149
- # record_row_path: "RecordRowPath", # required
150
- # },
151
- # csv_mapping_parameters: {
152
- # record_row_delimiter: "RecordRowDelimiter", # required
153
- # record_column_delimiter: "RecordColumnDelimiter", # required
154
- # },
155
- # },
156
- # },
157
- # record_encoding: "RecordEncoding",
158
- # record_columns: [ # required
159
- # {
160
- # name: "RecordColumnName", # required
161
- # mapping: "RecordColumnMapping",
162
- # sql_type: "RecordColumnSqlType", # required
163
- # },
164
- # ],
165
- # },
166
- # },
167
- # }
168
- #
169
92
  # @!attribute [rw] application_name
170
93
  # Name of your existing Amazon Kinesis Analytics application to which
171
94
  # you want to add the streaming source.
@@ -203,32 +126,6 @@ module Aws::KinesisAnalytics
203
126
  #
204
127
  class AddApplicationInputResponse < Aws::EmptyStructure; end
205
128
 
206
- # @note When making an API call, you may pass AddApplicationOutputRequest
207
- # data as a hash:
208
- #
209
- # {
210
- # application_name: "ApplicationName", # required
211
- # current_application_version_id: 1, # required
212
- # output: { # required
213
- # name: "InAppStreamName", # required
214
- # kinesis_streams_output: {
215
- # resource_arn: "ResourceARN", # required
216
- # role_arn: "RoleARN", # required
217
- # },
218
- # kinesis_firehose_output: {
219
- # resource_arn: "ResourceARN", # required
220
- # role_arn: "RoleARN", # required
221
- # },
222
- # lambda_output: {
223
- # resource_arn: "ResourceARN", # required
224
- # role_arn: "RoleARN", # required
225
- # },
226
- # destination_schema: { # required
227
- # record_format_type: "JSON", # required, accepts JSON, CSV
228
- # },
229
- # },
230
- # }
231
- #
232
129
  # @!attribute [rw] application_name
233
130
  # Name of the application to which you want to add the output
234
131
  # configuration.
@@ -268,44 +165,6 @@ module Aws::KinesisAnalytics
268
165
  #
269
166
  class AddApplicationOutputResponse < Aws::EmptyStructure; end
270
167
 
271
- # @note When making an API call, you may pass AddApplicationReferenceDataSourceRequest
272
- # data as a hash:
273
- #
274
- # {
275
- # application_name: "ApplicationName", # required
276
- # current_application_version_id: 1, # required
277
- # reference_data_source: { # required
278
- # table_name: "InAppTableName", # required
279
- # s3_reference_data_source: {
280
- # bucket_arn: "BucketARN", # required
281
- # file_key: "FileKey", # required
282
- # reference_role_arn: "RoleARN", # required
283
- # },
284
- # reference_schema: { # required
285
- # record_format: { # required
286
- # record_format_type: "JSON", # required, accepts JSON, CSV
287
- # mapping_parameters: {
288
- # json_mapping_parameters: {
289
- # record_row_path: "RecordRowPath", # required
290
- # },
291
- # csv_mapping_parameters: {
292
- # record_row_delimiter: "RecordRowDelimiter", # required
293
- # record_column_delimiter: "RecordColumnDelimiter", # required
294
- # },
295
- # },
296
- # },
297
- # record_encoding: "RecordEncoding",
298
- # record_columns: [ # required
299
- # {
300
- # name: "RecordColumnName", # required
301
- # mapping: "RecordColumnMapping",
302
- # sql_type: "RecordColumnSqlType", # required
303
- # },
304
- # ],
305
- # },
306
- # },
307
- # }
308
- #
309
168
  # @!attribute [rw] application_name
310
169
  # Name of an existing application.
311
170
  # @return [String]
@@ -484,119 +343,6 @@ module Aws::KinesisAnalytics
484
343
  # Describes updates to apply to an existing Amazon Kinesis Analytics
485
344
  # application.
486
345
  #
487
- # @note When making an API call, you may pass ApplicationUpdate
488
- # data as a hash:
489
- #
490
- # {
491
- # input_updates: [
492
- # {
493
- # input_id: "Id", # required
494
- # name_prefix_update: "InAppStreamName",
495
- # input_processing_configuration_update: {
496
- # input_lambda_processor_update: { # required
497
- # resource_arn_update: "ResourceARN",
498
- # role_arn_update: "RoleARN",
499
- # },
500
- # },
501
- # kinesis_streams_input_update: {
502
- # resource_arn_update: "ResourceARN",
503
- # role_arn_update: "RoleARN",
504
- # },
505
- # kinesis_firehose_input_update: {
506
- # resource_arn_update: "ResourceARN",
507
- # role_arn_update: "RoleARN",
508
- # },
509
- # input_schema_update: {
510
- # record_format_update: {
511
- # record_format_type: "JSON", # required, accepts JSON, CSV
512
- # mapping_parameters: {
513
- # json_mapping_parameters: {
514
- # record_row_path: "RecordRowPath", # required
515
- # },
516
- # csv_mapping_parameters: {
517
- # record_row_delimiter: "RecordRowDelimiter", # required
518
- # record_column_delimiter: "RecordColumnDelimiter", # required
519
- # },
520
- # },
521
- # },
522
- # record_encoding_update: "RecordEncoding",
523
- # record_column_updates: [
524
- # {
525
- # name: "RecordColumnName", # required
526
- # mapping: "RecordColumnMapping",
527
- # sql_type: "RecordColumnSqlType", # required
528
- # },
529
- # ],
530
- # },
531
- # input_parallelism_update: {
532
- # count_update: 1,
533
- # },
534
- # },
535
- # ],
536
- # application_code_update: "ApplicationCode",
537
- # output_updates: [
538
- # {
539
- # output_id: "Id", # required
540
- # name_update: "InAppStreamName",
541
- # kinesis_streams_output_update: {
542
- # resource_arn_update: "ResourceARN",
543
- # role_arn_update: "RoleARN",
544
- # },
545
- # kinesis_firehose_output_update: {
546
- # resource_arn_update: "ResourceARN",
547
- # role_arn_update: "RoleARN",
548
- # },
549
- # lambda_output_update: {
550
- # resource_arn_update: "ResourceARN",
551
- # role_arn_update: "RoleARN",
552
- # },
553
- # destination_schema_update: {
554
- # record_format_type: "JSON", # required, accepts JSON, CSV
555
- # },
556
- # },
557
- # ],
558
- # reference_data_source_updates: [
559
- # {
560
- # reference_id: "Id", # required
561
- # table_name_update: "InAppTableName",
562
- # s3_reference_data_source_update: {
563
- # bucket_arn_update: "BucketARN",
564
- # file_key_update: "FileKey",
565
- # reference_role_arn_update: "RoleARN",
566
- # },
567
- # reference_schema_update: {
568
- # record_format: { # required
569
- # record_format_type: "JSON", # required, accepts JSON, CSV
570
- # mapping_parameters: {
571
- # json_mapping_parameters: {
572
- # record_row_path: "RecordRowPath", # required
573
- # },
574
- # csv_mapping_parameters: {
575
- # record_row_delimiter: "RecordRowDelimiter", # required
576
- # record_column_delimiter: "RecordColumnDelimiter", # required
577
- # },
578
- # },
579
- # },
580
- # record_encoding: "RecordEncoding",
581
- # record_columns: [ # required
582
- # {
583
- # name: "RecordColumnName", # required
584
- # mapping: "RecordColumnMapping",
585
- # sql_type: "RecordColumnSqlType", # required
586
- # },
587
- # ],
588
- # },
589
- # },
590
- # ],
591
- # cloud_watch_logging_option_updates: [
592
- # {
593
- # cloud_watch_logging_option_id: "Id", # required
594
- # log_stream_arn_update: "LogStreamARN",
595
- # role_arn_update: "RoleARN",
596
- # },
597
- # ],
598
- # }
599
- #
600
346
  # @!attribute [rw] input_updates
601
347
  # Describes application input configuration updates.
602
348
  # @return [Array<Types::InputUpdate>]
@@ -638,14 +384,6 @@ module Aws::KinesisAnalytics
638
384
  #
639
385
  # `"name2", "address2"`
640
386
  #
641
- # @note When making an API call, you may pass CSVMappingParameters
642
- # data as a hash:
643
- #
644
- # {
645
- # record_row_delimiter: "RecordRowDelimiter", # required
646
- # record_column_delimiter: "RecordColumnDelimiter", # required
647
- # }
648
- #
649
387
  # @!attribute [rw] record_row_delimiter
650
388
  # Row delimiter. For example, in a CSV format, *'\\n'* is the
651
389
  # typical row delimiter.
@@ -668,14 +406,6 @@ module Aws::KinesisAnalytics
668
406
  # Provides a description of CloudWatch logging options, including the
669
407
  # log stream Amazon Resource Name (ARN) and the role ARN.
670
408
  #
671
- # @note When making an API call, you may pass CloudWatchLoggingOption
672
- # data as a hash:
673
- #
674
- # {
675
- # log_stream_arn: "LogStreamARN", # required
676
- # role_arn: "RoleARN", # required
677
- # }
678
- #
679
409
  # @!attribute [rw] log_stream_arn
680
410
  # ARN of the CloudWatch log to receive application messages.
681
411
  # @return [String]
@@ -723,15 +453,6 @@ module Aws::KinesisAnalytics
723
453
 
724
454
  # Describes CloudWatch logging option updates.
725
455
  #
726
- # @note When making an API call, you may pass CloudWatchLoggingOptionUpdate
727
- # data as a hash:
728
- #
729
- # {
730
- # cloud_watch_logging_option_id: "Id", # required
731
- # log_stream_arn_update: "LogStreamARN",
732
- # role_arn_update: "RoleARN",
733
- # }
734
- #
735
456
  # @!attribute [rw] cloud_watch_logging_option_id
736
457
  # ID of the CloudWatch logging option to update
737
458
  # @return [String]
@@ -788,91 +509,6 @@ module Aws::KinesisAnalytics
788
509
 
789
510
  # TBD
790
511
  #
791
- # @note When making an API call, you may pass CreateApplicationRequest
792
- # data as a hash:
793
- #
794
- # {
795
- # application_name: "ApplicationName", # required
796
- # application_description: "ApplicationDescription",
797
- # inputs: [
798
- # {
799
- # name_prefix: "InAppStreamName", # required
800
- # input_processing_configuration: {
801
- # input_lambda_processor: { # required
802
- # resource_arn: "ResourceARN", # required
803
- # role_arn: "RoleARN", # required
804
- # },
805
- # },
806
- # kinesis_streams_input: {
807
- # resource_arn: "ResourceARN", # required
808
- # role_arn: "RoleARN", # required
809
- # },
810
- # kinesis_firehose_input: {
811
- # resource_arn: "ResourceARN", # required
812
- # role_arn: "RoleARN", # required
813
- # },
814
- # input_parallelism: {
815
- # count: 1,
816
- # },
817
- # input_schema: { # required
818
- # record_format: { # required
819
- # record_format_type: "JSON", # required, accepts JSON, CSV
820
- # mapping_parameters: {
821
- # json_mapping_parameters: {
822
- # record_row_path: "RecordRowPath", # required
823
- # },
824
- # csv_mapping_parameters: {
825
- # record_row_delimiter: "RecordRowDelimiter", # required
826
- # record_column_delimiter: "RecordColumnDelimiter", # required
827
- # },
828
- # },
829
- # },
830
- # record_encoding: "RecordEncoding",
831
- # record_columns: [ # required
832
- # {
833
- # name: "RecordColumnName", # required
834
- # mapping: "RecordColumnMapping",
835
- # sql_type: "RecordColumnSqlType", # required
836
- # },
837
- # ],
838
- # },
839
- # },
840
- # ],
841
- # outputs: [
842
- # {
843
- # name: "InAppStreamName", # required
844
- # kinesis_streams_output: {
845
- # resource_arn: "ResourceARN", # required
846
- # role_arn: "RoleARN", # required
847
- # },
848
- # kinesis_firehose_output: {
849
- # resource_arn: "ResourceARN", # required
850
- # role_arn: "RoleARN", # required
851
- # },
852
- # lambda_output: {
853
- # resource_arn: "ResourceARN", # required
854
- # role_arn: "RoleARN", # required
855
- # },
856
- # destination_schema: { # required
857
- # record_format_type: "JSON", # required, accepts JSON, CSV
858
- # },
859
- # },
860
- # ],
861
- # cloud_watch_logging_options: [
862
- # {
863
- # log_stream_arn: "LogStreamARN", # required
864
- # role_arn: "RoleARN", # required
865
- # },
866
- # ],
867
- # application_code: "ApplicationCode",
868
- # tags: [
869
- # {
870
- # key: "TagKey", # required
871
- # value: "TagValue",
872
- # },
873
- # ],
874
- # }
875
- #
876
512
  # @!attribute [rw] application_name
877
513
  # Name of your Amazon Kinesis Analytics application (for example,
878
514
  # `sample-app`).
@@ -1000,15 +636,6 @@ module Aws::KinesisAnalytics
1000
636
  include Aws::Structure
1001
637
  end
1002
638
 
1003
- # @note When making an API call, you may pass DeleteApplicationCloudWatchLoggingOptionRequest
1004
- # data as a hash:
1005
- #
1006
- # {
1007
- # application_name: "ApplicationName", # required
1008
- # current_application_version_id: 1, # required
1009
- # cloud_watch_logging_option_id: "Id", # required
1010
- # }
1011
- #
1012
639
  # @!attribute [rw] application_name
1013
640
  # The Kinesis Analytics application name.
1014
641
  # @return [String]
@@ -1041,15 +668,6 @@ module Aws::KinesisAnalytics
1041
668
  #
1042
669
  class DeleteApplicationCloudWatchLoggingOptionResponse < Aws::EmptyStructure; end
1043
670
 
1044
- # @note When making an API call, you may pass DeleteApplicationInputProcessingConfigurationRequest
1045
- # data as a hash:
1046
- #
1047
- # {
1048
- # application_name: "ApplicationName", # required
1049
- # current_application_version_id: 1, # required
1050
- # input_id: "Id", # required
1051
- # }
1052
- #
1053
671
  # @!attribute [rw] application_name
1054
672
  # The Kinesis Analytics application name.
1055
673
  # @return [String]
@@ -1082,15 +700,6 @@ module Aws::KinesisAnalytics
1082
700
  #
1083
701
  class DeleteApplicationInputProcessingConfigurationResponse < Aws::EmptyStructure; end
1084
702
 
1085
- # @note When making an API call, you may pass DeleteApplicationOutputRequest
1086
- # data as a hash:
1087
- #
1088
- # {
1089
- # application_name: "ApplicationName", # required
1090
- # current_application_version_id: 1, # required
1091
- # output_id: "Id", # required
1092
- # }
1093
- #
1094
703
  # @!attribute [rw] application_name
1095
704
  # Amazon Kinesis Analytics application name.
1096
705
  # @return [String]
@@ -1135,15 +744,6 @@ module Aws::KinesisAnalytics
1135
744
  #
1136
745
  class DeleteApplicationOutputResponse < Aws::EmptyStructure; end
1137
746
 
1138
- # @note When making an API call, you may pass DeleteApplicationReferenceDataSourceRequest
1139
- # data as a hash:
1140
- #
1141
- # {
1142
- # application_name: "ApplicationName", # required
1143
- # current_application_version_id: 1, # required
1144
- # reference_id: "Id", # required
1145
- # }
1146
- #
1147
747
  # @!attribute [rw] application_name
1148
748
  # Name of an existing application.
1149
749
  # @return [String]
@@ -1186,14 +786,6 @@ module Aws::KinesisAnalytics
1186
786
  #
1187
787
  class DeleteApplicationReferenceDataSourceResponse < Aws::EmptyStructure; end
1188
788
 
1189
- # @note When making an API call, you may pass DeleteApplicationRequest
1190
- # data as a hash:
1191
- #
1192
- # {
1193
- # application_name: "ApplicationName", # required
1194
- # create_timestamp: Time.now, # required
1195
- # }
1196
- #
1197
789
  # @!attribute [rw] application_name
1198
790
  # Name of the Amazon Kinesis Analytics application to delete.
1199
791
  # @return [String]
@@ -1215,13 +807,6 @@ module Aws::KinesisAnalytics
1215
807
  #
1216
808
  class DeleteApplicationResponse < Aws::EmptyStructure; end
1217
809
 
1218
- # @note When making an API call, you may pass DescribeApplicationRequest
1219
- # data as a hash:
1220
- #
1221
- # {
1222
- # application_name: "ApplicationName", # required
1223
- # }
1224
- #
1225
810
  # @!attribute [rw] application_name
1226
811
  # Name of the application.
1227
812
  # @return [String]
@@ -1255,13 +840,6 @@ module Aws::KinesisAnalytics
1255
840
  #
1256
841
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
1257
842
  #
1258
- # @note When making an API call, you may pass DestinationSchema
1259
- # data as a hash:
1260
- #
1261
- # {
1262
- # record_format_type: "JSON", # required, accepts JSON, CSV
1263
- # }
1264
- #
1265
843
  # @!attribute [rw] record_format_type
1266
844
  # Specifies the format of the records on the output stream.
1267
845
  # @return [String]
@@ -1274,28 +852,6 @@ module Aws::KinesisAnalytics
1274
852
  include Aws::Structure
1275
853
  end
1276
854
 
1277
- # @note When making an API call, you may pass DiscoverInputSchemaRequest
1278
- # data as a hash:
1279
- #
1280
- # {
1281
- # resource_arn: "ResourceARN",
1282
- # role_arn: "RoleARN",
1283
- # input_starting_position_configuration: {
1284
- # input_starting_position: "NOW", # accepts NOW, TRIM_HORIZON, LAST_STOPPED_POINT
1285
- # },
1286
- # s3_configuration: {
1287
- # role_arn: "RoleARN", # required
1288
- # bucket_arn: "BucketARN", # required
1289
- # file_key: "FileKey", # required
1290
- # },
1291
- # input_processing_configuration: {
1292
- # input_lambda_processor: { # required
1293
- # resource_arn: "ResourceARN", # required
1294
- # role_arn: "RoleARN", # required
1295
- # },
1296
- # },
1297
- # }
1298
- #
1299
855
  # @!attribute [rw] resource_arn
1300
856
  # Amazon Resource Name (ARN) of the streaming source.
1301
857
  # @return [String]
@@ -1377,52 +933,6 @@ module Aws::KinesisAnalytics
1377
933
  #
1378
934
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1379
935
  #
1380
- # @note When making an API call, you may pass Input
1381
- # data as a hash:
1382
- #
1383
- # {
1384
- # name_prefix: "InAppStreamName", # required
1385
- # input_processing_configuration: {
1386
- # input_lambda_processor: { # required
1387
- # resource_arn: "ResourceARN", # required
1388
- # role_arn: "RoleARN", # required
1389
- # },
1390
- # },
1391
- # kinesis_streams_input: {
1392
- # resource_arn: "ResourceARN", # required
1393
- # role_arn: "RoleARN", # required
1394
- # },
1395
- # kinesis_firehose_input: {
1396
- # resource_arn: "ResourceARN", # required
1397
- # role_arn: "RoleARN", # required
1398
- # },
1399
- # input_parallelism: {
1400
- # count: 1,
1401
- # },
1402
- # input_schema: { # required
1403
- # record_format: { # required
1404
- # record_format_type: "JSON", # required, accepts JSON, CSV
1405
- # mapping_parameters: {
1406
- # json_mapping_parameters: {
1407
- # record_row_path: "RecordRowPath", # required
1408
- # },
1409
- # csv_mapping_parameters: {
1410
- # record_row_delimiter: "RecordRowDelimiter", # required
1411
- # record_column_delimiter: "RecordColumnDelimiter", # required
1412
- # },
1413
- # },
1414
- # },
1415
- # record_encoding: "RecordEncoding",
1416
- # record_columns: [ # required
1417
- # {
1418
- # name: "RecordColumnName", # required
1419
- # mapping: "RecordColumnMapping",
1420
- # sql_type: "RecordColumnSqlType", # required
1421
- # },
1422
- # ],
1423
- # },
1424
- # }
1425
- #
1426
936
  # @!attribute [rw] name_prefix
1427
937
  # Name prefix to use when creating an in-application stream. Suppose
1428
938
  # that you specify a prefix "MyInApplicationStream." Amazon Kinesis
@@ -1502,16 +1012,6 @@ module Aws::KinesisAnalytics
1502
1012
  # identifies the input source and the point in the input source at which
1503
1013
  # you want the application to start processing records.
1504
1014
  #
1505
- # @note When making an API call, you may pass InputConfiguration
1506
- # data as a hash:
1507
- #
1508
- # {
1509
- # id: "Id", # required
1510
- # input_starting_position_configuration: { # required
1511
- # input_starting_position: "NOW", # accepts NOW, TRIM_HORIZON, LAST_STOPPED_POINT
1512
- # },
1513
- # }
1514
- #
1515
1015
  # @!attribute [rw] id
1516
1016
  # Input source ID. You can get this ID by calling the
1517
1017
  # [DescribeApplication][1] operation.
@@ -1617,14 +1117,6 @@ module Aws::KinesisAnalytics
1617
1117
  #
1618
1118
  # [1]: https://docs.aws.amazon.com/lambda/
1619
1119
  #
1620
- # @note When making an API call, you may pass InputLambdaProcessor
1621
- # data as a hash:
1622
- #
1623
- # {
1624
- # resource_arn: "ResourceARN", # required
1625
- # role_arn: "RoleARN", # required
1626
- # }
1627
- #
1628
1120
  # @!attribute [rw] resource_arn
1629
1121
  # The ARN of the [AWS Lambda][1] function that operates on records in
1630
1122
  # the stream.
@@ -1694,14 +1186,6 @@ module Aws::KinesisAnalytics
1694
1186
  #
1695
1187
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html
1696
1188
  #
1697
- # @note When making an API call, you may pass InputLambdaProcessorUpdate
1698
- # data as a hash:
1699
- #
1700
- # {
1701
- # resource_arn_update: "ResourceARN",
1702
- # role_arn_update: "RoleARN",
1703
- # }
1704
- #
1705
1189
  # @!attribute [rw] resource_arn_update
1706
1190
  # The Amazon Resource Name (ARN) of the new [AWS Lambda][1] function
1707
1191
  # that is used to preprocess the records in the stream.
@@ -1740,13 +1224,6 @@ module Aws::KinesisAnalytics
1740
1224
  #
1741
1225
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1742
1226
  #
1743
- # @note When making an API call, you may pass InputParallelism
1744
- # data as a hash:
1745
- #
1746
- # {
1747
- # count: 1,
1748
- # }
1749
- #
1750
1227
  # @!attribute [rw] count
1751
1228
  # Number of in-application streams to create. For more information,
1752
1229
  # see [Limits][1].
@@ -1766,13 +1243,6 @@ module Aws::KinesisAnalytics
1766
1243
 
1767
1244
  # Provides updates to the parallelism count.
1768
1245
  #
1769
- # @note When making an API call, you may pass InputParallelismUpdate
1770
- # data as a hash:
1771
- #
1772
- # {
1773
- # count_update: 1,
1774
- # }
1775
- #
1776
1246
  # @!attribute [rw] count_update
1777
1247
  # Number of in-application streams to create for the specified
1778
1248
  # streaming source.
@@ -1794,16 +1264,6 @@ module Aws::KinesisAnalytics
1794
1264
  #
1795
1265
  # [1]: https://docs.aws.amazon.com/lambda/
1796
1266
  #
1797
- # @note When making an API call, you may pass InputProcessingConfiguration
1798
- # data as a hash:
1799
- #
1800
- # {
1801
- # input_lambda_processor: { # required
1802
- # resource_arn: "ResourceARN", # required
1803
- # role_arn: "RoleARN", # required
1804
- # },
1805
- # }
1806
- #
1807
1267
  # @!attribute [rw] input_lambda_processor
1808
1268
  # The [InputLambdaProcessor][1] that is used to preprocess the records
1809
1269
  # in the stream before being processed by your application code.
@@ -1851,16 +1311,6 @@ module Aws::KinesisAnalytics
1851
1311
  #
1852
1312
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html
1853
1313
  #
1854
- # @note When making an API call, you may pass InputProcessingConfigurationUpdate
1855
- # data as a hash:
1856
- #
1857
- # {
1858
- # input_lambda_processor_update: { # required
1859
- # resource_arn_update: "ResourceARN",
1860
- # role_arn_update: "RoleARN",
1861
- # },
1862
- # }
1863
- #
1864
1314
  # @!attribute [rw] input_lambda_processor_update
1865
1315
  # Provides update information for an [InputLambdaProcessor][1].
1866
1316
  #
@@ -1879,32 +1329,6 @@ module Aws::KinesisAnalytics
1879
1329
 
1880
1330
  # Describes updates for the application's input schema.
1881
1331
  #
1882
- # @note When making an API call, you may pass InputSchemaUpdate
1883
- # data as a hash:
1884
- #
1885
- # {
1886
- # record_format_update: {
1887
- # record_format_type: "JSON", # required, accepts JSON, CSV
1888
- # mapping_parameters: {
1889
- # json_mapping_parameters: {
1890
- # record_row_path: "RecordRowPath", # required
1891
- # },
1892
- # csv_mapping_parameters: {
1893
- # record_row_delimiter: "RecordRowDelimiter", # required
1894
- # record_column_delimiter: "RecordColumnDelimiter", # required
1895
- # },
1896
- # },
1897
- # },
1898
- # record_encoding_update: "RecordEncoding",
1899
- # record_column_updates: [
1900
- # {
1901
- # name: "RecordColumnName", # required
1902
- # mapping: "RecordColumnMapping",
1903
- # sql_type: "RecordColumnSqlType", # required
1904
- # },
1905
- # ],
1906
- # }
1907
- #
1908
1332
  # @!attribute [rw] record_format_update
1909
1333
  # Specifies the format of the records on the streaming source.
1910
1334
  # @return [Types::RecordFormat]
@@ -1933,13 +1357,6 @@ module Aws::KinesisAnalytics
1933
1357
  # Describes the point at which the application reads from the streaming
1934
1358
  # source.
1935
1359
  #
1936
- # @note When making an API call, you may pass InputStartingPositionConfiguration
1937
- # data as a hash:
1938
- #
1939
- # {
1940
- # input_starting_position: "NOW", # accepts NOW, TRIM_HORIZON, LAST_STOPPED_POINT
1941
- # }
1942
- #
1943
1360
  # @!attribute [rw] input_starting_position
1944
1361
  # The starting position on the stream.
1945
1362
  #
@@ -1966,53 +1383,6 @@ module Aws::KinesisAnalytics
1966
1383
  # Describes updates to a specific input configuration (identified by the
1967
1384
  # `InputId` of an application).
1968
1385
  #
1969
- # @note When making an API call, you may pass InputUpdate
1970
- # data as a hash:
1971
- #
1972
- # {
1973
- # input_id: "Id", # required
1974
- # name_prefix_update: "InAppStreamName",
1975
- # input_processing_configuration_update: {
1976
- # input_lambda_processor_update: { # required
1977
- # resource_arn_update: "ResourceARN",
1978
- # role_arn_update: "RoleARN",
1979
- # },
1980
- # },
1981
- # kinesis_streams_input_update: {
1982
- # resource_arn_update: "ResourceARN",
1983
- # role_arn_update: "RoleARN",
1984
- # },
1985
- # kinesis_firehose_input_update: {
1986
- # resource_arn_update: "ResourceARN",
1987
- # role_arn_update: "RoleARN",
1988
- # },
1989
- # input_schema_update: {
1990
- # record_format_update: {
1991
- # record_format_type: "JSON", # required, accepts JSON, CSV
1992
- # mapping_parameters: {
1993
- # json_mapping_parameters: {
1994
- # record_row_path: "RecordRowPath", # required
1995
- # },
1996
- # csv_mapping_parameters: {
1997
- # record_row_delimiter: "RecordRowDelimiter", # required
1998
- # record_column_delimiter: "RecordColumnDelimiter", # required
1999
- # },
2000
- # },
2001
- # },
2002
- # record_encoding_update: "RecordEncoding",
2003
- # record_column_updates: [
2004
- # {
2005
- # name: "RecordColumnName", # required
2006
- # mapping: "RecordColumnMapping",
2007
- # sql_type: "RecordColumnSqlType", # required
2008
- # },
2009
- # ],
2010
- # },
2011
- # input_parallelism_update: {
2012
- # count_update: 1,
2013
- # },
2014
- # }
2015
- #
2016
1386
  # @!attribute [rw] input_id
2017
1387
  # Input ID of the application input to be updated.
2018
1388
  # @return [String]
@@ -2093,13 +1463,6 @@ module Aws::KinesisAnalytics
2093
1463
  # Provides additional mapping information when JSON is the record format
2094
1464
  # on the streaming source.
2095
1465
  #
2096
- # @note When making an API call, you may pass JSONMappingParameters
2097
- # data as a hash:
2098
- #
2099
- # {
2100
- # record_row_path: "RecordRowPath", # required
2101
- # }
2102
- #
2103
1466
  # @!attribute [rw] record_row_path
2104
1467
  # Path to the top-level parent that contains the records.
2105
1468
  # @return [String]
@@ -2117,14 +1480,6 @@ module Aws::KinesisAnalytics
2117
1480
  # and an IAM role ARN that enables Amazon Kinesis Analytics to access
2118
1481
  # the stream on your behalf.
2119
1482
  #
2120
- # @note When making an API call, you may pass KinesisFirehoseInput
2121
- # data as a hash:
2122
- #
2123
- # {
2124
- # resource_arn: "ResourceARN", # required
2125
- # role_arn: "RoleARN", # required
2126
- # }
2127
- #
2128
1483
  # @!attribute [rw] resource_arn
2129
1484
  # ARN of the input delivery stream.
2130
1485
  # @return [String]
@@ -2171,14 +1526,6 @@ module Aws::KinesisAnalytics
2171
1526
  # about an Amazon Kinesis Firehose delivery stream as the streaming
2172
1527
  # source.
2173
1528
  #
2174
- # @note When making an API call, you may pass KinesisFirehoseInputUpdate
2175
- # data as a hash:
2176
- #
2177
- # {
2178
- # resource_arn_update: "ResourceARN",
2179
- # role_arn_update: "RoleARN",
2180
- # }
2181
- #
2182
1529
  # @!attribute [rw] resource_arn_update
2183
1530
  # Amazon Resource Name (ARN) of the input Amazon Kinesis Firehose
2184
1531
  # delivery stream to read.
@@ -2204,14 +1551,6 @@ module Aws::KinesisAnalytics
2204
1551
  # Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis
2205
1552
  # Analytics to write to the stream on your behalf.
2206
1553
  #
2207
- # @note When making an API call, you may pass KinesisFirehoseOutput
2208
- # data as a hash:
2209
- #
2210
- # {
2211
- # resource_arn: "ResourceARN", # required
2212
- # role_arn: "RoleARN", # required
2213
- # }
2214
- #
2215
1554
  # @!attribute [rw] resource_arn
2216
1555
  # ARN of the destination Amazon Kinesis Firehose delivery stream to
2217
1556
  # write to.
@@ -2262,14 +1601,6 @@ module Aws::KinesisAnalytics
2262
1601
  #
2263
1602
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
2264
1603
  #
2265
- # @note When making an API call, you may pass KinesisFirehoseOutputUpdate
2266
- # data as a hash:
2267
- #
2268
- # {
2269
- # resource_arn_update: "ResourceARN",
2270
- # role_arn_update: "RoleARN",
2271
- # }
2272
- #
2273
1604
  # @!attribute [rw] resource_arn_update
2274
1605
  # Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery
2275
1606
  # stream to write to.
@@ -2295,14 +1626,6 @@ module Aws::KinesisAnalytics
2295
1626
  # that enables Amazon Kinesis Analytics to access the stream on your
2296
1627
  # behalf.
2297
1628
  #
2298
- # @note When making an API call, you may pass KinesisStreamsInput
2299
- # data as a hash:
2300
- #
2301
- # {
2302
- # resource_arn: "ResourceARN", # required
2303
- # role_arn: "RoleARN", # required
2304
- # }
2305
- #
2306
1629
  # @!attribute [rw] resource_arn
2307
1630
  # ARN of the input Amazon Kinesis stream to read.
2308
1631
  # @return [String]
@@ -2346,14 +1669,6 @@ module Aws::KinesisAnalytics
2346
1669
  # When updating application input configuration, provides information
2347
1670
  # about an Amazon Kinesis stream as the streaming source.
2348
1671
  #
2349
- # @note When making an API call, you may pass KinesisStreamsInputUpdate
2350
- # data as a hash:
2351
- #
2352
- # {
2353
- # resource_arn_update: "ResourceARN",
2354
- # role_arn_update: "RoleARN",
2355
- # }
2356
- #
2357
1672
  # @!attribute [rw] resource_arn_update
2358
1673
  # Amazon Resource Name (ARN) of the input Amazon Kinesis stream to
2359
1674
  # read.
@@ -2379,14 +1694,6 @@ module Aws::KinesisAnalytics
2379
1694
  # (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use
2380
1695
  # to write to the stream on your behalf.
2381
1696
  #
2382
- # @note When making an API call, you may pass KinesisStreamsOutput
2383
- # data as a hash:
2384
- #
2385
- # {
2386
- # resource_arn: "ResourceARN", # required
2387
- # role_arn: "RoleARN", # required
2388
- # }
2389
- #
2390
1697
  # @!attribute [rw] resource_arn
2391
1698
  # ARN of the destination Amazon Kinesis stream to write to.
2392
1699
  # @return [String]
@@ -2435,14 +1742,6 @@ module Aws::KinesisAnalytics
2435
1742
  #
2436
1743
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
2437
1744
  #
2438
- # @note When making an API call, you may pass KinesisStreamsOutputUpdate
2439
- # data as a hash:
2440
- #
2441
- # {
2442
- # resource_arn_update: "ResourceARN",
2443
- # role_arn_update: "RoleARN",
2444
- # }
2445
- #
2446
1745
  # @!attribute [rw] resource_arn_update
2447
1746
  # Amazon Resource Name (ARN) of the Amazon Kinesis stream where you
2448
1747
  # want to write the output.
@@ -2468,14 +1767,6 @@ module Aws::KinesisAnalytics
2468
1767
  # (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use
2469
1768
  # to write to the function on your behalf.
2470
1769
  #
2471
- # @note When making an API call, you may pass LambdaOutput
2472
- # data as a hash:
2473
- #
2474
- # {
2475
- # resource_arn: "ResourceARN", # required
2476
- # role_arn: "RoleARN", # required
2477
- # }
2478
- #
2479
1770
  # @!attribute [rw] resource_arn
2480
1771
  # Amazon Resource Name (ARN) of the destination Lambda function to
2481
1772
  # write to.
@@ -2532,14 +1823,6 @@ module Aws::KinesisAnalytics
2532
1823
  #
2533
1824
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
2534
1825
  #
2535
- # @note When making an API call, you may pass LambdaOutputUpdate
2536
- # data as a hash:
2537
- #
2538
- # {
2539
- # resource_arn_update: "ResourceARN",
2540
- # role_arn_update: "RoleARN",
2541
- # }
2542
- #
2543
1826
  # @!attribute [rw] resource_arn_update
2544
1827
  # Amazon Resource Name (ARN) of the destination Lambda function.
2545
1828
  #
@@ -2579,14 +1862,6 @@ module Aws::KinesisAnalytics
2579
1862
  include Aws::Structure
2580
1863
  end
2581
1864
 
2582
- # @note When making an API call, you may pass ListApplicationsRequest
2583
- # data as a hash:
2584
- #
2585
- # {
2586
- # limit: 1,
2587
- # exclusive_start_application_name: "ApplicationName",
2588
- # }
2589
- #
2590
1865
  # @!attribute [rw] limit
2591
1866
  # Maximum number of applications to list.
2592
1867
  # @return [Integer]
@@ -2625,13 +1900,6 @@ module Aws::KinesisAnalytics
2625
1900
  include Aws::Structure
2626
1901
  end
2627
1902
 
2628
- # @note When making an API call, you may pass ListTagsForResourceRequest
2629
- # data as a hash:
2630
- #
2631
- # {
2632
- # resource_arn: "KinesisAnalyticsARN", # required
2633
- # }
2634
- #
2635
1903
  # @!attribute [rw] resource_arn
2636
1904
  # The ARN of the application for which to retrieve tags.
2637
1905
  # @return [String]
@@ -2661,19 +1929,6 @@ module Aws::KinesisAnalytics
2661
1929
  # the record format (such as JSON, CSV, or record fields delimited by
2662
1930
  # some delimiter) on the streaming source.
2663
1931
  #
2664
- # @note When making an API call, you may pass MappingParameters
2665
- # data as a hash:
2666
- #
2667
- # {
2668
- # json_mapping_parameters: {
2669
- # record_row_path: "RecordRowPath", # required
2670
- # },
2671
- # csv_mapping_parameters: {
2672
- # record_row_delimiter: "RecordRowDelimiter", # required
2673
- # record_column_delimiter: "RecordColumnDelimiter", # required
2674
- # },
2675
- # }
2676
- #
2677
1932
  # @!attribute [rw] json_mapping_parameters
2678
1933
  # Provides additional mapping information when JSON is the record
2679
1934
  # format on the streaming source.
@@ -2707,28 +1962,6 @@ module Aws::KinesisAnalytics
2707
1962
  #
2708
1963
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html
2709
1964
  #
2710
- # @note When making an API call, you may pass Output
2711
- # data as a hash:
2712
- #
2713
- # {
2714
- # name: "InAppStreamName", # required
2715
- # kinesis_streams_output: {
2716
- # resource_arn: "ResourceARN", # required
2717
- # role_arn: "RoleARN", # required
2718
- # },
2719
- # kinesis_firehose_output: {
2720
- # resource_arn: "ResourceARN", # required
2721
- # role_arn: "RoleARN", # required
2722
- # },
2723
- # lambda_output: {
2724
- # resource_arn: "ResourceARN", # required
2725
- # role_arn: "RoleARN", # required
2726
- # },
2727
- # destination_schema: { # required
2728
- # record_format_type: "JSON", # required, accepts JSON, CSV
2729
- # },
2730
- # }
2731
- #
2732
1965
  # @!attribute [rw] name
2733
1966
  # Name of the in-application stream.
2734
1967
  # @return [String]
@@ -2816,29 +2049,6 @@ module Aws::KinesisAnalytics
2816
2049
  # Describes updates to the output configuration identified by the
2817
2050
  # `OutputId`.
2818
2051
  #
2819
- # @note When making an API call, you may pass OutputUpdate
2820
- # data as a hash:
2821
- #
2822
- # {
2823
- # output_id: "Id", # required
2824
- # name_update: "InAppStreamName",
2825
- # kinesis_streams_output_update: {
2826
- # resource_arn_update: "ResourceARN",
2827
- # role_arn_update: "RoleARN",
2828
- # },
2829
- # kinesis_firehose_output_update: {
2830
- # resource_arn_update: "ResourceARN",
2831
- # role_arn_update: "RoleARN",
2832
- # },
2833
- # lambda_output_update: {
2834
- # resource_arn_update: "ResourceARN",
2835
- # role_arn_update: "RoleARN",
2836
- # },
2837
- # destination_schema_update: {
2838
- # record_format_type: "JSON", # required, accepts JSON, CSV
2839
- # },
2840
- # }
2841
- #
2842
2052
  # @!attribute [rw] output_id
2843
2053
  # Identifies the specific output configuration that you want to
2844
2054
  # update.
@@ -2892,15 +2102,6 @@ module Aws::KinesisAnalytics
2892
2102
  #
2893
2103
  # Also used to describe the format of the reference data source.
2894
2104
  #
2895
- # @note When making an API call, you may pass RecordColumn
2896
- # data as a hash:
2897
- #
2898
- # {
2899
- # name: "RecordColumnName", # required
2900
- # mapping: "RecordColumnMapping",
2901
- # sql_type: "RecordColumnSqlType", # required
2902
- # }
2903
- #
2904
2105
  # @!attribute [rw] name
2905
2106
  # Name of the column created in the in-application input stream or
2906
2107
  # reference table.
@@ -2934,22 +2135,6 @@ module Aws::KinesisAnalytics
2934
2135
  # Describes the record format and relevant mapping information that
2935
2136
  # should be applied to schematize the records on the stream.
2936
2137
  #
2937
- # @note When making an API call, you may pass RecordFormat
2938
- # data as a hash:
2939
- #
2940
- # {
2941
- # record_format_type: "JSON", # required, accepts JSON, CSV
2942
- # mapping_parameters: {
2943
- # json_mapping_parameters: {
2944
- # record_row_path: "RecordRowPath", # required
2945
- # },
2946
- # csv_mapping_parameters: {
2947
- # record_row_delimiter: "RecordRowDelimiter", # required
2948
- # record_column_delimiter: "RecordColumnDelimiter", # required
2949
- # },
2950
- # },
2951
- # }
2952
- #
2953
2138
  # @!attribute [rw] record_format_type
2954
2139
  # The type of record format.
2955
2140
  # @return [String]
@@ -2976,40 +2161,6 @@ module Aws::KinesisAnalytics
2976
2161
  # map the data elements in the Amazon S3 object to the in-application
2977
2162
  # table.
2978
2163
  #
2979
- # @note When making an API call, you may pass ReferenceDataSource
2980
- # data as a hash:
2981
- #
2982
- # {
2983
- # table_name: "InAppTableName", # required
2984
- # s3_reference_data_source: {
2985
- # bucket_arn: "BucketARN", # required
2986
- # file_key: "FileKey", # required
2987
- # reference_role_arn: "RoleARN", # required
2988
- # },
2989
- # reference_schema: { # required
2990
- # record_format: { # required
2991
- # record_format_type: "JSON", # required, accepts JSON, CSV
2992
- # mapping_parameters: {
2993
- # json_mapping_parameters: {
2994
- # record_row_path: "RecordRowPath", # required
2995
- # },
2996
- # csv_mapping_parameters: {
2997
- # record_row_delimiter: "RecordRowDelimiter", # required
2998
- # record_column_delimiter: "RecordColumnDelimiter", # required
2999
- # },
3000
- # },
3001
- # },
3002
- # record_encoding: "RecordEncoding",
3003
- # record_columns: [ # required
3004
- # {
3005
- # name: "RecordColumnName", # required
3006
- # mapping: "RecordColumnMapping",
3007
- # sql_type: "RecordColumnSqlType", # required
3008
- # },
3009
- # ],
3010
- # },
3011
- # }
3012
- #
3013
2164
  # @!attribute [rw] table_name
3014
2165
  # Name of the in-application table to create.
3015
2166
  # @return [String]
@@ -3088,41 +2239,6 @@ module Aws::KinesisAnalytics
3088
2239
  # the Amazon S3 object to the in-application reference table that is
3089
2240
  # created.
3090
2241
  #
3091
- # @note When making an API call, you may pass ReferenceDataSourceUpdate
3092
- # data as a hash:
3093
- #
3094
- # {
3095
- # reference_id: "Id", # required
3096
- # table_name_update: "InAppTableName",
3097
- # s3_reference_data_source_update: {
3098
- # bucket_arn_update: "BucketARN",
3099
- # file_key_update: "FileKey",
3100
- # reference_role_arn_update: "RoleARN",
3101
- # },
3102
- # reference_schema_update: {
3103
- # record_format: { # required
3104
- # record_format_type: "JSON", # required, accepts JSON, CSV
3105
- # mapping_parameters: {
3106
- # json_mapping_parameters: {
3107
- # record_row_path: "RecordRowPath", # required
3108
- # },
3109
- # csv_mapping_parameters: {
3110
- # record_row_delimiter: "RecordRowDelimiter", # required
3111
- # record_column_delimiter: "RecordColumnDelimiter", # required
3112
- # },
3113
- # },
3114
- # },
3115
- # record_encoding: "RecordEncoding",
3116
- # record_columns: [ # required
3117
- # {
3118
- # name: "RecordColumnName", # required
3119
- # mapping: "RecordColumnMapping",
3120
- # sql_type: "RecordColumnSqlType", # required
3121
- # },
3122
- # ],
3123
- # },
3124
- # }
3125
- #
3126
2242
  # @!attribute [rw] reference_id
3127
2243
  # ID of the reference data source being updated. You can use the
3128
2244
  # [DescribeApplication][1] operation to get this value.
@@ -3210,15 +2326,6 @@ module Aws::KinesisAnalytics
3210
2326
  # that is used to access the bucket, and the name of the Amazon S3
3211
2327
  # object that contains the data.
3212
2328
  #
3213
- # @note When making an API call, you may pass S3Configuration
3214
- # data as a hash:
3215
- #
3216
- # {
3217
- # role_arn: "RoleARN", # required
3218
- # bucket_arn: "BucketARN", # required
3219
- # file_key: "FileKey", # required
3220
- # }
3221
- #
3222
2329
  # @!attribute [rw] role_arn
3223
2330
  # IAM ARN of the role used to access the data.
3224
2331
  # @return [String]
@@ -3253,15 +2360,6 @@ module Aws::KinesisAnalytics
3253
2360
  #
3254
2361
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
3255
2362
  #
3256
- # @note When making an API call, you may pass S3ReferenceDataSource
3257
- # data as a hash:
3258
- #
3259
- # {
3260
- # bucket_arn: "BucketARN", # required
3261
- # file_key: "FileKey", # required
3262
- # reference_role_arn: "RoleARN", # required
3263
- # }
3264
- #
3265
2363
  # @!attribute [rw] bucket_arn
3266
2364
  # Amazon Resource Name (ARN) of the S3 bucket.
3267
2365
  # @return [String]
@@ -3318,15 +2416,6 @@ module Aws::KinesisAnalytics
3318
2416
  # Amazon Kinesis Analytics can assume to read the Amazon S3 object on
3319
2417
  # your behalf and populate the in-application reference table.
3320
2418
  #
3321
- # @note When making an API call, you may pass S3ReferenceDataSourceUpdate
3322
- # data as a hash:
3323
- #
3324
- # {
3325
- # bucket_arn_update: "BucketARN",
3326
- # file_key_update: "FileKey",
3327
- # reference_role_arn_update: "RoleARN",
3328
- # }
3329
- #
3330
2419
  # @!attribute [rw] bucket_arn_update
3331
2420
  # Amazon Resource Name (ARN) of the S3 bucket.
3332
2421
  # @return [String]
@@ -3367,32 +2456,6 @@ module Aws::KinesisAnalytics
3367
2456
  # data element maps to corresponding columns created in the
3368
2457
  # in-application stream.
3369
2458
  #
3370
- # @note When making an API call, you may pass SourceSchema
3371
- # data as a hash:
3372
- #
3373
- # {
3374
- # record_format: { # required
3375
- # record_format_type: "JSON", # required, accepts JSON, CSV
3376
- # mapping_parameters: {
3377
- # json_mapping_parameters: {
3378
- # record_row_path: "RecordRowPath", # required
3379
- # },
3380
- # csv_mapping_parameters: {
3381
- # record_row_delimiter: "RecordRowDelimiter", # required
3382
- # record_column_delimiter: "RecordColumnDelimiter", # required
3383
- # },
3384
- # },
3385
- # },
3386
- # record_encoding: "RecordEncoding",
3387
- # record_columns: [ # required
3388
- # {
3389
- # name: "RecordColumnName", # required
3390
- # mapping: "RecordColumnMapping",
3391
- # sql_type: "RecordColumnSqlType", # required
3392
- # },
3393
- # ],
3394
- # }
3395
- #
3396
2459
  # @!attribute [rw] record_format
3397
2460
  # Specifies the format of the records on the streaming source.
3398
2461
  # @return [Types::RecordFormat]
@@ -3416,21 +2479,6 @@ module Aws::KinesisAnalytics
3416
2479
  include Aws::Structure
3417
2480
  end
3418
2481
 
3419
- # @note When making an API call, you may pass StartApplicationRequest
3420
- # data as a hash:
3421
- #
3422
- # {
3423
- # application_name: "ApplicationName", # required
3424
- # input_configurations: [ # required
3425
- # {
3426
- # id: "Id", # required
3427
- # input_starting_position_configuration: { # required
3428
- # input_starting_position: "NOW", # accepts NOW, TRIM_HORIZON, LAST_STOPPED_POINT
3429
- # },
3430
- # },
3431
- # ],
3432
- # }
3433
- #
3434
2482
  # @!attribute [rw] application_name
3435
2483
  # Name of the application.
3436
2484
  # @return [String]
@@ -3455,13 +2503,6 @@ module Aws::KinesisAnalytics
3455
2503
  #
3456
2504
  class StartApplicationResponse < Aws::EmptyStructure; end
3457
2505
 
3458
- # @note When making an API call, you may pass StopApplicationRequest
3459
- # data as a hash:
3460
- #
3461
- # {
3462
- # application_name: "ApplicationName", # required
3463
- # }
3464
- #
3465
2506
  # @!attribute [rw] application_name
3466
2507
  # Name of the running application to stop.
3467
2508
  # @return [String]
@@ -3489,14 +2530,6 @@ module Aws::KinesisAnalytics
3489
2530
  #
3490
2531
  # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-tagging.html
3491
2532
  #
3492
- # @note When making an API call, you may pass Tag
3493
- # data as a hash:
3494
- #
3495
- # {
3496
- # key: "TagKey", # required
3497
- # value: "TagValue",
3498
- # }
3499
- #
3500
2533
  # @!attribute [rw] key
3501
2534
  # The key of the key-value tag.
3502
2535
  # @return [String]
@@ -3514,19 +2547,6 @@ module Aws::KinesisAnalytics
3514
2547
  include Aws::Structure
3515
2548
  end
3516
2549
 
3517
- # @note When making an API call, you may pass TagResourceRequest
3518
- # data as a hash:
3519
- #
3520
- # {
3521
- # resource_arn: "KinesisAnalyticsARN", # required
3522
- # tags: [ # required
3523
- # {
3524
- # key: "TagKey", # required
3525
- # value: "TagValue",
3526
- # },
3527
- # ],
3528
- # }
3529
- #
3530
2550
  # @!attribute [rw] resource_arn
3531
2551
  # The ARN of the application to assign the tags.
3532
2552
  # @return [String]
@@ -3600,14 +2620,6 @@ module Aws::KinesisAnalytics
3600
2620
  include Aws::Structure
3601
2621
  end
3602
2622
 
3603
- # @note When making an API call, you may pass UntagResourceRequest
3604
- # data as a hash:
3605
- #
3606
- # {
3607
- # resource_arn: "KinesisAnalyticsARN", # required
3608
- # tag_keys: ["TagKey"], # required
3609
- # }
3610
- #
3611
2623
  # @!attribute [rw] resource_arn
3612
2624
  # The ARN of the Kinesis Analytics application from which to remove
3613
2625
  # the tags.
@@ -3630,123 +2642,6 @@ module Aws::KinesisAnalytics
3630
2642
  #
3631
2643
  class UntagResourceResponse < Aws::EmptyStructure; end
3632
2644
 
3633
- # @note When making an API call, you may pass UpdateApplicationRequest
3634
- # data as a hash:
3635
- #
3636
- # {
3637
- # application_name: "ApplicationName", # required
3638
- # current_application_version_id: 1, # required
3639
- # application_update: { # required
3640
- # input_updates: [
3641
- # {
3642
- # input_id: "Id", # required
3643
- # name_prefix_update: "InAppStreamName",
3644
- # input_processing_configuration_update: {
3645
- # input_lambda_processor_update: { # required
3646
- # resource_arn_update: "ResourceARN",
3647
- # role_arn_update: "RoleARN",
3648
- # },
3649
- # },
3650
- # kinesis_streams_input_update: {
3651
- # resource_arn_update: "ResourceARN",
3652
- # role_arn_update: "RoleARN",
3653
- # },
3654
- # kinesis_firehose_input_update: {
3655
- # resource_arn_update: "ResourceARN",
3656
- # role_arn_update: "RoleARN",
3657
- # },
3658
- # input_schema_update: {
3659
- # record_format_update: {
3660
- # record_format_type: "JSON", # required, accepts JSON, CSV
3661
- # mapping_parameters: {
3662
- # json_mapping_parameters: {
3663
- # record_row_path: "RecordRowPath", # required
3664
- # },
3665
- # csv_mapping_parameters: {
3666
- # record_row_delimiter: "RecordRowDelimiter", # required
3667
- # record_column_delimiter: "RecordColumnDelimiter", # required
3668
- # },
3669
- # },
3670
- # },
3671
- # record_encoding_update: "RecordEncoding",
3672
- # record_column_updates: [
3673
- # {
3674
- # name: "RecordColumnName", # required
3675
- # mapping: "RecordColumnMapping",
3676
- # sql_type: "RecordColumnSqlType", # required
3677
- # },
3678
- # ],
3679
- # },
3680
- # input_parallelism_update: {
3681
- # count_update: 1,
3682
- # },
3683
- # },
3684
- # ],
3685
- # application_code_update: "ApplicationCode",
3686
- # output_updates: [
3687
- # {
3688
- # output_id: "Id", # required
3689
- # name_update: "InAppStreamName",
3690
- # kinesis_streams_output_update: {
3691
- # resource_arn_update: "ResourceARN",
3692
- # role_arn_update: "RoleARN",
3693
- # },
3694
- # kinesis_firehose_output_update: {
3695
- # resource_arn_update: "ResourceARN",
3696
- # role_arn_update: "RoleARN",
3697
- # },
3698
- # lambda_output_update: {
3699
- # resource_arn_update: "ResourceARN",
3700
- # role_arn_update: "RoleARN",
3701
- # },
3702
- # destination_schema_update: {
3703
- # record_format_type: "JSON", # required, accepts JSON, CSV
3704
- # },
3705
- # },
3706
- # ],
3707
- # reference_data_source_updates: [
3708
- # {
3709
- # reference_id: "Id", # required
3710
- # table_name_update: "InAppTableName",
3711
- # s3_reference_data_source_update: {
3712
- # bucket_arn_update: "BucketARN",
3713
- # file_key_update: "FileKey",
3714
- # reference_role_arn_update: "RoleARN",
3715
- # },
3716
- # reference_schema_update: {
3717
- # record_format: { # required
3718
- # record_format_type: "JSON", # required, accepts JSON, CSV
3719
- # mapping_parameters: {
3720
- # json_mapping_parameters: {
3721
- # record_row_path: "RecordRowPath", # required
3722
- # },
3723
- # csv_mapping_parameters: {
3724
- # record_row_delimiter: "RecordRowDelimiter", # required
3725
- # record_column_delimiter: "RecordColumnDelimiter", # required
3726
- # },
3727
- # },
3728
- # },
3729
- # record_encoding: "RecordEncoding",
3730
- # record_columns: [ # required
3731
- # {
3732
- # name: "RecordColumnName", # required
3733
- # mapping: "RecordColumnMapping",
3734
- # sql_type: "RecordColumnSqlType", # required
3735
- # },
3736
- # ],
3737
- # },
3738
- # },
3739
- # ],
3740
- # cloud_watch_logging_option_updates: [
3741
- # {
3742
- # cloud_watch_logging_option_id: "Id", # required
3743
- # log_stream_arn_update: "LogStreamARN",
3744
- # role_arn_update: "RoleARN",
3745
- # },
3746
- # ],
3747
- # },
3748
- # }
3749
- #
3750
2645
  # @!attribute [rw] application_name
3751
2646
  # Name of the Amazon Kinesis Analytics application to update.
3752
2647
  # @return [String]