aws-sdk-kinesisanalytics 1.12.0 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -87,6 +87,7 @@ module Aws::KinesisAnalytics
87
87
  InvalidApplicationConfigurationException = Shapes::StructureShape.new(name: 'InvalidApplicationConfigurationException')
88
88
  InvalidArgumentException = Shapes::StructureShape.new(name: 'InvalidArgumentException')
89
89
  JSONMappingParameters = Shapes::StructureShape.new(name: 'JSONMappingParameters')
90
+ KinesisAnalyticsARN = Shapes::StringShape.new(name: 'KinesisAnalyticsARN')
90
91
  KinesisFirehoseInput = Shapes::StructureShape.new(name: 'KinesisFirehoseInput')
91
92
  KinesisFirehoseInputDescription = Shapes::StructureShape.new(name: 'KinesisFirehoseInputDescription')
92
93
  KinesisFirehoseInputUpdate = Shapes::StructureShape.new(name: 'KinesisFirehoseInputUpdate')
@@ -106,6 +107,8 @@ module Aws::KinesisAnalytics
106
107
  ListApplicationsInputLimit = Shapes::IntegerShape.new(name: 'ListApplicationsInputLimit')
107
108
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
108
109
  ListApplicationsResponse = Shapes::StructureShape.new(name: 'ListApplicationsResponse')
110
+ ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
111
+ ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
109
112
  LogStreamARN = Shapes::StringShape.new(name: 'LogStreamARN')
110
113
  MappingParameters = Shapes::StructureShape.new(name: 'MappingParameters')
111
114
  Output = Shapes::StructureShape.new(name: 'Output')
@@ -152,9 +155,19 @@ module Aws::KinesisAnalytics
152
155
  StartApplicationResponse = Shapes::StructureShape.new(name: 'StartApplicationResponse')
153
156
  StopApplicationRequest = Shapes::StructureShape.new(name: 'StopApplicationRequest')
154
157
  StopApplicationResponse = Shapes::StructureShape.new(name: 'StopApplicationResponse')
158
+ Tag = Shapes::StructureShape.new(name: 'Tag')
159
+ TagKey = Shapes::StringShape.new(name: 'TagKey')
160
+ TagKeys = Shapes::ListShape.new(name: 'TagKeys')
161
+ TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
162
+ TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
163
+ TagValue = Shapes::StringShape.new(name: 'TagValue')
164
+ Tags = Shapes::ListShape.new(name: 'Tags')
155
165
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
166
+ TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
156
167
  UnableToDetectSchemaException = Shapes::StructureShape.new(name: 'UnableToDetectSchemaException')
157
168
  UnsupportedOperationException = Shapes::StructureShape.new(name: 'UnsupportedOperationException')
169
+ UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
170
+ UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
158
171
  UpdateApplicationRequest = Shapes::StructureShape.new(name: 'UpdateApplicationRequest')
159
172
  UpdateApplicationResponse = Shapes::StructureShape.new(name: 'UpdateApplicationResponse')
160
173
 
@@ -252,6 +265,7 @@ module Aws::KinesisAnalytics
252
265
  CreateApplicationRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: Outputs, location_name: "Outputs"))
253
266
  CreateApplicationRequest.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
254
267
  CreateApplicationRequest.add_member(:application_code, Shapes::ShapeRef.new(shape: ApplicationCode, location_name: "ApplicationCode"))
268
+ CreateApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
255
269
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
256
270
 
257
271
  CreateApplicationResponse.add_member(:application_summary, Shapes::ShapeRef.new(shape: ApplicationSummary, required: true, location_name: "ApplicationSummary"))
@@ -461,6 +475,12 @@ module Aws::KinesisAnalytics
461
475
  ListApplicationsResponse.add_member(:has_more_applications, Shapes::ShapeRef.new(shape: BooleanObject, required: true, location_name: "HasMoreApplications"))
462
476
  ListApplicationsResponse.struct_class = Types::ListApplicationsResponse
463
477
 
478
+ ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: KinesisAnalyticsARN, required: true, location_name: "ResourceARN"))
479
+ ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
480
+
481
+ ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
482
+ ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
483
+
464
484
  MappingParameters.add_member(:json_mapping_parameters, Shapes::ShapeRef.new(shape: JSONMappingParameters, location_name: "JSONMappingParameters"))
465
485
  MappingParameters.add_member(:csv_mapping_parameters, Shapes::ShapeRef.new(shape: CSVMappingParameters, location_name: "CSVMappingParameters"))
466
486
  MappingParameters.struct_class = Types::MappingParameters
@@ -570,6 +590,26 @@ module Aws::KinesisAnalytics
570
590
 
571
591
  StopApplicationResponse.struct_class = Types::StopApplicationResponse
572
592
 
593
+ Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
594
+ Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, location_name: "Value"))
595
+ Tag.struct_class = Types::Tag
596
+
597
+ TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
598
+
599
+ TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: KinesisAnalyticsARN, required: true, location_name: "ResourceARN"))
600
+ TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, required: true, location_name: "Tags"))
601
+ TagResourceRequest.struct_class = Types::TagResourceRequest
602
+
603
+ TagResourceResponse.struct_class = Types::TagResourceResponse
604
+
605
+ Tags.member = Shapes::ShapeRef.new(shape: Tag)
606
+
607
+ UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: KinesisAnalyticsARN, required: true, location_name: "ResourceARN"))
608
+ UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeys, required: true, location_name: "TagKeys"))
609
+ UntagResourceRequest.struct_class = Types::UntagResourceRequest
610
+
611
+ UntagResourceResponse.struct_class = Types::UntagResourceResponse
612
+
573
613
  UpdateApplicationRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
574
614
  UpdateApplicationRequest.add_member(:current_application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "CurrentApplicationVersionId"))
575
615
  UpdateApplicationRequest.add_member(:application_update, Shapes::ShapeRef.new(shape: ApplicationUpdate, required: true, location_name: "ApplicationUpdate"))
@@ -672,6 +712,8 @@ module Aws::KinesisAnalytics
672
712
  o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
673
713
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
674
714
  o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
715
+ o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
716
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
675
717
  end)
676
718
 
677
719
  api.add_operation(:delete_application, Seahorse::Model::Operation.new.tap do |o|
@@ -768,6 +810,17 @@ module Aws::KinesisAnalytics
768
810
  o.output = Shapes::ShapeRef.new(shape: ListApplicationsResponse)
769
811
  end)
770
812
 
813
+ api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
814
+ o.name = "ListTagsForResource"
815
+ o.http_method = "POST"
816
+ o.http_request_uri = "/"
817
+ o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
818
+ o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
819
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
820
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
821
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
822
+ end)
823
+
771
824
  api.add_operation(:start_application, Seahorse::Model::Operation.new.tap do |o|
772
825
  o.name = "StartApplication"
773
826
  o.http_method = "POST"
@@ -792,6 +845,32 @@ module Aws::KinesisAnalytics
792
845
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
793
846
  end)
794
847
 
848
+ api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
849
+ o.name = "TagResource"
850
+ o.http_method = "POST"
851
+ o.http_request_uri = "/"
852
+ o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
853
+ o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
854
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
855
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
856
+ o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
857
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
858
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
859
+ end)
860
+
861
+ api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
862
+ o.name = "UntagResource"
863
+ o.http_method = "POST"
864
+ o.http_request_uri = "/"
865
+ o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
866
+ o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
867
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
868
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
869
+ o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
870
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
871
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
872
+ end)
873
+
795
874
  api.add_operation(:update_application, Seahorse::Model::Operation.new.tap do |o|
796
875
  o.name = "UpdateApplication"
797
876
  o.http_method = "POST"
@@ -70,20 +70,32 @@ module Aws::KinesisAnalytics
70
70
  #
71
71
  # @!attribute [rw] current_application_version_id
72
72
  # Version of the application to which you want to add the input
73
- # processing configuration. You can use the DescribeApplication
73
+ # processing configuration. You can use the [DescribeApplication][1]
74
74
  # operation to get the current application version. If the version
75
75
  # specified is not the current version, the
76
76
  # `ConcurrentModificationException` is returned.
77
+ #
78
+ #
79
+ #
80
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
77
81
  # @return [Integer]
78
82
  #
79
83
  # @!attribute [rw] input_id
80
84
  # The ID of the input configuration to add the input processing
81
85
  # configuration to. You can get a list of the input IDs for an
82
- # application using the DescribeApplication operation.
86
+ # application using the [DescribeApplication][1] operation.
87
+ #
88
+ #
89
+ #
90
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
83
91
  # @return [String]
84
92
  #
85
93
  # @!attribute [rw] input_processing_configuration
86
- # The InputProcessingConfiguration to add to the application.
94
+ # The [InputProcessingConfiguration][1] to add to the application.
95
+ #
96
+ #
97
+ #
98
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html
87
99
  # @return [Types::InputProcessingConfiguration]
88
100
  #
89
101
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/AddApplicationInputProcessingConfigurationRequest AWS API Documentation
@@ -157,12 +169,20 @@ module Aws::KinesisAnalytics
157
169
  #
158
170
  # @!attribute [rw] current_application_version_id
159
171
  # Current version of your Amazon Kinesis Analytics application. You
160
- # can use the DescribeApplication operation to find the current
172
+ # can use the [DescribeApplication][1] operation to find the current
161
173
  # application version.
174
+ #
175
+ #
176
+ #
177
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
162
178
  # @return [Integer]
163
179
  #
164
180
  # @!attribute [rw] input
165
- # The Input to add.
181
+ # The [Input][1] to add.
182
+ #
183
+ #
184
+ #
185
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_Input.html
166
186
  # @return [Types::Input]
167
187
  #
168
188
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/AddApplicationInputRequest AWS API Documentation
@@ -211,9 +231,14 @@ module Aws::KinesisAnalytics
211
231
  #
212
232
  # @!attribute [rw] current_application_version_id
213
233
  # Version of the application to which you want to add the output
214
- # configuration. You can use the DescribeApplication operation to get
215
- # the current application version. If the version specified is not the
216
- # current version, the `ConcurrentModificationException` is returned.
234
+ # configuration. You can use the [DescribeApplication][1] operation to
235
+ # get the current application version. If the version specified is not
236
+ # the current version, the `ConcurrentModificationException` is
237
+ # returned.
238
+ #
239
+ #
240
+ #
241
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
217
242
  # @return [Integer]
218
243
  #
219
244
  # @!attribute [rw] output
@@ -281,9 +306,14 @@ module Aws::KinesisAnalytics
281
306
  #
282
307
  # @!attribute [rw] current_application_version_id
283
308
  # Version of the application for which you are adding the reference
284
- # data source. You can use the DescribeApplication operation to get
285
- # the current application version. If the version specified is not the
286
- # current version, the `ConcurrentModificationException` is returned.
309
+ # data source. You can use the [DescribeApplication][1] operation to
310
+ # get the current application version. If the version specified is not
311
+ # the current version, the `ConcurrentModificationException` is
312
+ # returned.
313
+ #
314
+ #
315
+ #
316
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
287
317
  # @return [Integer]
288
318
  #
289
319
  # @!attribute [rw] reference_data_source
@@ -309,6 +339,14 @@ module Aws::KinesisAnalytics
309
339
  #
310
340
  class AddApplicationReferenceDataSourceResponse < Aws::EmptyStructure; end
311
341
 
342
+ # <note markdown="1"> This documentation is for version 1 of the Amazon Kinesis Data
343
+ # Analytics API, which only supports SQL applications. Version 2 of the
344
+ # API supports SQL and Java applications. For more information about
345
+ # version 2, see [Amazon Kinesis Data Analytics API V2
346
+ # Documentation](/kinesisanalytics/latest/apiv2/Welcome.html).
347
+ #
348
+ # </note>
349
+ #
312
350
  # Provides a description of the application, including the application
313
351
  # Amazon Resource Name (ARN), status, latest version, and input and
314
352
  # output configuration.
@@ -343,7 +381,7 @@ module Aws::KinesisAnalytics
343
381
  #
344
382
  #
345
383
  #
346
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
384
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
347
385
  # @return [Array<Types::InputDescription>]
348
386
  #
349
387
  # @!attribute [rw] output_descriptions
@@ -352,7 +390,7 @@ module Aws::KinesisAnalytics
352
390
  #
353
391
  #
354
392
  #
355
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
393
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
356
394
  # @return [Array<Types::OutputDescription>]
357
395
  #
358
396
  # @!attribute [rw] reference_data_source_descriptions
@@ -361,7 +399,7 @@ module Aws::KinesisAnalytics
361
399
  #
362
400
  #
363
401
  #
364
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
402
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
365
403
  # @return [Array<Types::ReferenceDataSourceDescription>]
366
404
  #
367
405
  # @!attribute [rw] cloud_watch_logging_option_descriptions
@@ -372,7 +410,7 @@ module Aws::KinesisAnalytics
372
410
  #
373
411
  #
374
412
  #
375
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-logs.html
413
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-logs.html
376
414
  # @return [Array<Types::CloudWatchLoggingOptionDescription>]
377
415
  #
378
416
  # @!attribute [rw] application_code
@@ -402,6 +440,14 @@ module Aws::KinesisAnalytics
402
440
  include Aws::Structure
403
441
  end
404
442
 
443
+ # <note markdown="1"> This documentation is for version 1 of the Amazon Kinesis Data
444
+ # Analytics API, which only supports SQL applications. Version 2 of the
445
+ # API supports SQL and Java applications. For more information about
446
+ # version 2, see [Amazon Kinesis Data Analytics API V2
447
+ # Documentation](/kinesisanalytics/latest/apiv2/Welcome.html).
448
+ #
449
+ # </note>
450
+ #
405
451
  # Provides application summary information, including the application
406
452
  # Amazon Resource Name (ARN), name, and status.
407
453
  #
@@ -775,6 +821,12 @@ module Aws::KinesisAnalytics
775
821
  # },
776
822
  # ],
777
823
  # application_code: "ApplicationCode",
824
+ # tags: [
825
+ # {
826
+ # key: "TagKey", # required
827
+ # value: "TagValue",
828
+ # },
829
+ # ],
778
830
  # }
779
831
  #
780
832
  # @!attribute [rw] application_name
@@ -834,7 +886,7 @@ module Aws::KinesisAnalytics
834
886
  #
835
887
  #
836
888
  #
837
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-logs.html
889
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-logs.html
838
890
  # @return [Array<Types::CloudWatchLoggingOption>]
839
891
  #
840
892
  # @!attribute [rw] application_code
@@ -858,9 +910,22 @@ module Aws::KinesisAnalytics
858
910
  #
859
911
  #
860
912
  #
861
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-app-code.html
913
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-app-code.html
862
914
  # @return [String]
863
915
  #
916
+ # @!attribute [rw] tags
917
+ # A list of one or more tags to assign to the application. A tag is a
918
+ # key-value pair that identifies an application. Note that the maximum
919
+ # number of application tags includes system tags. The maximum number
920
+ # of user-defined application tags is 50. For more information, see
921
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
922
+ # Management Guide*.
923
+ #
924
+ #
925
+ #
926
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
927
+ # @return [Array<Types::Tag>]
928
+ #
864
929
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/CreateApplicationRequest AWS API Documentation
865
930
  #
866
931
  class CreateApplicationRequest < Struct.new(
@@ -869,7 +934,8 @@ module Aws::KinesisAnalytics
869
934
  :inputs,
870
935
  :outputs,
871
936
  :cloud_watch_logging_options,
872
- :application_code)
937
+ :application_code,
938
+ :tags)
873
939
  include Aws::Structure
874
940
  end
875
941
 
@@ -909,7 +975,11 @@ module Aws::KinesisAnalytics
909
975
  # @!attribute [rw] cloud_watch_logging_option_id
910
976
  # The `CloudWatchLoggingOptionId` of the CloudWatch logging option to
911
977
  # delete. You can get the `CloudWatchLoggingOptionId` by using the
912
- # DescribeApplication operation.
978
+ # [DescribeApplication][1] operation.
979
+ #
980
+ #
981
+ #
982
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
913
983
  # @return [String]
914
984
  #
915
985
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DeleteApplicationCloudWatchLoggingOptionRequest AWS API Documentation
@@ -945,7 +1015,11 @@ module Aws::KinesisAnalytics
945
1015
  # @!attribute [rw] input_id
946
1016
  # The ID of the input configuration from which to delete the input
947
1017
  # processing configuration. You can get a list of the input IDs for an
948
- # application by using the DescribeApplication operation.
1018
+ # application by using the [DescribeApplication][1] operation.
1019
+ #
1020
+ #
1021
+ #
1022
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
949
1023
  # @return [String]
950
1024
  #
951
1025
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DeleteApplicationInputProcessingConfigurationRequest AWS API Documentation
@@ -976,19 +1050,28 @@ module Aws::KinesisAnalytics
976
1050
  #
977
1051
  # @!attribute [rw] current_application_version_id
978
1052
  # Amazon Kinesis Analytics application version. You can use the
979
- # DescribeApplication operation to get the current application
1053
+ # [DescribeApplication][1] operation to get the current application
980
1054
  # version. If the version specified is not the current version, the
981
1055
  # `ConcurrentModificationException` is returned.
1056
+ #
1057
+ #
1058
+ #
1059
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
982
1060
  # @return [Integer]
983
1061
  #
984
1062
  # @!attribute [rw] output_id
985
1063
  # The ID of the configuration to delete. Each output configuration
986
1064
  # that is added to the application, either when the application is
987
- # created or later using the AddApplicationOutput operation, has a
988
- # unique ID. You need to provide the ID to uniquely identify the
1065
+ # created or later using the [AddApplicationOutput][1] operation, has
1066
+ # a unique ID. You need to provide the ID to uniquely identify the
989
1067
  # output configuration that you want to delete from the application
990
- # configuration. You can use the DescribeApplication operation to get
991
- # the specific `OutputId`.
1068
+ # configuration. You can use the [DescribeApplication][2] operation to
1069
+ # get the specific `OutputId`.
1070
+ #
1071
+ #
1072
+ #
1073
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_AddApplicationOutput.html
1074
+ # [2]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
992
1075
  # @return [String]
993
1076
  #
994
1077
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DeleteApplicationOutputRequest AWS API Documentation
@@ -1018,18 +1101,27 @@ module Aws::KinesisAnalytics
1018
1101
  # @return [String]
1019
1102
  #
1020
1103
  # @!attribute [rw] current_application_version_id
1021
- # Version of the application. You can use the DescribeApplication
1104
+ # Version of the application. You can use the [DescribeApplication][1]
1022
1105
  # operation to get the current application version. If the version
1023
1106
  # specified is not the current version, the
1024
1107
  # `ConcurrentModificationException` is returned.
1108
+ #
1109
+ #
1110
+ #
1111
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
1025
1112
  # @return [Integer]
1026
1113
  #
1027
1114
  # @!attribute [rw] reference_id
1028
1115
  # ID of the reference data source. When you add a reference data
1029
1116
  # source to your application using the
1030
- # AddApplicationReferenceDataSource, Amazon Kinesis Analytics assigns
1031
- # an ID. You can use the DescribeApplication operation to get the
1032
- # reference ID.
1117
+ # [AddApplicationReferenceDataSource][1], Amazon Kinesis Analytics
1118
+ # assigns an ID. You can use the [DescribeApplication][2] operation to
1119
+ # get the reference ID.
1120
+ #
1121
+ #
1122
+ #
1123
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_AddApplicationReferenceDataSource.html
1124
+ # [2]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
1033
1125
  # @return [String]
1034
1126
  #
1035
1127
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DeleteApplicationReferenceDataSourceRequest AWS API Documentation
@@ -1109,7 +1201,7 @@ module Aws::KinesisAnalytics
1109
1201
  #
1110
1202
  #
1111
1203
  #
1112
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
1204
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
1113
1205
  #
1114
1206
  # @note When making an API call, you may pass DestinationSchema
1115
1207
  # data as a hash:
@@ -1171,8 +1263,12 @@ module Aws::KinesisAnalytics
1171
1263
  # @return [Types::S3Configuration]
1172
1264
  #
1173
1265
  # @!attribute [rw] input_processing_configuration
1174
- # The InputProcessingConfiguration to use to preprocess the records
1175
- # before discovering the schema of the records.
1266
+ # The [InputProcessingConfiguration][1] to use to preprocess the
1267
+ # records before discovering the schema of the records.
1268
+ #
1269
+ #
1270
+ #
1271
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html
1176
1272
  # @return [Types::InputProcessingConfiguration]
1177
1273
  #
1178
1274
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DiscoverInputSchemaRequest AWS API Documentation
@@ -1224,7 +1320,7 @@ module Aws::KinesisAnalytics
1224
1320
  #
1225
1321
  #
1226
1322
  #
1227
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1323
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1228
1324
  #
1229
1325
  # @note When making an API call, you may pass Input
1230
1326
  # data as a hash:
@@ -1282,10 +1378,16 @@ module Aws::KinesisAnalytics
1282
1378
  # @return [String]
1283
1379
  #
1284
1380
  # @!attribute [rw] input_processing_configuration
1285
- # The InputProcessingConfiguration for the input. An input processor
1286
- # transforms records as they are received from the stream, before the
1287
- # application's SQL code executes. Currently, the only input
1288
- # processing configuration available is InputLambdaProcessor.
1381
+ # The [InputProcessingConfiguration][1] for the input. An input
1382
+ # processor transforms records as they are received from the stream,
1383
+ # before the application's SQL code executes. Currently, the only
1384
+ # input processing configuration available is
1385
+ # [InputLambdaProcessor][2].
1386
+ #
1387
+ #
1388
+ #
1389
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html
1390
+ # [2]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html
1289
1391
  # @return [Types::InputProcessingConfiguration]
1290
1392
  #
1291
1393
  # @!attribute [rw] kinesis_streams_input
@@ -1317,7 +1419,7 @@ module Aws::KinesisAnalytics
1317
1419
  #
1318
1420
  #
1319
1421
  #
1320
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1422
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1321
1423
  # @return [Types::InputParallelism]
1322
1424
  #
1323
1425
  # @!attribute [rw] input_schema
@@ -1356,7 +1458,11 @@ module Aws::KinesisAnalytics
1356
1458
  #
1357
1459
  # @!attribute [rw] id
1358
1460
  # Input source ID. You can get this ID by calling the
1359
- # DescribeApplication operation.
1461
+ # [DescribeApplication][1] operation.
1462
+ #
1463
+ #
1464
+ #
1465
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
1360
1466
  # @return [String]
1361
1467
  #
1362
1468
  # @!attribute [rw] input_starting_position_configuration
@@ -1377,7 +1483,7 @@ module Aws::KinesisAnalytics
1377
1483
  #
1378
1484
  #
1379
1485
  #
1380
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1486
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1381
1487
  #
1382
1488
  # @!attribute [rw] input_id
1383
1489
  # Input ID associated with the application input. This is the ID that
@@ -1451,7 +1557,7 @@ module Aws::KinesisAnalytics
1451
1557
  #
1452
1558
  #
1453
1559
  #
1454
- # [1]: https://aws.amazon.com/documentation/lambda/
1560
+ # [1]: https://docs.aws.amazon.com/lambda/
1455
1561
  #
1456
1562
  # @note When making an API call, you may pass InputLambdaProcessor
1457
1563
  # data as a hash:
@@ -1465,9 +1571,16 @@ module Aws::KinesisAnalytics
1465
1571
  # The ARN of the [AWS Lambda][1] function that operates on records in
1466
1572
  # the stream.
1467
1573
  #
1574
+ # <note markdown="1"> To specify an earlier version of the Lambda function than the
1575
+ # latest, include the Lambda function version in the Lambda function
1576
+ # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
1577
+ # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
1578
+ #
1579
+ # </note>
1580
+ #
1468
1581
  #
1469
1582
  #
1470
- # [1]: https://aws.amazon.com/documentation/lambda/
1583
+ # [1]: https://docs.aws.amazon.com/lambda/
1471
1584
  # @return [String]
1472
1585
  #
1473
1586
  # @!attribute [rw] role_arn
@@ -1490,7 +1603,7 @@ module Aws::KinesisAnalytics
1490
1603
  #
1491
1604
  #
1492
1605
  #
1493
- # [1]: https://aws.amazon.com/documentation/lambda/
1606
+ # [1]: https://docs.aws.amazon.com/lambda/
1494
1607
  #
1495
1608
  # @!attribute [rw] resource_arn
1496
1609
  # The ARN of the [AWS Lambda][1] function that is used to preprocess
@@ -1498,7 +1611,7 @@ module Aws::KinesisAnalytics
1498
1611
  #
1499
1612
  #
1500
1613
  #
1501
- # [1]: https://aws.amazon.com/documentation/lambda/
1614
+ # [1]: https://docs.aws.amazon.com/lambda/
1502
1615
  # @return [String]
1503
1616
  #
1504
1617
  # @!attribute [rw] role_arn
@@ -1514,9 +1627,13 @@ module Aws::KinesisAnalytics
1514
1627
  include Aws::Structure
1515
1628
  end
1516
1629
 
1517
- # Represents an update to the InputLambdaProcessor that is used to
1630
+ # Represents an update to the [InputLambdaProcessor][1] that is used to
1518
1631
  # preprocess the records in the stream.
1519
1632
  #
1633
+ #
1634
+ #
1635
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html
1636
+ #
1520
1637
  # @note When making an API call, you may pass InputLambdaProcessorUpdate
1521
1638
  # data as a hash:
1522
1639
  #
@@ -1529,9 +1646,16 @@ module Aws::KinesisAnalytics
1529
1646
  # The Amazon Resource Name (ARN) of the new [AWS Lambda][1] function
1530
1647
  # that is used to preprocess the records in the stream.
1531
1648
  #
1649
+ # <note markdown="1"> To specify an earlier version of the Lambda function than the
1650
+ # latest, include the Lambda function version in the Lambda function
1651
+ # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
1652
+ # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
1653
+ #
1654
+ # </note>
1655
+ #
1532
1656
  #
1533
1657
  #
1534
- # [1]: https://aws.amazon.com/documentation/lambda/
1658
+ # [1]: https://docs.aws.amazon.com/ambda/
1535
1659
  # @return [String]
1536
1660
  #
1537
1661
  # @!attribute [rw] role_arn_update
@@ -1553,7 +1677,7 @@ module Aws::KinesisAnalytics
1553
1677
  #
1554
1678
  #
1555
1679
  #
1556
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1680
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
1557
1681
  #
1558
1682
  # @note When making an API call, you may pass InputParallelism
1559
1683
  # data as a hash:
@@ -1568,7 +1692,7 @@ module Aws::KinesisAnalytics
1568
1692
  #
1569
1693
  #
1570
1694
  #
1571
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html
1695
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html
1572
1696
  # @return [Integer]
1573
1697
  #
1574
1698
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/InputParallelism AWS API Documentation
@@ -1605,7 +1729,7 @@ module Aws::KinesisAnalytics
1605
1729
  #
1606
1730
  #
1607
1731
  #
1608
- # [1]: https://aws.amazon.com/documentation/lambda/
1732
+ # [1]: https://docs.aws.amazon.com/lambda/
1609
1733
  #
1610
1734
  # @note When making an API call, you may pass InputProcessingConfiguration
1611
1735
  # data as a hash:
@@ -1618,8 +1742,12 @@ module Aws::KinesisAnalytics
1618
1742
  # }
1619
1743
  #
1620
1744
  # @!attribute [rw] input_lambda_processor
1621
- # The InputLambdaProcessor that is used to preprocess the records in
1622
- # the stream before being processed by your application code.
1745
+ # The [InputLambdaProcessor][1] that is used to preprocess the records
1746
+ # in the stream before being processed by your application code.
1747
+ #
1748
+ #
1749
+ #
1750
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html
1623
1751
  # @return [Types::InputLambdaProcessor]
1624
1752
  #
1625
1753
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/InputProcessingConfiguration AWS API Documentation
@@ -1634,11 +1762,15 @@ module Aws::KinesisAnalytics
1634
1762
  #
1635
1763
  #
1636
1764
  #
1637
- # [1]: https://aws.amazon.com/documentation/lambda/
1765
+ # [1]: https://docs.aws.amazon.com/lambda/
1638
1766
  #
1639
1767
  # @!attribute [rw] input_lambda_processor_description
1640
1768
  # Provides configuration information about the associated
1641
- # InputLambdaProcessorDescription.
1769
+ # [InputLambdaProcessorDescription][1].
1770
+ #
1771
+ #
1772
+ #
1773
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessorDescription.html
1642
1774
  # @return [Types::InputLambdaProcessorDescription]
1643
1775
  #
1644
1776
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/InputProcessingConfigurationDescription AWS API Documentation
@@ -1648,7 +1780,11 @@ module Aws::KinesisAnalytics
1648
1780
  include Aws::Structure
1649
1781
  end
1650
1782
 
1651
- # Describes updates to an InputProcessingConfiguration.
1783
+ # Describes updates to an [InputProcessingConfiguration][1].
1784
+ #
1785
+ #
1786
+ #
1787
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputProcessingConfiguration.html
1652
1788
  #
1653
1789
  # @note When making an API call, you may pass InputProcessingConfigurationUpdate
1654
1790
  # data as a hash:
@@ -1661,7 +1797,11 @@ module Aws::KinesisAnalytics
1661
1797
  # }
1662
1798
  #
1663
1799
  # @!attribute [rw] input_lambda_processor_update
1664
- # Provides update information for an InputLambdaProcessor.
1800
+ # Provides update information for an [InputLambdaProcessor][1].
1801
+ #
1802
+ #
1803
+ #
1804
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html
1665
1805
  # @return [Types::InputLambdaProcessorUpdate]
1666
1806
  #
1667
1807
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/InputProcessingConfigurationUpdate AWS API Documentation
@@ -2012,10 +2152,14 @@ module Aws::KinesisAnalytics
2012
2152
  include Aws::Structure
2013
2153
  end
2014
2154
 
2015
- # When updating an output configuration using the UpdateApplication
2155
+ # When updating an output configuration using the [UpdateApplication][1]
2016
2156
  # operation, provides information about an Amazon Kinesis Firehose
2017
2157
  # delivery stream configured as the destination.
2018
2158
  #
2159
+ #
2160
+ #
2161
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
2162
+ #
2019
2163
  # @note When making an API call, you may pass KinesisFirehoseOutputUpdate
2020
2164
  # data as a hash:
2021
2165
  #
@@ -2175,10 +2319,14 @@ module Aws::KinesisAnalytics
2175
2319
  include Aws::Structure
2176
2320
  end
2177
2321
 
2178
- # When updating an output configuration using the UpdateApplication
2322
+ # When updating an output configuration using the [UpdateApplication][1]
2179
2323
  # operation, provides information about an Amazon Kinesis stream
2180
2324
  # configured as the destination.
2181
2325
  #
2326
+ #
2327
+ #
2328
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
2329
+ #
2182
2330
  # @note When making an API call, you may pass KinesisStreamsOutputUpdate
2183
2331
  # data as a hash:
2184
2332
  #
@@ -2222,6 +2370,13 @@ module Aws::KinesisAnalytics
2222
2370
  # @!attribute [rw] resource_arn
2223
2371
  # Amazon Resource Name (ARN) of the destination Lambda function to
2224
2372
  # write to.
2373
+ #
2374
+ # <note markdown="1"> To specify an earlier version of the Lambda function than the
2375
+ # latest, include the Lambda function version in the Lambda function
2376
+ # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
2377
+ # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
2378
+ #
2379
+ # </note>
2225
2380
  # @return [String]
2226
2381
  #
2227
2382
  # @!attribute [rw] role_arn
@@ -2258,10 +2413,14 @@ module Aws::KinesisAnalytics
2258
2413
  include Aws::Structure
2259
2414
  end
2260
2415
 
2261
- # When updating an output configuration using the UpdateApplication
2416
+ # When updating an output configuration using the [UpdateApplication][1]
2262
2417
  # operation, provides information about an AWS Lambda function
2263
2418
  # configured as the destination.
2264
2419
  #
2420
+ #
2421
+ #
2422
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
2423
+ #
2265
2424
  # @note When making an API call, you may pass LambdaOutputUpdate
2266
2425
  # data as a hash:
2267
2426
  #
@@ -2272,6 +2431,13 @@ module Aws::KinesisAnalytics
2272
2431
  #
2273
2432
  # @!attribute [rw] resource_arn_update
2274
2433
  # Amazon Resource Name (ARN) of the destination Lambda function.
2434
+ #
2435
+ # <note markdown="1"> To specify an earlier version of the Lambda function than the
2436
+ # latest, include the Lambda function version in the Lambda function
2437
+ # ARN. For more information about Lambda ARNs, see [Example ARNs: AWS
2438
+ # Lambda](/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
2439
+ #
2440
+ # </note>
2275
2441
  # @return [String]
2276
2442
  #
2277
2443
  # @!attribute [rw] role_arn_update
@@ -2332,6 +2498,35 @@ module Aws::KinesisAnalytics
2332
2498
  include Aws::Structure
2333
2499
  end
2334
2500
 
2501
+ # @note When making an API call, you may pass ListTagsForResourceRequest
2502
+ # data as a hash:
2503
+ #
2504
+ # {
2505
+ # resource_arn: "KinesisAnalyticsARN", # required
2506
+ # }
2507
+ #
2508
+ # @!attribute [rw] resource_arn
2509
+ # The ARN of the application for which to retrieve tags.
2510
+ # @return [String]
2511
+ #
2512
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/ListTagsForResourceRequest AWS API Documentation
2513
+ #
2514
+ class ListTagsForResourceRequest < Struct.new(
2515
+ :resource_arn)
2516
+ include Aws::Structure
2517
+ end
2518
+
2519
+ # @!attribute [rw] tags
2520
+ # The key-value tags assigned to the application.
2521
+ # @return [Array<Types::Tag>]
2522
+ #
2523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/ListTagsForResourceResponse AWS API Documentation
2524
+ #
2525
+ class ListTagsForResourceResponse < Struct.new(
2526
+ :tags)
2527
+ include Aws::Structure
2528
+ end
2529
+
2335
2530
  # When configuring application input at the time of creating or updating
2336
2531
  # an application, provides additional mapping information specific to
2337
2532
  # the record format (such as JSON, CSV, or record fields delimited by
@@ -2380,7 +2575,7 @@ module Aws::KinesisAnalytics
2380
2575
  #
2381
2576
  #
2382
2577
  #
2383
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html
2578
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html
2384
2579
  #
2385
2580
  # @note When making an API call, you may pass Output
2386
2581
  # data as a hash:
@@ -2428,7 +2623,7 @@ module Aws::KinesisAnalytics
2428
2623
  #
2429
2624
  #
2430
2625
  #
2431
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
2626
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
2432
2627
  # @return [Types::DestinationSchema]
2433
2628
  #
2434
2629
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/Output AWS API Documentation
@@ -2544,7 +2739,7 @@ module Aws::KinesisAnalytics
2544
2739
  #
2545
2740
  #
2546
2741
  #
2547
- # [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
2742
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
2548
2743
  # @return [Types::DestinationSchema]
2549
2744
  #
2550
2745
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/OutputUpdate AWS API Documentation
@@ -2579,8 +2774,13 @@ module Aws::KinesisAnalytics
2579
2774
  # @return [String]
2580
2775
  #
2581
2776
  # @!attribute [rw] mapping
2582
- # Reference to the data element in the streaming input of the
2583
- # reference data source.
2777
+ # Reference to the data element in the streaming input or the
2778
+ # reference data source. This element is required if the
2779
+ # [RecordFormatType][1] is `JSON`.
2780
+ #
2781
+ #
2782
+ #
2783
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_RecordFormat.html#analytics-Type-RecordFormat-RecordFormatTypel
2584
2784
  # @return [String]
2585
2785
  #
2586
2786
  # @!attribute [rw] sql_type
@@ -2684,7 +2884,7 @@ module Aws::KinesisAnalytics
2684
2884
  # data. Also identifies the IAM role Amazon Kinesis Analytics can
2685
2885
  # assume to read this object on your behalf. An Amazon Kinesis
2686
2886
  # Analytics application loads reference data only once. If the data
2687
- # changes, you call the UpdateApplication operation to trigger
2887
+ # changes, you call the `UpdateApplication` operation to trigger
2688
2888
  # reloading of data into your application.
2689
2889
  # @return [Types::S3ReferenceDataSource]
2690
2890
  #
@@ -2708,7 +2908,12 @@ module Aws::KinesisAnalytics
2708
2908
  # @!attribute [rw] reference_id
2709
2909
  # ID of the reference data source. This is the ID that Amazon Kinesis
2710
2910
  # Analytics assigns when you add the reference data source to your
2711
- # application using the AddApplicationReferenceDataSource operation.
2911
+ # application using the [AddApplicationReferenceDataSource][1]
2912
+ # operation.
2913
+ #
2914
+ #
2915
+ #
2916
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_AddApplicationReferenceDataSource.html
2712
2917
  # @return [String]
2713
2918
  #
2714
2919
  # @!attribute [rw] table_name
@@ -2783,7 +2988,11 @@ module Aws::KinesisAnalytics
2783
2988
  #
2784
2989
  # @!attribute [rw] reference_id
2785
2990
  # ID of the reference data source being updated. You can use the
2786
- # DescribeApplication operation to get this value.
2991
+ # [DescribeApplication][1] operation to get this value.
2992
+ #
2993
+ #
2994
+ #
2995
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
2787
2996
  # @return [String]
2788
2997
  #
2789
2998
  # @!attribute [rw] table_name_update
@@ -2852,8 +3061,12 @@ module Aws::KinesisAnalytics
2852
3061
  # read this object on your behalf.
2853
3062
  #
2854
3063
  # An Amazon Kinesis Analytics application loads reference data only
2855
- # once. If the data changes, you call the UpdateApplication operation to
2856
- # trigger reloading of data into your application.
3064
+ # once. If the data changes, you call the [UpdateApplication][1]
3065
+ # operation to trigger reloading of data into your application.
3066
+ #
3067
+ #
3068
+ #
3069
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_UpdateApplication.html
2857
3070
  #
2858
3071
  # @note When making an API call, you may pass S3ReferenceDataSource
2859
3072
  # data as a hash:
@@ -3061,6 +3274,104 @@ module Aws::KinesisAnalytics
3061
3274
  #
3062
3275
  class StopApplicationResponse < Aws::EmptyStructure; end
3063
3276
 
3277
+ # A key-value pair (the value is optional) that you can define and
3278
+ # assign to AWS resources. If you specify a tag that already exists, the
3279
+ # tag value is replaced with the value that you specify in the request.
3280
+ # Note that the maximum number of application tags includes system tags.
3281
+ # The maximum number of user-defined application tags is 50. For more
3282
+ # information, see [Using Cost Allocation Tags][1] in the *AWS Billing
3283
+ # and Cost Management Guide*.
3284
+ #
3285
+ #
3286
+ #
3287
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
3288
+ #
3289
+ # @note When making an API call, you may pass Tag
3290
+ # data as a hash:
3291
+ #
3292
+ # {
3293
+ # key: "TagKey", # required
3294
+ # value: "TagValue",
3295
+ # }
3296
+ #
3297
+ # @!attribute [rw] key
3298
+ # The key of the key-value tag.
3299
+ # @return [String]
3300
+ #
3301
+ # @!attribute [rw] value
3302
+ # The value of the key-value tag. The value is optional.
3303
+ # @return [String]
3304
+ #
3305
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/Tag AWS API Documentation
3306
+ #
3307
+ class Tag < Struct.new(
3308
+ :key,
3309
+ :value)
3310
+ include Aws::Structure
3311
+ end
3312
+
3313
+ # @note When making an API call, you may pass TagResourceRequest
3314
+ # data as a hash:
3315
+ #
3316
+ # {
3317
+ # resource_arn: "KinesisAnalyticsARN", # required
3318
+ # tags: [ # required
3319
+ # {
3320
+ # key: "TagKey", # required
3321
+ # value: "TagValue",
3322
+ # },
3323
+ # ],
3324
+ # }
3325
+ #
3326
+ # @!attribute [rw] resource_arn
3327
+ # The ARN of the application to assign the tags.
3328
+ # @return [String]
3329
+ #
3330
+ # @!attribute [rw] tags
3331
+ # The key-value tags to assign to the application.
3332
+ # @return [Array<Types::Tag>]
3333
+ #
3334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/TagResourceRequest AWS API Documentation
3335
+ #
3336
+ class TagResourceRequest < Struct.new(
3337
+ :resource_arn,
3338
+ :tags)
3339
+ include Aws::Structure
3340
+ end
3341
+
3342
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/TagResourceResponse AWS API Documentation
3343
+ #
3344
+ class TagResourceResponse < Aws::EmptyStructure; end
3345
+
3346
+ # @note When making an API call, you may pass UntagResourceRequest
3347
+ # data as a hash:
3348
+ #
3349
+ # {
3350
+ # resource_arn: "KinesisAnalyticsARN", # required
3351
+ # tag_keys: ["TagKey"], # required
3352
+ # }
3353
+ #
3354
+ # @!attribute [rw] resource_arn
3355
+ # The ARN of the Kinesis Analytics application from which to remove
3356
+ # the tags.
3357
+ # @return [String]
3358
+ #
3359
+ # @!attribute [rw] tag_keys
3360
+ # A list of keys of tags to remove from the specified application.
3361
+ # @return [Array<String>]
3362
+ #
3363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/UntagResourceRequest AWS API Documentation
3364
+ #
3365
+ class UntagResourceRequest < Struct.new(
3366
+ :resource_arn,
3367
+ :tag_keys)
3368
+ include Aws::Structure
3369
+ end
3370
+
3371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/UntagResourceResponse AWS API Documentation
3372
+ #
3373
+ class UntagResourceResponse < Aws::EmptyStructure; end
3374
+
3064
3375
  # @note When making an API call, you may pass UpdateApplicationRequest
3065
3376
  # data as a hash:
3066
3377
  #
@@ -3184,7 +3495,11 @@ module Aws::KinesisAnalytics
3184
3495
  #
3185
3496
  # @!attribute [rw] current_application_version_id
3186
3497
  # The current application version ID. You can use the
3187
- # DescribeApplication operation to get this value.
3498
+ # [DescribeApplication][1] operation to get this value.
3499
+ #
3500
+ #
3501
+ #
3502
+ # [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/API_DescribeApplication.html
3188
3503
  # @return [Integer]
3189
3504
  #
3190
3505
  # @!attribute [rw] application_update