aws-sdk-kinesisanalytics 1.0.0.rc5 → 1.0.0.rc6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-kinesisanalytics/client.rb +125 -21
- data/lib/aws-sdk-kinesisanalytics/client_api.rb +73 -0
- data/lib/aws-sdk-kinesisanalytics/types.rb +240 -25
- data/lib/aws-sdk-kinesisanalytics.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 640bdf4b1cc1e4cd9ba38ba85b184efb55db8927
|
4
|
+
data.tar.gz: 542285431a57d7b28527cb129b20589ba845cebc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f0c4aa00c19d270b7aa257a7a6369058af72fbd6cb023db8804f845dcc75dc66f0289c0f2f6311de09ae4f9493b7cd4259dc448d38c79c9ff654fc58f111e0c
|
7
|
+
data.tar.gz: c1db808984803923d497af06926cc18f8277cf4f005fb06d5066673dbd6ad391b54ad5e6032915ffa192b3a64bd4e0fc6b7da963f10b01f576b87a2b6ca180f8
|
@@ -155,6 +155,48 @@ module Aws::KinesisAnalytics
|
|
155
155
|
|
156
156
|
# @!group API Operations
|
157
157
|
|
158
|
+
# Adds a CloudWatch log stream to monitor application configuration
|
159
|
+
# errors. For more information about using CloudWatch log streams with
|
160
|
+
# Amazon Kinesis Analytics applications, see [Monitoring Configuration
|
161
|
+
# Errors][1].
|
162
|
+
#
|
163
|
+
#
|
164
|
+
#
|
165
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html
|
166
|
+
#
|
167
|
+
# @option params [required, String] :application_name
|
168
|
+
# The Amazon Kinesis Analytics application name.
|
169
|
+
#
|
170
|
+
# @option params [required, Integer] :current_application_version_id
|
171
|
+
# The version ID of the Amazon Kinesis Analytics application.
|
172
|
+
#
|
173
|
+
# @option params [required, Types::CloudWatchLoggingOption] :cloud_watch_logging_option
|
174
|
+
# Provide the CloudWatch log stream ARN and the IAM role ARN. Note: To
|
175
|
+
# write application messages to CloudWatch, the IAM role used must have
|
176
|
+
# the `PutLogEvents` policy action enabled.
|
177
|
+
#
|
178
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
179
|
+
#
|
180
|
+
# @example Request syntax with placeholder values
|
181
|
+
#
|
182
|
+
# resp = client.add_application_cloud_watch_logging_option({
|
183
|
+
# application_name: "ApplicationName", # required
|
184
|
+
# current_application_version_id: 1, # required
|
185
|
+
# cloud_watch_logging_option: { # required
|
186
|
+
# log_stream_arn: "LogStreamARN", # required
|
187
|
+
# role_arn: "RoleARN", # required
|
188
|
+
# },
|
189
|
+
# })
|
190
|
+
#
|
191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/AddApplicationCloudWatchLoggingOption AWS API Documentation
|
192
|
+
#
|
193
|
+
# @overload add_application_cloud_watch_logging_option(params = {})
|
194
|
+
# @param [Hash] params ({})
|
195
|
+
def add_application_cloud_watch_logging_option(params = {}, options = {})
|
196
|
+
req = build_request(:add_application_cloud_watch_logging_option, params)
|
197
|
+
req.send_request(options)
|
198
|
+
end
|
199
|
+
|
158
200
|
# Adds a streaming source to your Amazon Kinesis application. For
|
159
201
|
# conceptual information, see [Configuring Application Input][1].
|
160
202
|
#
|
@@ -184,14 +226,6 @@ module Aws::KinesisAnalytics
|
|
184
226
|
# version.
|
185
227
|
#
|
186
228
|
# @option params [required, Types::Input] :input
|
187
|
-
# When you configure the application input, you specify the streaming
|
188
|
-
# source, the in-application stream name that is created, and the
|
189
|
-
# mapping between the two. For more information, see [Configuring
|
190
|
-
# Application Input][1].
|
191
|
-
#
|
192
|
-
#
|
193
|
-
#
|
194
|
-
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
|
195
229
|
#
|
196
230
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
197
231
|
#
|
@@ -425,8 +459,7 @@ module Aws::KinesisAnalytics
|
|
425
459
|
# in-application stream, which you can think of as a constantly updating
|
426
460
|
# table. In the mapping, you must provide a schema for the
|
427
461
|
# in-application stream and map each data column in the in-application
|
428
|
-
# stream to a data element in the streaming source
|
429
|
-
# renaming, casting and dropping columns as desired.
|
462
|
+
# stream to a data element in the streaming source.
|
430
463
|
#
|
431
464
|
# Your application code is one or more SQL statements that read input
|
432
465
|
# data, transform it, and generate output. Your application code can
|
@@ -494,14 +527,26 @@ module Aws::KinesisAnalytics
|
|
494
527
|
# JSON, CSV). You also must provide an IAM role that Amazon Kinesis
|
495
528
|
# Analytics can assume to write to this stream on your behalf.
|
496
529
|
#
|
530
|
+
# @option params [Array<Types::CloudWatchLoggingOption>] :cloud_watch_logging_options
|
531
|
+
# Use this parameter to configure a CloudWatch log stream to monitor
|
532
|
+
# application configuration errors. For more information, see
|
533
|
+
# [Monitoring Configuration Errors][1].
|
534
|
+
#
|
535
|
+
#
|
536
|
+
#
|
537
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html
|
538
|
+
#
|
497
539
|
# @option params [String] :application_code
|
498
540
|
# One or more SQL statements that read input data, transform it, and
|
499
541
|
# generate output. For example, you can write a SQL statement that reads
|
500
|
-
#
|
501
|
-
# advertisement clicks by vendor
|
542
|
+
# data from one in-application stream, generates a running average of
|
543
|
+
# the number of advertisement clicks by vendor, and insert resulting
|
544
|
+
# rows in another in-application stream using pumps. For more
|
545
|
+
# inforamtion about the typical pattern, see [Application Code][1].
|
502
546
|
#
|
503
|
-
# You can
|
504
|
-
# statement can be used as the input for the next statement.
|
547
|
+
# You can provide such series of SQL statements, where output of one
|
548
|
+
# statement can be used as the input for the next statement. You store
|
549
|
+
# intermediate results by creating in-application streams and pumps.
|
505
550
|
#
|
506
551
|
# Note that the application code must create the streams with names
|
507
552
|
# specified in the `Outputs`. For example, if your `Outputs` defines
|
@@ -509,6 +554,10 @@ module Aws::KinesisAnalytics
|
|
509
554
|
# `ExampleOutputStream2`, then your application code must create these
|
510
555
|
# streams.
|
511
556
|
#
|
557
|
+
#
|
558
|
+
#
|
559
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-app-code.html
|
560
|
+
#
|
512
561
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
513
562
|
#
|
514
563
|
# * {Types::CreateApplicationResponse#application_summary #application_summary} => Types::ApplicationSummary
|
@@ -572,6 +621,12 @@ module Aws::KinesisAnalytics
|
|
572
621
|
# },
|
573
622
|
# },
|
574
623
|
# ],
|
624
|
+
# cloud_watch_logging_options: [
|
625
|
+
# {
|
626
|
+
# log_stream_arn: "LogStreamARN", # required
|
627
|
+
# role_arn: "RoleARN", # required
|
628
|
+
# },
|
629
|
+
# ],
|
575
630
|
# application_code: "ApplicationCode",
|
576
631
|
# })
|
577
632
|
#
|
@@ -622,6 +677,44 @@ module Aws::KinesisAnalytics
|
|
622
677
|
req.send_request(options)
|
623
678
|
end
|
624
679
|
|
680
|
+
# Deletes a CloudWatch log stream from an application. For more
|
681
|
+
# information about using CloudWatch log streams with Amazon Kinesis
|
682
|
+
# Analytics applications, see [Monitoring Configuration Errors][1].
|
683
|
+
#
|
684
|
+
#
|
685
|
+
#
|
686
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html
|
687
|
+
#
|
688
|
+
# @option params [required, String] :application_name
|
689
|
+
# The Amazon Kinesis Analytics application name.
|
690
|
+
#
|
691
|
+
# @option params [required, Integer] :current_application_version_id
|
692
|
+
# The version ID of the Amazon Kinesis Analytics application.
|
693
|
+
#
|
694
|
+
# @option params [required, String] :cloud_watch_logging_option_id
|
695
|
+
# The `CloudWatchLoggingOptionId` of the CloudWatch logging option to
|
696
|
+
# delete. You can use the DescribeApplication operation to get the
|
697
|
+
# `CloudWatchLoggingOptionId`.
|
698
|
+
#
|
699
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
700
|
+
#
|
701
|
+
# @example Request syntax with placeholder values
|
702
|
+
#
|
703
|
+
# resp = client.delete_application_cloud_watch_logging_option({
|
704
|
+
# application_name: "ApplicationName", # required
|
705
|
+
# current_application_version_id: 1, # required
|
706
|
+
# cloud_watch_logging_option_id: "Id", # required
|
707
|
+
# })
|
708
|
+
#
|
709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DeleteApplicationCloudWatchLoggingOption AWS API Documentation
|
710
|
+
#
|
711
|
+
# @overload delete_application_cloud_watch_logging_option(params = {})
|
712
|
+
# @param [Hash] params ({})
|
713
|
+
def delete_application_cloud_watch_logging_option(params = {}, options = {})
|
714
|
+
req = build_request(:delete_application_cloud_watch_logging_option, params)
|
715
|
+
req.send_request(options)
|
716
|
+
end
|
717
|
+
|
625
718
|
# Deletes output destination configuration from your application
|
626
719
|
# configuration. Amazon Kinesis Analytics will no longer write data from
|
627
720
|
# the corresponding in-application stream to the external output
|
@@ -785,6 +878,10 @@ module Aws::KinesisAnalytics
|
|
785
878
|
# resp.application_detail.reference_data_source_descriptions[0].reference_schema.record_columns[0].name #=> String
|
786
879
|
# resp.application_detail.reference_data_source_descriptions[0].reference_schema.record_columns[0].mapping #=> String
|
787
880
|
# resp.application_detail.reference_data_source_descriptions[0].reference_schema.record_columns[0].sql_type #=> String
|
881
|
+
# resp.application_detail.cloud_watch_logging_option_descriptions #=> Array
|
882
|
+
# resp.application_detail.cloud_watch_logging_option_descriptions[0].cloud_watch_logging_option_id #=> String
|
883
|
+
# resp.application_detail.cloud_watch_logging_option_descriptions[0].log_stream_arn #=> String
|
884
|
+
# resp.application_detail.cloud_watch_logging_option_descriptions[0].role_arn #=> String
|
788
885
|
# resp.application_detail.application_code #=> String
|
789
886
|
# resp.application_detail.application_version_id #=> Integer
|
790
887
|
#
|
@@ -1003,18 +1100,18 @@ module Aws::KinesisAnalytics
|
|
1003
1100
|
req.send_request(options)
|
1004
1101
|
end
|
1005
1102
|
|
1006
|
-
# Updates an existing Kinesis Analytics application. Using this
|
1007
|
-
# can update application code, input configuration, and output
|
1103
|
+
# Updates an existing Amazon Kinesis Analytics application. Using this
|
1104
|
+
# API, you can update application code, input configuration, and output
|
1008
1105
|
# configuration.
|
1009
1106
|
#
|
1010
|
-
# Note that Kinesis Analytics updates the
|
1011
|
-
# each time you update your application.
|
1107
|
+
# Note that Amazon Kinesis Analytics updates the
|
1108
|
+
# `CurrentApplicationVersionId` each time you update your application.
|
1012
1109
|
#
|
1013
|
-
# This
|
1110
|
+
# This operation requires permission for the
|
1014
1111
|
# `kinesisanalytics:UpdateApplication` action.
|
1015
1112
|
#
|
1016
1113
|
# @option params [required, String] :application_name
|
1017
|
-
# Name of the Kinesis Analytics application to update.
|
1114
|
+
# Name of the Amazon Kinesis Analytics application to update.
|
1018
1115
|
#
|
1019
1116
|
# @option params [required, Integer] :current_application_version_id
|
1020
1117
|
# The current application version ID. You can use the
|
@@ -1121,6 +1218,13 @@ module Aws::KinesisAnalytics
|
|
1121
1218
|
# },
|
1122
1219
|
# },
|
1123
1220
|
# ],
|
1221
|
+
# cloud_watch_logging_option_updates: [
|
1222
|
+
# {
|
1223
|
+
# cloud_watch_logging_option_id: "Id", # required
|
1224
|
+
# log_stream_arn_update: "LogStreamARN",
|
1225
|
+
# role_arn_update: "RoleARN",
|
1226
|
+
# },
|
1227
|
+
# ],
|
1124
1228
|
# },
|
1125
1229
|
# })
|
1126
1230
|
#
|
@@ -1146,7 +1250,7 @@ module Aws::KinesisAnalytics
|
|
1146
1250
|
params: params,
|
1147
1251
|
config: config)
|
1148
1252
|
context[:gem_name] = 'aws-sdk-kinesisanalytics'
|
1149
|
-
context[:gem_version] = '1.0.0.
|
1253
|
+
context[:gem_version] = '1.0.0.rc6'
|
1150
1254
|
Seahorse::Client::Request.new(handlers, context)
|
1151
1255
|
end
|
1152
1256
|
|
@@ -11,6 +11,8 @@ module Aws::KinesisAnalytics
|
|
11
11
|
|
12
12
|
include Seahorse::Model
|
13
13
|
|
14
|
+
AddApplicationCloudWatchLoggingOptionRequest = Shapes::StructureShape.new(name: 'AddApplicationCloudWatchLoggingOptionRequest')
|
15
|
+
AddApplicationCloudWatchLoggingOptionResponse = Shapes::StructureShape.new(name: 'AddApplicationCloudWatchLoggingOptionResponse')
|
14
16
|
AddApplicationInputRequest = Shapes::StructureShape.new(name: 'AddApplicationInputRequest')
|
15
17
|
AddApplicationInputResponse = Shapes::StructureShape.new(name: 'AddApplicationInputResponse')
|
16
18
|
AddApplicationOutputRequest = Shapes::StructureShape.new(name: 'AddApplicationOutputRequest')
|
@@ -29,10 +31,18 @@ module Aws::KinesisAnalytics
|
|
29
31
|
BooleanObject = Shapes::BooleanShape.new(name: 'BooleanObject')
|
30
32
|
BucketARN = Shapes::StringShape.new(name: 'BucketARN')
|
31
33
|
CSVMappingParameters = Shapes::StructureShape.new(name: 'CSVMappingParameters')
|
34
|
+
CloudWatchLoggingOption = Shapes::StructureShape.new(name: 'CloudWatchLoggingOption')
|
35
|
+
CloudWatchLoggingOptionDescription = Shapes::StructureShape.new(name: 'CloudWatchLoggingOptionDescription')
|
36
|
+
CloudWatchLoggingOptionDescriptions = Shapes::ListShape.new(name: 'CloudWatchLoggingOptionDescriptions')
|
37
|
+
CloudWatchLoggingOptionUpdate = Shapes::StructureShape.new(name: 'CloudWatchLoggingOptionUpdate')
|
38
|
+
CloudWatchLoggingOptionUpdates = Shapes::ListShape.new(name: 'CloudWatchLoggingOptionUpdates')
|
39
|
+
CloudWatchLoggingOptions = Shapes::ListShape.new(name: 'CloudWatchLoggingOptions')
|
32
40
|
CodeValidationException = Shapes::StructureShape.new(name: 'CodeValidationException')
|
33
41
|
ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
|
34
42
|
CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
|
35
43
|
CreateApplicationResponse = Shapes::StructureShape.new(name: 'CreateApplicationResponse')
|
44
|
+
DeleteApplicationCloudWatchLoggingOptionRequest = Shapes::StructureShape.new(name: 'DeleteApplicationCloudWatchLoggingOptionRequest')
|
45
|
+
DeleteApplicationCloudWatchLoggingOptionResponse = Shapes::StructureShape.new(name: 'DeleteApplicationCloudWatchLoggingOptionResponse')
|
36
46
|
DeleteApplicationOutputRequest = Shapes::StructureShape.new(name: 'DeleteApplicationOutputRequest')
|
37
47
|
DeleteApplicationOutputResponse = Shapes::StructureShape.new(name: 'DeleteApplicationOutputResponse')
|
38
48
|
DeleteApplicationReferenceDataSourceRequest = Shapes::StructureShape.new(name: 'DeleteApplicationReferenceDataSourceRequest')
|
@@ -83,6 +93,7 @@ module Aws::KinesisAnalytics
|
|
83
93
|
ListApplicationsInputLimit = Shapes::IntegerShape.new(name: 'ListApplicationsInputLimit')
|
84
94
|
ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
|
85
95
|
ListApplicationsResponse = Shapes::StructureShape.new(name: 'ListApplicationsResponse')
|
96
|
+
LogStreamARN = Shapes::StringShape.new(name: 'LogStreamARN')
|
86
97
|
MappingParameters = Shapes::StructureShape.new(name: 'MappingParameters')
|
87
98
|
Output = Shapes::StructureShape.new(name: 'Output')
|
88
99
|
OutputDescription = Shapes::StructureShape.new(name: 'OutputDescription')
|
@@ -129,6 +140,13 @@ module Aws::KinesisAnalytics
|
|
129
140
|
UpdateApplicationRequest = Shapes::StructureShape.new(name: 'UpdateApplicationRequest')
|
130
141
|
UpdateApplicationResponse = Shapes::StructureShape.new(name: 'UpdateApplicationResponse')
|
131
142
|
|
143
|
+
AddApplicationCloudWatchLoggingOptionRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
|
144
|
+
AddApplicationCloudWatchLoggingOptionRequest.add_member(:current_application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "CurrentApplicationVersionId"))
|
145
|
+
AddApplicationCloudWatchLoggingOptionRequest.add_member(:cloud_watch_logging_option, Shapes::ShapeRef.new(shape: CloudWatchLoggingOption, required: true, location_name: "CloudWatchLoggingOption"))
|
146
|
+
AddApplicationCloudWatchLoggingOptionRequest.struct_class = Types::AddApplicationCloudWatchLoggingOptionRequest
|
147
|
+
|
148
|
+
AddApplicationCloudWatchLoggingOptionResponse.struct_class = Types::AddApplicationCloudWatchLoggingOptionResponse
|
149
|
+
|
132
150
|
AddApplicationInputRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
|
133
151
|
AddApplicationInputRequest.add_member(:current_application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "CurrentApplicationVersionId"))
|
134
152
|
AddApplicationInputRequest.add_member(:input, Shapes::ShapeRef.new(shape: Input, required: true, location_name: "Input"))
|
@@ -159,6 +177,7 @@ module Aws::KinesisAnalytics
|
|
159
177
|
ApplicationDetail.add_member(:input_descriptions, Shapes::ShapeRef.new(shape: InputDescriptions, location_name: "InputDescriptions"))
|
160
178
|
ApplicationDetail.add_member(:output_descriptions, Shapes::ShapeRef.new(shape: OutputDescriptions, location_name: "OutputDescriptions"))
|
161
179
|
ApplicationDetail.add_member(:reference_data_source_descriptions, Shapes::ShapeRef.new(shape: ReferenceDataSourceDescriptions, location_name: "ReferenceDataSourceDescriptions"))
|
180
|
+
ApplicationDetail.add_member(:cloud_watch_logging_option_descriptions, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptionDescriptions, location_name: "CloudWatchLoggingOptionDescriptions"))
|
162
181
|
ApplicationDetail.add_member(:application_code, Shapes::ShapeRef.new(shape: ApplicationCode, location_name: "ApplicationCode"))
|
163
182
|
ApplicationDetail.add_member(:application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "ApplicationVersionId"))
|
164
183
|
ApplicationDetail.struct_class = Types::ApplicationDetail
|
@@ -174,22 +193,51 @@ module Aws::KinesisAnalytics
|
|
174
193
|
ApplicationUpdate.add_member(:application_code_update, Shapes::ShapeRef.new(shape: ApplicationCode, location_name: "ApplicationCodeUpdate"))
|
175
194
|
ApplicationUpdate.add_member(:output_updates, Shapes::ShapeRef.new(shape: OutputUpdates, location_name: "OutputUpdates"))
|
176
195
|
ApplicationUpdate.add_member(:reference_data_source_updates, Shapes::ShapeRef.new(shape: ReferenceDataSourceUpdates, location_name: "ReferenceDataSourceUpdates"))
|
196
|
+
ApplicationUpdate.add_member(:cloud_watch_logging_option_updates, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptionUpdates, location_name: "CloudWatchLoggingOptionUpdates"))
|
177
197
|
ApplicationUpdate.struct_class = Types::ApplicationUpdate
|
178
198
|
|
179
199
|
CSVMappingParameters.add_member(:record_row_delimiter, Shapes::ShapeRef.new(shape: RecordRowDelimiter, required: true, location_name: "RecordRowDelimiter"))
|
180
200
|
CSVMappingParameters.add_member(:record_column_delimiter, Shapes::ShapeRef.new(shape: RecordColumnDelimiter, required: true, location_name: "RecordColumnDelimiter"))
|
181
201
|
CSVMappingParameters.struct_class = Types::CSVMappingParameters
|
182
202
|
|
203
|
+
CloudWatchLoggingOption.add_member(:log_stream_arn, Shapes::ShapeRef.new(shape: LogStreamARN, required: true, location_name: "LogStreamARN"))
|
204
|
+
CloudWatchLoggingOption.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
205
|
+
CloudWatchLoggingOption.struct_class = Types::CloudWatchLoggingOption
|
206
|
+
|
207
|
+
CloudWatchLoggingOptionDescription.add_member(:cloud_watch_logging_option_id, Shapes::ShapeRef.new(shape: Id, location_name: "CloudWatchLoggingOptionId"))
|
208
|
+
CloudWatchLoggingOptionDescription.add_member(:log_stream_arn, Shapes::ShapeRef.new(shape: LogStreamARN, required: true, location_name: "LogStreamARN"))
|
209
|
+
CloudWatchLoggingOptionDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
210
|
+
CloudWatchLoggingOptionDescription.struct_class = Types::CloudWatchLoggingOptionDescription
|
211
|
+
|
212
|
+
CloudWatchLoggingOptionDescriptions.member = Shapes::ShapeRef.new(shape: CloudWatchLoggingOptionDescription)
|
213
|
+
|
214
|
+
CloudWatchLoggingOptionUpdate.add_member(:cloud_watch_logging_option_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "CloudWatchLoggingOptionId"))
|
215
|
+
CloudWatchLoggingOptionUpdate.add_member(:log_stream_arn_update, Shapes::ShapeRef.new(shape: LogStreamARN, location_name: "LogStreamARNUpdate"))
|
216
|
+
CloudWatchLoggingOptionUpdate.add_member(:role_arn_update, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARNUpdate"))
|
217
|
+
CloudWatchLoggingOptionUpdate.struct_class = Types::CloudWatchLoggingOptionUpdate
|
218
|
+
|
219
|
+
CloudWatchLoggingOptionUpdates.member = Shapes::ShapeRef.new(shape: CloudWatchLoggingOptionUpdate)
|
220
|
+
|
221
|
+
CloudWatchLoggingOptions.member = Shapes::ShapeRef.new(shape: CloudWatchLoggingOption)
|
222
|
+
|
183
223
|
CreateApplicationRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
|
184
224
|
CreateApplicationRequest.add_member(:application_description, Shapes::ShapeRef.new(shape: ApplicationDescription, location_name: "ApplicationDescription"))
|
185
225
|
CreateApplicationRequest.add_member(:inputs, Shapes::ShapeRef.new(shape: Inputs, location_name: "Inputs"))
|
186
226
|
CreateApplicationRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: Outputs, location_name: "Outputs"))
|
227
|
+
CreateApplicationRequest.add_member(:cloud_watch_logging_options, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptions, location_name: "CloudWatchLoggingOptions"))
|
187
228
|
CreateApplicationRequest.add_member(:application_code, Shapes::ShapeRef.new(shape: ApplicationCode, location_name: "ApplicationCode"))
|
188
229
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
189
230
|
|
190
231
|
CreateApplicationResponse.add_member(:application_summary, Shapes::ShapeRef.new(shape: ApplicationSummary, required: true, location_name: "ApplicationSummary"))
|
191
232
|
CreateApplicationResponse.struct_class = Types::CreateApplicationResponse
|
192
233
|
|
234
|
+
DeleteApplicationCloudWatchLoggingOptionRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
|
235
|
+
DeleteApplicationCloudWatchLoggingOptionRequest.add_member(:current_application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "CurrentApplicationVersionId"))
|
236
|
+
DeleteApplicationCloudWatchLoggingOptionRequest.add_member(:cloud_watch_logging_option_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "CloudWatchLoggingOptionId"))
|
237
|
+
DeleteApplicationCloudWatchLoggingOptionRequest.struct_class = Types::DeleteApplicationCloudWatchLoggingOptionRequest
|
238
|
+
|
239
|
+
DeleteApplicationCloudWatchLoggingOptionResponse.struct_class = Types::DeleteApplicationCloudWatchLoggingOptionResponse
|
240
|
+
|
193
241
|
DeleteApplicationOutputRequest.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "ApplicationName"))
|
194
242
|
DeleteApplicationOutputRequest.add_member(:current_application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "CurrentApplicationVersionId"))
|
195
243
|
DeleteApplicationOutputRequest.add_member(:output_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "OutputId"))
|
@@ -463,6 +511,18 @@ module Aws::KinesisAnalytics
|
|
463
511
|
"timestampFormat" => "unixTimestamp",
|
464
512
|
}
|
465
513
|
|
514
|
+
api.add_operation(:add_application_cloud_watch_logging_option, Seahorse::Model::Operation.new.tap do |o|
|
515
|
+
o.name = "AddApplicationCloudWatchLoggingOption"
|
516
|
+
o.http_method = "POST"
|
517
|
+
o.http_request_uri = "/"
|
518
|
+
o.input = Shapes::ShapeRef.new(shape: AddApplicationCloudWatchLoggingOptionRequest)
|
519
|
+
o.output = Shapes::ShapeRef.new(shape: AddApplicationCloudWatchLoggingOptionResponse)
|
520
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
521
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
522
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
523
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
524
|
+
end)
|
525
|
+
|
466
526
|
api.add_operation(:add_application_input, Seahorse::Model::Operation.new.tap do |o|
|
467
527
|
o.name = "AddApplicationInput"
|
468
528
|
o.http_method = "POST"
|
@@ -522,6 +582,18 @@ module Aws::KinesisAnalytics
|
|
522
582
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
523
583
|
end)
|
524
584
|
|
585
|
+
api.add_operation(:delete_application_cloud_watch_logging_option, Seahorse::Model::Operation.new.tap do |o|
|
586
|
+
o.name = "DeleteApplicationCloudWatchLoggingOption"
|
587
|
+
o.http_method = "POST"
|
588
|
+
o.http_request_uri = "/"
|
589
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteApplicationCloudWatchLoggingOptionRequest)
|
590
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteApplicationCloudWatchLoggingOptionResponse)
|
591
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
592
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
593
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
594
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
595
|
+
end)
|
596
|
+
|
525
597
|
api.add_operation(:delete_application_output, Seahorse::Model::Operation.new.tap do |o|
|
526
598
|
o.name = "DeleteApplicationOutput"
|
527
599
|
o.http_method = "POST"
|
@@ -530,6 +602,7 @@ module Aws::KinesisAnalytics
|
|
530
602
|
o.output = Shapes::ShapeRef.new(shape: DeleteApplicationOutputResponse)
|
531
603
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
532
604
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
605
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
533
606
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
534
607
|
end)
|
535
608
|
|
@@ -8,6 +8,45 @@
|
|
8
8
|
module Aws::KinesisAnalytics
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# @note When making an API call, you may pass AddApplicationCloudWatchLoggingOptionRequest
|
12
|
+
# data as a hash:
|
13
|
+
#
|
14
|
+
# {
|
15
|
+
# application_name: "ApplicationName", # required
|
16
|
+
# current_application_version_id: 1, # required
|
17
|
+
# cloud_watch_logging_option: { # required
|
18
|
+
# log_stream_arn: "LogStreamARN", # required
|
19
|
+
# role_arn: "RoleARN", # required
|
20
|
+
# },
|
21
|
+
# }
|
22
|
+
#
|
23
|
+
# @!attribute [rw] application_name
|
24
|
+
# The Amazon Kinesis Analytics application name.
|
25
|
+
# @return [String]
|
26
|
+
#
|
27
|
+
# @!attribute [rw] current_application_version_id
|
28
|
+
# The version ID of the Amazon Kinesis Analytics application.
|
29
|
+
# @return [Integer]
|
30
|
+
#
|
31
|
+
# @!attribute [rw] cloud_watch_logging_option
|
32
|
+
# Provide the CloudWatch log stream ARN and the IAM role ARN. Note: To
|
33
|
+
# write application messages to CloudWatch, the IAM role used must
|
34
|
+
# have the `PutLogEvents` policy action enabled.
|
35
|
+
# @return [Types::CloudWatchLoggingOption]
|
36
|
+
#
|
37
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/AddApplicationCloudWatchLoggingOptionRequest AWS API Documentation
|
38
|
+
#
|
39
|
+
class AddApplicationCloudWatchLoggingOptionRequest < Struct.new(
|
40
|
+
:application_name,
|
41
|
+
:current_application_version_id,
|
42
|
+
:cloud_watch_logging_option)
|
43
|
+
include Aws::Structure
|
44
|
+
end
|
45
|
+
|
46
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/AddApplicationCloudWatchLoggingOptionResponse AWS API Documentation
|
47
|
+
#
|
48
|
+
class AddApplicationCloudWatchLoggingOptionResponse < Aws::EmptyStructure; end
|
49
|
+
|
11
50
|
# @note When making an API call, you may pass AddApplicationInputRequest
|
12
51
|
# data as a hash:
|
13
52
|
#
|
@@ -64,14 +103,6 @@ module Aws::KinesisAnalytics
|
|
64
103
|
# @return [Integer]
|
65
104
|
#
|
66
105
|
# @!attribute [rw] input
|
67
|
-
# When you configure the application input, you specify the streaming
|
68
|
-
# source, the in-application stream name that is created, and the
|
69
|
-
# mapping between the two. For more information, see [Configuring
|
70
|
-
# Application Input][1].
|
71
|
-
#
|
72
|
-
#
|
73
|
-
#
|
74
|
-
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
|
75
106
|
# @return [Types::Input]
|
76
107
|
#
|
77
108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/AddApplicationInputRequest AWS API Documentation
|
@@ -269,6 +300,17 @@ module Aws::KinesisAnalytics
|
|
269
300
|
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html
|
270
301
|
# @return [Array<Types::ReferenceDataSourceDescription>]
|
271
302
|
#
|
303
|
+
# @!attribute [rw] cloud_watch_logging_option_descriptions
|
304
|
+
# Describes the CloudWatch log streams configured to receive
|
305
|
+
# application messages. For more information about using CloudWatch
|
306
|
+
# log streams with Amazon Kinesis Analytics applications, see
|
307
|
+
# [Monitoring Configuration Errors][1].
|
308
|
+
#
|
309
|
+
#
|
310
|
+
#
|
311
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html
|
312
|
+
# @return [Array<Types::CloudWatchLoggingOptionDescription>]
|
313
|
+
#
|
272
314
|
# @!attribute [rw] application_code
|
273
315
|
# Returns the application code that you provided to perform data
|
274
316
|
# analysis on any of the in-application streams in your application.
|
@@ -290,6 +332,7 @@ module Aws::KinesisAnalytics
|
|
290
332
|
:input_descriptions,
|
291
333
|
:output_descriptions,
|
292
334
|
:reference_data_source_descriptions,
|
335
|
+
:cloud_watch_logging_option_descriptions,
|
293
336
|
:application_code,
|
294
337
|
:application_version_id)
|
295
338
|
include Aws::Structure
|
@@ -319,7 +362,7 @@ module Aws::KinesisAnalytics
|
|
319
362
|
include Aws::Structure
|
320
363
|
end
|
321
364
|
|
322
|
-
# Describes updates to apply to an existing Kinesis Analytics
|
365
|
+
# Describes updates to apply to an existing Amazon Kinesis Analytics
|
323
366
|
# application.
|
324
367
|
#
|
325
368
|
# @note When making an API call, you may pass ApplicationUpdate
|
@@ -416,6 +459,13 @@ module Aws::KinesisAnalytics
|
|
416
459
|
# },
|
417
460
|
# },
|
418
461
|
# ],
|
462
|
+
# cloud_watch_logging_option_updates: [
|
463
|
+
# {
|
464
|
+
# cloud_watch_logging_option_id: "Id", # required
|
465
|
+
# log_stream_arn_update: "LogStreamARN",
|
466
|
+
# role_arn_update: "RoleARN",
|
467
|
+
# },
|
468
|
+
# ],
|
419
469
|
# }
|
420
470
|
#
|
421
471
|
# @!attribute [rw] input_updates
|
@@ -434,13 +484,18 @@ module Aws::KinesisAnalytics
|
|
434
484
|
# Describes application reference data source updates.
|
435
485
|
# @return [Array<Types::ReferenceDataSourceUpdate>]
|
436
486
|
#
|
487
|
+
# @!attribute [rw] cloud_watch_logging_option_updates
|
488
|
+
# Describes application CloudWatch logging option updates.
|
489
|
+
# @return [Array<Types::CloudWatchLoggingOptionUpdate>]
|
490
|
+
#
|
437
491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/ApplicationUpdate AWS API Documentation
|
438
492
|
#
|
439
493
|
class ApplicationUpdate < Struct.new(
|
440
494
|
:input_updates,
|
441
495
|
:application_code_update,
|
442
496
|
:output_updates,
|
443
|
-
:reference_data_source_updates
|
497
|
+
:reference_data_source_updates,
|
498
|
+
:cloud_watch_logging_option_updates)
|
444
499
|
include Aws::Structure
|
445
500
|
end
|
446
501
|
|
@@ -479,6 +534,94 @@ module Aws::KinesisAnalytics
|
|
479
534
|
include Aws::Structure
|
480
535
|
end
|
481
536
|
|
537
|
+
# Provides a description of CloudWatch logging options, including the
|
538
|
+
# log stream ARN and the role ARN.
|
539
|
+
#
|
540
|
+
# @note When making an API call, you may pass CloudWatchLoggingOption
|
541
|
+
# data as a hash:
|
542
|
+
#
|
543
|
+
# {
|
544
|
+
# log_stream_arn: "LogStreamARN", # required
|
545
|
+
# role_arn: "RoleARN", # required
|
546
|
+
# }
|
547
|
+
#
|
548
|
+
# @!attribute [rw] log_stream_arn
|
549
|
+
# ARN of the CloudWatch log to receive application messages.
|
550
|
+
# @return [String]
|
551
|
+
#
|
552
|
+
# @!attribute [rw] role_arn
|
553
|
+
# IAM ARN of the role to use to send application messages. Note: To
|
554
|
+
# write application messages to CloudWatch, the IAM role used must
|
555
|
+
# have the `PutLogEvents` policy action enabled.
|
556
|
+
# @return [String]
|
557
|
+
#
|
558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/CloudWatchLoggingOption AWS API Documentation
|
559
|
+
#
|
560
|
+
class CloudWatchLoggingOption < Struct.new(
|
561
|
+
:log_stream_arn,
|
562
|
+
:role_arn)
|
563
|
+
include Aws::Structure
|
564
|
+
end
|
565
|
+
|
566
|
+
# Description of the CloudWatch logging option.
|
567
|
+
#
|
568
|
+
# @!attribute [rw] cloud_watch_logging_option_id
|
569
|
+
# ID of the CloudWatch logging option description.
|
570
|
+
# @return [String]
|
571
|
+
#
|
572
|
+
# @!attribute [rw] log_stream_arn
|
573
|
+
# ARN of the CloudWatch log to receive application messages.
|
574
|
+
# @return [String]
|
575
|
+
#
|
576
|
+
# @!attribute [rw] role_arn
|
577
|
+
# IAM ARN of the role to use to send application messages. Note: To
|
578
|
+
# write application messages to CloudWatch, the IAM role used must
|
579
|
+
# have the `PutLogEvents` policy action enabled.
|
580
|
+
# @return [String]
|
581
|
+
#
|
582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/CloudWatchLoggingOptionDescription AWS API Documentation
|
583
|
+
#
|
584
|
+
class CloudWatchLoggingOptionDescription < Struct.new(
|
585
|
+
:cloud_watch_logging_option_id,
|
586
|
+
:log_stream_arn,
|
587
|
+
:role_arn)
|
588
|
+
include Aws::Structure
|
589
|
+
end
|
590
|
+
|
591
|
+
# Describes CloudWatch logging option updates.
|
592
|
+
#
|
593
|
+
# @note When making an API call, you may pass CloudWatchLoggingOptionUpdate
|
594
|
+
# data as a hash:
|
595
|
+
#
|
596
|
+
# {
|
597
|
+
# cloud_watch_logging_option_id: "Id", # required
|
598
|
+
# log_stream_arn_update: "LogStreamARN",
|
599
|
+
# role_arn_update: "RoleARN",
|
600
|
+
# }
|
601
|
+
#
|
602
|
+
# @!attribute [rw] cloud_watch_logging_option_id
|
603
|
+
# ID of the CloudWatch logging option to update
|
604
|
+
# @return [String]
|
605
|
+
#
|
606
|
+
# @!attribute [rw] log_stream_arn_update
|
607
|
+
# ARN of the CloudWatch log to receive application messages.
|
608
|
+
# @return [String]
|
609
|
+
#
|
610
|
+
# @!attribute [rw] role_arn_update
|
611
|
+
# IAM ARN of the role to use to send application messages. Note: To
|
612
|
+
# write application messages to CloudWatch, the IAM role used must
|
613
|
+
# have the `PutLogEvents` policy action enabled.
|
614
|
+
# @return [String]
|
615
|
+
#
|
616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/CloudWatchLoggingOptionUpdate AWS API Documentation
|
617
|
+
#
|
618
|
+
class CloudWatchLoggingOptionUpdate < Struct.new(
|
619
|
+
:cloud_watch_logging_option_id,
|
620
|
+
:log_stream_arn_update,
|
621
|
+
:role_arn_update)
|
622
|
+
include Aws::Structure
|
623
|
+
end
|
624
|
+
|
482
625
|
# TBD
|
483
626
|
#
|
484
627
|
# @note When making an API call, you may pass CreateApplicationRequest
|
@@ -541,6 +684,12 @@ module Aws::KinesisAnalytics
|
|
541
684
|
# },
|
542
685
|
# },
|
543
686
|
# ],
|
687
|
+
# cloud_watch_logging_options: [
|
688
|
+
# {
|
689
|
+
# log_stream_arn: "LogStreamARN", # required
|
690
|
+
# role_arn: "RoleARN", # required
|
691
|
+
# },
|
692
|
+
# ],
|
544
693
|
# application_code: "ApplicationCode",
|
545
694
|
# }
|
546
695
|
#
|
@@ -592,20 +741,38 @@ module Aws::KinesisAnalytics
|
|
592
741
|
# Kinesis Analytics can assume to write to this stream on your behalf.
|
593
742
|
# @return [Array<Types::Output>]
|
594
743
|
#
|
744
|
+
# @!attribute [rw] cloud_watch_logging_options
|
745
|
+
# Use this parameter to configure a CloudWatch log stream to monitor
|
746
|
+
# application configuration errors. For more information, see
|
747
|
+
# [Monitoring Configuration Errors][1].
|
748
|
+
#
|
749
|
+
#
|
750
|
+
#
|
751
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html
|
752
|
+
# @return [Array<Types::CloudWatchLoggingOption>]
|
753
|
+
#
|
595
754
|
# @!attribute [rw] application_code
|
596
755
|
# One or more SQL statements that read input data, transform it, and
|
597
756
|
# generate output. For example, you can write a SQL statement that
|
598
|
-
# reads
|
599
|
-
# advertisement clicks by vendor
|
757
|
+
# reads data from one in-application stream, generates a running
|
758
|
+
# average of the number of advertisement clicks by vendor, and insert
|
759
|
+
# resulting rows in another in-application stream using pumps. For
|
760
|
+
# more inforamtion about the typical pattern, see [Application
|
761
|
+
# Code][1].
|
600
762
|
#
|
601
|
-
# You can
|
602
|
-
# statement can be used as the input for the next statement.
|
763
|
+
# You can provide such series of SQL statements, where output of one
|
764
|
+
# statement can be used as the input for the next statement. You store
|
765
|
+
# intermediate results by creating in-application streams and pumps.
|
603
766
|
#
|
604
767
|
# Note that the application code must create the streams with names
|
605
768
|
# specified in the `Outputs`. For example, if your `Outputs` defines
|
606
769
|
# output streams named `ExampleOutputStream1` and
|
607
770
|
# `ExampleOutputStream2`, then your application code must create these
|
608
771
|
# streams.
|
772
|
+
#
|
773
|
+
#
|
774
|
+
#
|
775
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-app-code.html
|
609
776
|
# @return [String]
|
610
777
|
#
|
611
778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/CreateApplicationRequest AWS API Documentation
|
@@ -615,6 +782,7 @@ module Aws::KinesisAnalytics
|
|
615
782
|
:application_description,
|
616
783
|
:inputs,
|
617
784
|
:outputs,
|
785
|
+
:cloud_watch_logging_options,
|
618
786
|
:application_code)
|
619
787
|
include Aws::Structure
|
620
788
|
end
|
@@ -635,6 +803,42 @@ module Aws::KinesisAnalytics
|
|
635
803
|
include Aws::Structure
|
636
804
|
end
|
637
805
|
|
806
|
+
# @note When making an API call, you may pass DeleteApplicationCloudWatchLoggingOptionRequest
|
807
|
+
# data as a hash:
|
808
|
+
#
|
809
|
+
# {
|
810
|
+
# application_name: "ApplicationName", # required
|
811
|
+
# current_application_version_id: 1, # required
|
812
|
+
# cloud_watch_logging_option_id: "Id", # required
|
813
|
+
# }
|
814
|
+
#
|
815
|
+
# @!attribute [rw] application_name
|
816
|
+
# The Amazon Kinesis Analytics application name.
|
817
|
+
# @return [String]
|
818
|
+
#
|
819
|
+
# @!attribute [rw] current_application_version_id
|
820
|
+
# The version ID of the Amazon Kinesis Analytics application.
|
821
|
+
# @return [Integer]
|
822
|
+
#
|
823
|
+
# @!attribute [rw] cloud_watch_logging_option_id
|
824
|
+
# The `CloudWatchLoggingOptionId` of the CloudWatch logging option to
|
825
|
+
# delete. You can use the DescribeApplication operation to get the
|
826
|
+
# `CloudWatchLoggingOptionId`.
|
827
|
+
# @return [String]
|
828
|
+
#
|
829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DeleteApplicationCloudWatchLoggingOptionRequest AWS API Documentation
|
830
|
+
#
|
831
|
+
class DeleteApplicationCloudWatchLoggingOptionRequest < Struct.new(
|
832
|
+
:application_name,
|
833
|
+
:current_application_version_id,
|
834
|
+
:cloud_watch_logging_option_id)
|
835
|
+
include Aws::Structure
|
836
|
+
end
|
837
|
+
|
838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/DeleteApplicationCloudWatchLoggingOptionResponse AWS API Documentation
|
839
|
+
#
|
840
|
+
class DeleteApplicationCloudWatchLoggingOptionResponse < Aws::EmptyStructure; end
|
841
|
+
|
638
842
|
# @note When making an API call, you may pass DeleteApplicationOutputRequest
|
639
843
|
# data as a hash:
|
640
844
|
#
|
@@ -913,9 +1117,9 @@ module Aws::KinesisAnalytics
|
|
913
1117
|
#
|
914
1118
|
# @!attribute [rw] name_prefix
|
915
1119
|
# Name prefix to use when creating in-application stream. Suppose you
|
916
|
-
# specify a prefix "MyInApplicationStream". Kinesis Analytics
|
917
|
-
# then create one or more (as per the `InputParallelism` count
|
918
|
-
# specified) in-application streams with names
|
1120
|
+
# specify a prefix "MyInApplicationStream". Amazon Kinesis Analytics
|
1121
|
+
# will then create one or more (as per the `InputParallelism` count
|
1122
|
+
# you specified) in-application streams with names
|
919
1123
|
# "MyInApplicationStream\_001", "MyInApplicationStream\_002" and
|
920
1124
|
# so on.
|
921
1125
|
# @return [String]
|
@@ -1063,7 +1267,7 @@ module Aws::KinesisAnalytics
|
|
1063
1267
|
end
|
1064
1268
|
|
1065
1269
|
# Describes the number of in-application streams to create for a given
|
1066
|
-
# streaming source. For information about
|
1270
|
+
# streaming source. For information about parallelism, see [Configuring
|
1067
1271
|
# Application Input][1].
|
1068
1272
|
#
|
1069
1273
|
#
|
@@ -1179,8 +1383,8 @@ module Aws::KinesisAnalytics
|
|
1179
1383
|
# @!attribute [rw] input_starting_position
|
1180
1384
|
# The starting position on the stream.
|
1181
1385
|
#
|
1182
|
-
# * `
|
1183
|
-
# stream.
|
1386
|
+
# * `NOW` - Start reading just after the most recent record in the
|
1387
|
+
# stream, start at the request timestamp that the customer issued.
|
1184
1388
|
#
|
1185
1389
|
# * `TRIM_HORIZON` - Start reading at the last untrimmed record in the
|
1186
1390
|
# stream, which is the oldest record available in the stream. This
|
@@ -1247,7 +1451,7 @@ module Aws::KinesisAnalytics
|
|
1247
1451
|
# @return [String]
|
1248
1452
|
#
|
1249
1453
|
# @!attribute [rw] name_prefix_update
|
1250
|
-
# Name prefix for in-application
|
1454
|
+
# Name prefix for in-application streams that Amazon Kinesis Analytics
|
1251
1455
|
# creates for the specific streaming source.
|
1252
1456
|
# @return [String]
|
1253
1457
|
#
|
@@ -1270,7 +1474,7 @@ module Aws::KinesisAnalytics
|
|
1270
1474
|
#
|
1271
1475
|
# @!attribute [rw] input_parallelism_update
|
1272
1476
|
# Describes the parallelism updates (the number in-application streams
|
1273
|
-
# Kinesis Analytics creates for the specific streaming source).
|
1477
|
+
# Amazon Kinesis Analytics creates for the specific streaming source).
|
1274
1478
|
# @return [Types::InputParallelismUpdate]
|
1275
1479
|
#
|
1276
1480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/InputUpdate AWS API Documentation
|
@@ -1728,8 +1932,12 @@ module Aws::KinesisAnalytics
|
|
1728
1932
|
#
|
1729
1933
|
#
|
1730
1934
|
#
|
1731
|
-
#
|
1732
|
-
#
|
1935
|
+
# For limits on how many destinations an application can write and other
|
1936
|
+
# limitations, see [Limits][1].
|
1937
|
+
#
|
1938
|
+
#
|
1939
|
+
#
|
1940
|
+
# [1]: http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html
|
1733
1941
|
#
|
1734
1942
|
# @note When making an API call, you may pass Output
|
1735
1943
|
# data as a hash:
|
@@ -2449,11 +2657,18 @@ module Aws::KinesisAnalytics
|
|
2449
2657
|
# },
|
2450
2658
|
# },
|
2451
2659
|
# ],
|
2660
|
+
# cloud_watch_logging_option_updates: [
|
2661
|
+
# {
|
2662
|
+
# cloud_watch_logging_option_id: "Id", # required
|
2663
|
+
# log_stream_arn_update: "LogStreamARN",
|
2664
|
+
# role_arn_update: "RoleARN",
|
2665
|
+
# },
|
2666
|
+
# ],
|
2452
2667
|
# },
|
2453
2668
|
# }
|
2454
2669
|
#
|
2455
2670
|
# @!attribute [rw] application_name
|
2456
|
-
# Name of the Kinesis Analytics application to update.
|
2671
|
+
# Name of the Amazon Kinesis Analytics application to update.
|
2457
2672
|
# @return [String]
|
2458
2673
|
#
|
2459
2674
|
# @!attribute [rw] current_application_version_id
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesisanalytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc13
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc13
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|