aws-sdk-kinesisanalytics 1.22.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-kinesisanalytics.rb +4 -2
- data/lib/aws-sdk-kinesisanalytics/client.rb +50 -28
- data/lib/aws-sdk-kinesisanalytics/client_api.rb +2 -0
- data/lib/aws-sdk-kinesisanalytics/customizations.rb +1 -0
- data/lib/aws-sdk-kinesisanalytics/errors.rb +2 -0
- data/lib/aws-sdk-kinesisanalytics/resource.rb +3 -7
- data/lib/aws-sdk-kinesisanalytics/types.rb +92 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a70be421130bcff5ff010730fe9671a00aa212da126c4bb91ce3d7a25953140f
|
4
|
+
data.tar.gz: df59c28634fef7e8d27d57240aec748864187702b67d8c493d84816123119527
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d589887541db1ead654546c67e13a831cf738c37d967b8265d7cdb44db98635e9c57e5a42c8552368fdeea16edafc55bbc1456a31d1108e64cffbafd19d5cbb3
|
7
|
+
data.tar.gz: c82bd8777076f35de63d1342c3cd5b947df7d20e693c9be60396fddd3c7a2640059ab8a39eb6e12c0dd04947b552ee5c638a625972911c5478d0dabb9b6ea7c2
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-kinesisanalytics/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::KinesisAnalytics
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.27.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:kinesisanalytics)
|
|
32
35
|
module Aws::KinesisAnalytics
|
33
36
|
# An API client for KinesisAnalytics. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::KinesisAnalytics::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::KinesisAnalytics
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::KinesisAnalytics
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::KinesisAnalytics
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::KinesisAnalytics
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::KinesisAnalytics
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -229,15 +248,19 @@ module Aws::KinesisAnalytics
|
|
229
248
|
#
|
230
249
|
# @option options [String] :retry_mode ("legacy")
|
231
250
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
251
|
+
#
|
252
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
253
|
+
# no retry mode is provided.
|
254
|
+
#
|
255
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
256
|
+
# This includes support for retry quotas, which limit the number of
|
257
|
+
# unsuccessful retries a client can make.
|
258
|
+
#
|
259
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
260
|
+
# functionality of `standard` mode along with automatic client side
|
261
|
+
# throttling. This is a provisional mode that may change behavior
|
262
|
+
# in the future.
|
263
|
+
#
|
241
264
|
#
|
242
265
|
# @option options [String] :secret_access_key
|
243
266
|
#
|
@@ -275,8 +298,7 @@ module Aws::KinesisAnalytics
|
|
275
298
|
#
|
276
299
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
300
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
301
|
+
# safely be set per-request on the session.
|
280
302
|
#
|
281
303
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
304
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +310,7 @@ module Aws::KinesisAnalytics
|
|
288
310
|
# request body. This option has no effect unless the request has
|
289
311
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
312
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
313
|
+
# request on the session.
|
292
314
|
#
|
293
315
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
316
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1908,7 +1930,7 @@ module Aws::KinesisAnalytics
|
|
1908
1930
|
params: params,
|
1909
1931
|
config: config)
|
1910
1932
|
context[:gem_name] = 'aws-sdk-kinesisanalytics'
|
1911
|
-
context[:gem_version] = '1.
|
1933
|
+
context[:gem_version] = '1.27.0'
|
1912
1934
|
Seahorse::Client::Request.new(handlers, context)
|
1913
1935
|
end
|
1914
1936
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::KinesisAnalytics
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::KinesisAnalytics::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::KinesisAnalytics::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::KinesisAnalytics::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -41,6 +43,7 @@ module Aws::KinesisAnalytics
|
|
41
43
|
:application_name,
|
42
44
|
:current_application_version_id,
|
43
45
|
:cloud_watch_logging_option)
|
46
|
+
SENSITIVE = []
|
44
47
|
include Aws::Structure
|
45
48
|
end
|
46
49
|
|
@@ -105,6 +108,7 @@ module Aws::KinesisAnalytics
|
|
105
108
|
:current_application_version_id,
|
106
109
|
:input_id,
|
107
110
|
:input_processing_configuration)
|
111
|
+
SENSITIVE = []
|
108
112
|
include Aws::Structure
|
109
113
|
end
|
110
114
|
|
@@ -191,6 +195,7 @@ module Aws::KinesisAnalytics
|
|
191
195
|
:application_name,
|
192
196
|
:current_application_version_id,
|
193
197
|
:input)
|
198
|
+
SENSITIVE = []
|
194
199
|
include Aws::Structure
|
195
200
|
end
|
196
201
|
|
@@ -255,6 +260,7 @@ module Aws::KinesisAnalytics
|
|
255
260
|
:application_name,
|
256
261
|
:current_application_version_id,
|
257
262
|
:output)
|
263
|
+
SENSITIVE = []
|
258
264
|
include Aws::Structure
|
259
265
|
end
|
260
266
|
|
@@ -332,6 +338,7 @@ module Aws::KinesisAnalytics
|
|
332
338
|
:application_name,
|
333
339
|
:current_application_version_id,
|
334
340
|
:reference_data_source)
|
341
|
+
SENSITIVE = []
|
335
342
|
include Aws::Structure
|
336
343
|
end
|
337
344
|
|
@@ -437,6 +444,7 @@ module Aws::KinesisAnalytics
|
|
437
444
|
:cloud_watch_logging_option_descriptions,
|
438
445
|
:application_code,
|
439
446
|
:application_version_id)
|
447
|
+
SENSITIVE = []
|
440
448
|
include Aws::Structure
|
441
449
|
end
|
442
450
|
|
@@ -469,6 +477,7 @@ module Aws::KinesisAnalytics
|
|
469
477
|
:application_name,
|
470
478
|
:application_arn,
|
471
479
|
:application_status)
|
480
|
+
SENSITIVE = []
|
472
481
|
include Aws::Structure
|
473
482
|
end
|
474
483
|
|
@@ -616,6 +625,7 @@ module Aws::KinesisAnalytics
|
|
616
625
|
:output_updates,
|
617
626
|
:reference_data_source_updates,
|
618
627
|
:cloud_watch_logging_option_updates)
|
628
|
+
SENSITIVE = []
|
619
629
|
include Aws::Structure
|
620
630
|
end
|
621
631
|
|
@@ -651,6 +661,7 @@ module Aws::KinesisAnalytics
|
|
651
661
|
class CSVMappingParameters < Struct.new(
|
652
662
|
:record_row_delimiter,
|
653
663
|
:record_column_delimiter)
|
664
|
+
SENSITIVE = []
|
654
665
|
include Aws::Structure
|
655
666
|
end
|
656
667
|
|
@@ -680,6 +691,7 @@ module Aws::KinesisAnalytics
|
|
680
691
|
class CloudWatchLoggingOption < Struct.new(
|
681
692
|
:log_stream_arn,
|
682
693
|
:role_arn)
|
694
|
+
SENSITIVE = []
|
683
695
|
include Aws::Structure
|
684
696
|
end
|
685
697
|
|
@@ -705,6 +717,7 @@ module Aws::KinesisAnalytics
|
|
705
717
|
:cloud_watch_logging_option_id,
|
706
718
|
:log_stream_arn,
|
707
719
|
:role_arn)
|
720
|
+
SENSITIVE = []
|
708
721
|
include Aws::Structure
|
709
722
|
end
|
710
723
|
|
@@ -739,6 +752,7 @@ module Aws::KinesisAnalytics
|
|
739
752
|
:cloud_watch_logging_option_id,
|
740
753
|
:log_stream_arn_update,
|
741
754
|
:role_arn_update)
|
755
|
+
SENSITIVE = []
|
742
756
|
include Aws::Structure
|
743
757
|
end
|
744
758
|
|
@@ -753,6 +767,7 @@ module Aws::KinesisAnalytics
|
|
753
767
|
#
|
754
768
|
class CodeValidationException < Struct.new(
|
755
769
|
:message)
|
770
|
+
SENSITIVE = []
|
756
771
|
include Aws::Structure
|
757
772
|
end
|
758
773
|
|
@@ -767,6 +782,7 @@ module Aws::KinesisAnalytics
|
|
767
782
|
#
|
768
783
|
class ConcurrentModificationException < Struct.new(
|
769
784
|
:message)
|
785
|
+
SENSITIVE = []
|
770
786
|
include Aws::Structure
|
771
787
|
end
|
772
788
|
|
@@ -963,6 +979,7 @@ module Aws::KinesisAnalytics
|
|
963
979
|
:cloud_watch_logging_options,
|
964
980
|
:application_code,
|
965
981
|
:tags)
|
982
|
+
SENSITIVE = []
|
966
983
|
include Aws::Structure
|
967
984
|
end
|
968
985
|
|
@@ -979,6 +996,7 @@ module Aws::KinesisAnalytics
|
|
979
996
|
#
|
980
997
|
class CreateApplicationResponse < Struct.new(
|
981
998
|
:application_summary)
|
999
|
+
SENSITIVE = []
|
982
1000
|
include Aws::Structure
|
983
1001
|
end
|
984
1002
|
|
@@ -1015,6 +1033,7 @@ module Aws::KinesisAnalytics
|
|
1015
1033
|
:application_name,
|
1016
1034
|
:current_application_version_id,
|
1017
1035
|
:cloud_watch_logging_option_id)
|
1036
|
+
SENSITIVE = []
|
1018
1037
|
include Aws::Structure
|
1019
1038
|
end
|
1020
1039
|
|
@@ -1055,6 +1074,7 @@ module Aws::KinesisAnalytics
|
|
1055
1074
|
:application_name,
|
1056
1075
|
:current_application_version_id,
|
1057
1076
|
:input_id)
|
1077
|
+
SENSITIVE = []
|
1058
1078
|
include Aws::Structure
|
1059
1079
|
end
|
1060
1080
|
|
@@ -1107,6 +1127,7 @@ module Aws::KinesisAnalytics
|
|
1107
1127
|
:application_name,
|
1108
1128
|
:current_application_version_id,
|
1109
1129
|
:output_id)
|
1130
|
+
SENSITIVE = []
|
1110
1131
|
include Aws::Structure
|
1111
1132
|
end
|
1112
1133
|
|
@@ -1157,6 +1178,7 @@ module Aws::KinesisAnalytics
|
|
1157
1178
|
:application_name,
|
1158
1179
|
:current_application_version_id,
|
1159
1180
|
:reference_id)
|
1181
|
+
SENSITIVE = []
|
1160
1182
|
include Aws::Structure
|
1161
1183
|
end
|
1162
1184
|
|
@@ -1185,6 +1207,7 @@ module Aws::KinesisAnalytics
|
|
1185
1207
|
class DeleteApplicationRequest < Struct.new(
|
1186
1208
|
:application_name,
|
1187
1209
|
:create_timestamp)
|
1210
|
+
SENSITIVE = []
|
1188
1211
|
include Aws::Structure
|
1189
1212
|
end
|
1190
1213
|
|
@@ -1207,6 +1230,7 @@ module Aws::KinesisAnalytics
|
|
1207
1230
|
#
|
1208
1231
|
class DescribeApplicationRequest < Struct.new(
|
1209
1232
|
:application_name)
|
1233
|
+
SENSITIVE = []
|
1210
1234
|
include Aws::Structure
|
1211
1235
|
end
|
1212
1236
|
|
@@ -1220,6 +1244,7 @@ module Aws::KinesisAnalytics
|
|
1220
1244
|
#
|
1221
1245
|
class DescribeApplicationResponse < Struct.new(
|
1222
1246
|
:application_detail)
|
1247
|
+
SENSITIVE = []
|
1223
1248
|
include Aws::Structure
|
1224
1249
|
end
|
1225
1250
|
|
@@ -1245,6 +1270,7 @@ module Aws::KinesisAnalytics
|
|
1245
1270
|
#
|
1246
1271
|
class DestinationSchema < Struct.new(
|
1247
1272
|
:record_format_type)
|
1273
|
+
SENSITIVE = []
|
1248
1274
|
include Aws::Structure
|
1249
1275
|
end
|
1250
1276
|
|
@@ -1306,6 +1332,7 @@ module Aws::KinesisAnalytics
|
|
1306
1332
|
:input_starting_position_configuration,
|
1307
1333
|
:s3_configuration,
|
1308
1334
|
:input_processing_configuration)
|
1335
|
+
SENSITIVE = []
|
1309
1336
|
include Aws::Structure
|
1310
1337
|
end
|
1311
1338
|
|
@@ -1337,6 +1364,7 @@ module Aws::KinesisAnalytics
|
|
1337
1364
|
:parsed_input_records,
|
1338
1365
|
:processed_input_records,
|
1339
1366
|
:raw_input_records)
|
1367
|
+
SENSITIVE = []
|
1340
1368
|
include Aws::Structure
|
1341
1369
|
end
|
1342
1370
|
|
@@ -1466,6 +1494,7 @@ module Aws::KinesisAnalytics
|
|
1466
1494
|
:kinesis_firehose_input,
|
1467
1495
|
:input_parallelism,
|
1468
1496
|
:input_schema)
|
1497
|
+
SENSITIVE = []
|
1469
1498
|
include Aws::Structure
|
1470
1499
|
end
|
1471
1500
|
|
@@ -1502,6 +1531,7 @@ module Aws::KinesisAnalytics
|
|
1502
1531
|
class InputConfiguration < Struct.new(
|
1503
1532
|
:id,
|
1504
1533
|
:input_starting_position_configuration)
|
1534
|
+
SENSITIVE = []
|
1505
1535
|
include Aws::Structure
|
1506
1536
|
end
|
1507
1537
|
|
@@ -1574,6 +1604,7 @@ module Aws::KinesisAnalytics
|
|
1574
1604
|
:input_schema,
|
1575
1605
|
:input_parallelism,
|
1576
1606
|
:input_starting_position_configuration)
|
1607
|
+
SENSITIVE = []
|
1577
1608
|
include Aws::Structure
|
1578
1609
|
end
|
1579
1610
|
|
@@ -1620,6 +1651,7 @@ module Aws::KinesisAnalytics
|
|
1620
1651
|
class InputLambdaProcessor < Struct.new(
|
1621
1652
|
:resource_arn,
|
1622
1653
|
:role_arn)
|
1654
|
+
SENSITIVE = []
|
1623
1655
|
include Aws::Structure
|
1624
1656
|
end
|
1625
1657
|
|
@@ -1651,6 +1683,7 @@ module Aws::KinesisAnalytics
|
|
1651
1683
|
class InputLambdaProcessorDescription < Struct.new(
|
1652
1684
|
:resource_arn,
|
1653
1685
|
:role_arn)
|
1686
|
+
SENSITIVE = []
|
1654
1687
|
include Aws::Structure
|
1655
1688
|
end
|
1656
1689
|
|
@@ -1695,6 +1728,7 @@ module Aws::KinesisAnalytics
|
|
1695
1728
|
class InputLambdaProcessorUpdate < Struct.new(
|
1696
1729
|
:resource_arn_update,
|
1697
1730
|
:role_arn_update)
|
1731
|
+
SENSITIVE = []
|
1698
1732
|
include Aws::Structure
|
1699
1733
|
end
|
1700
1734
|
|
@@ -1726,6 +1760,7 @@ module Aws::KinesisAnalytics
|
|
1726
1760
|
#
|
1727
1761
|
class InputParallelism < Struct.new(
|
1728
1762
|
:count)
|
1763
|
+
SENSITIVE = []
|
1729
1764
|
include Aws::Structure
|
1730
1765
|
end
|
1731
1766
|
|
@@ -1747,6 +1782,7 @@ module Aws::KinesisAnalytics
|
|
1747
1782
|
#
|
1748
1783
|
class InputParallelismUpdate < Struct.new(
|
1749
1784
|
:count_update)
|
1785
|
+
SENSITIVE = []
|
1750
1786
|
include Aws::Structure
|
1751
1787
|
end
|
1752
1788
|
|
@@ -1781,6 +1817,7 @@ module Aws::KinesisAnalytics
|
|
1781
1817
|
#
|
1782
1818
|
class InputProcessingConfiguration < Struct.new(
|
1783
1819
|
:input_lambda_processor)
|
1820
|
+
SENSITIVE = []
|
1784
1821
|
include Aws::Structure
|
1785
1822
|
end
|
1786
1823
|
|
@@ -1804,6 +1841,7 @@ module Aws::KinesisAnalytics
|
|
1804
1841
|
#
|
1805
1842
|
class InputProcessingConfigurationDescription < Struct.new(
|
1806
1843
|
:input_lambda_processor_description)
|
1844
|
+
SENSITIVE = []
|
1807
1845
|
include Aws::Structure
|
1808
1846
|
end
|
1809
1847
|
|
@@ -1835,6 +1873,7 @@ module Aws::KinesisAnalytics
|
|
1835
1873
|
#
|
1836
1874
|
class InputProcessingConfigurationUpdate < Struct.new(
|
1837
1875
|
:input_lambda_processor_update)
|
1876
|
+
SENSITIVE = []
|
1838
1877
|
include Aws::Structure
|
1839
1878
|
end
|
1840
1879
|
|
@@ -1887,6 +1926,7 @@ module Aws::KinesisAnalytics
|
|
1887
1926
|
:record_format_update,
|
1888
1927
|
:record_encoding_update,
|
1889
1928
|
:record_column_updates)
|
1929
|
+
SENSITIVE = []
|
1890
1930
|
include Aws::Structure
|
1891
1931
|
end
|
1892
1932
|
|
@@ -1919,6 +1959,7 @@ module Aws::KinesisAnalytics
|
|
1919
1959
|
#
|
1920
1960
|
class InputStartingPositionConfiguration < Struct.new(
|
1921
1961
|
:input_starting_position)
|
1962
|
+
SENSITIVE = []
|
1922
1963
|
include Aws::Structure
|
1923
1964
|
end
|
1924
1965
|
|
@@ -2018,6 +2059,7 @@ module Aws::KinesisAnalytics
|
|
2018
2059
|
:kinesis_firehose_input_update,
|
2019
2060
|
:input_schema_update,
|
2020
2061
|
:input_parallelism_update)
|
2062
|
+
SENSITIVE = []
|
2021
2063
|
include Aws::Structure
|
2022
2064
|
end
|
2023
2065
|
|
@@ -2031,6 +2073,7 @@ module Aws::KinesisAnalytics
|
|
2031
2073
|
#
|
2032
2074
|
class InvalidApplicationConfigurationException < Struct.new(
|
2033
2075
|
:message)
|
2076
|
+
SENSITIVE = []
|
2034
2077
|
include Aws::Structure
|
2035
2078
|
end
|
2036
2079
|
|
@@ -2043,6 +2086,7 @@ module Aws::KinesisAnalytics
|
|
2043
2086
|
#
|
2044
2087
|
class InvalidArgumentException < Struct.new(
|
2045
2088
|
:message)
|
2089
|
+
SENSITIVE = []
|
2046
2090
|
include Aws::Structure
|
2047
2091
|
end
|
2048
2092
|
|
@@ -2064,6 +2108,7 @@ module Aws::KinesisAnalytics
|
|
2064
2108
|
#
|
2065
2109
|
class JSONMappingParameters < Struct.new(
|
2066
2110
|
:record_row_path)
|
2111
|
+
SENSITIVE = []
|
2067
2112
|
include Aws::Structure
|
2068
2113
|
end
|
2069
2114
|
|
@@ -2095,6 +2140,7 @@ module Aws::KinesisAnalytics
|
|
2095
2140
|
class KinesisFirehoseInput < Struct.new(
|
2096
2141
|
:resource_arn,
|
2097
2142
|
:role_arn)
|
2143
|
+
SENSITIVE = []
|
2098
2144
|
include Aws::Structure
|
2099
2145
|
end
|
2100
2146
|
|
@@ -2117,6 +2163,7 @@ module Aws::KinesisAnalytics
|
|
2117
2163
|
class KinesisFirehoseInputDescription < Struct.new(
|
2118
2164
|
:resource_arn,
|
2119
2165
|
:role_arn)
|
2166
|
+
SENSITIVE = []
|
2120
2167
|
include Aws::Structure
|
2121
2168
|
end
|
2122
2169
|
|
@@ -2148,6 +2195,7 @@ module Aws::KinesisAnalytics
|
|
2148
2195
|
class KinesisFirehoseInputUpdate < Struct.new(
|
2149
2196
|
:resource_arn_update,
|
2150
2197
|
:role_arn_update)
|
2198
|
+
SENSITIVE = []
|
2151
2199
|
include Aws::Structure
|
2152
2200
|
end
|
2153
2201
|
|
@@ -2180,6 +2228,7 @@ module Aws::KinesisAnalytics
|
|
2180
2228
|
class KinesisFirehoseOutput < Struct.new(
|
2181
2229
|
:resource_arn,
|
2182
2230
|
:role_arn)
|
2231
|
+
SENSITIVE = []
|
2183
2232
|
include Aws::Structure
|
2184
2233
|
end
|
2185
2234
|
|
@@ -2201,6 +2250,7 @@ module Aws::KinesisAnalytics
|
|
2201
2250
|
class KinesisFirehoseOutputDescription < Struct.new(
|
2202
2251
|
:resource_arn,
|
2203
2252
|
:role_arn)
|
2253
|
+
SENSITIVE = []
|
2204
2254
|
include Aws::Structure
|
2205
2255
|
end
|
2206
2256
|
|
@@ -2236,6 +2286,7 @@ module Aws::KinesisAnalytics
|
|
2236
2286
|
class KinesisFirehoseOutputUpdate < Struct.new(
|
2237
2287
|
:resource_arn_update,
|
2238
2288
|
:role_arn_update)
|
2289
|
+
SENSITIVE = []
|
2239
2290
|
include Aws::Structure
|
2240
2291
|
end
|
2241
2292
|
|
@@ -2267,6 +2318,7 @@ module Aws::KinesisAnalytics
|
|
2267
2318
|
class KinesisStreamsInput < Struct.new(
|
2268
2319
|
:resource_arn,
|
2269
2320
|
:role_arn)
|
2321
|
+
SENSITIVE = []
|
2270
2322
|
include Aws::Structure
|
2271
2323
|
end
|
2272
2324
|
|
@@ -2287,6 +2339,7 @@ module Aws::KinesisAnalytics
|
|
2287
2339
|
class KinesisStreamsInputDescription < Struct.new(
|
2288
2340
|
:resource_arn,
|
2289
2341
|
:role_arn)
|
2342
|
+
SENSITIVE = []
|
2290
2343
|
include Aws::Structure
|
2291
2344
|
end
|
2292
2345
|
|
@@ -2317,6 +2370,7 @@ module Aws::KinesisAnalytics
|
|
2317
2370
|
class KinesisStreamsInputUpdate < Struct.new(
|
2318
2371
|
:resource_arn_update,
|
2319
2372
|
:role_arn_update)
|
2373
|
+
SENSITIVE = []
|
2320
2374
|
include Aws::Structure
|
2321
2375
|
end
|
2322
2376
|
|
@@ -2348,6 +2402,7 @@ module Aws::KinesisAnalytics
|
|
2348
2402
|
class KinesisStreamsOutput < Struct.new(
|
2349
2403
|
:resource_arn,
|
2350
2404
|
:role_arn)
|
2405
|
+
SENSITIVE = []
|
2351
2406
|
include Aws::Structure
|
2352
2407
|
end
|
2353
2408
|
|
@@ -2368,6 +2423,7 @@ module Aws::KinesisAnalytics
|
|
2368
2423
|
class KinesisStreamsOutputDescription < Struct.new(
|
2369
2424
|
:resource_arn,
|
2370
2425
|
:role_arn)
|
2426
|
+
SENSITIVE = []
|
2371
2427
|
include Aws::Structure
|
2372
2428
|
end
|
2373
2429
|
|
@@ -2403,6 +2459,7 @@ module Aws::KinesisAnalytics
|
|
2403
2459
|
class KinesisStreamsOutputUpdate < Struct.new(
|
2404
2460
|
:resource_arn_update,
|
2405
2461
|
:role_arn_update)
|
2462
|
+
SENSITIVE = []
|
2406
2463
|
include Aws::Structure
|
2407
2464
|
end
|
2408
2465
|
|
@@ -2442,6 +2499,7 @@ module Aws::KinesisAnalytics
|
|
2442
2499
|
class LambdaOutput < Struct.new(
|
2443
2500
|
:resource_arn,
|
2444
2501
|
:role_arn)
|
2502
|
+
SENSITIVE = []
|
2445
2503
|
include Aws::Structure
|
2446
2504
|
end
|
2447
2505
|
|
@@ -2462,6 +2520,7 @@ module Aws::KinesisAnalytics
|
|
2462
2520
|
class LambdaOutputDescription < Struct.new(
|
2463
2521
|
:resource_arn,
|
2464
2522
|
:role_arn)
|
2523
|
+
SENSITIVE = []
|
2465
2524
|
include Aws::Structure
|
2466
2525
|
end
|
2467
2526
|
|
@@ -2503,6 +2562,7 @@ module Aws::KinesisAnalytics
|
|
2503
2562
|
class LambdaOutputUpdate < Struct.new(
|
2504
2563
|
:resource_arn_update,
|
2505
2564
|
:role_arn_update)
|
2565
|
+
SENSITIVE = []
|
2506
2566
|
include Aws::Structure
|
2507
2567
|
end
|
2508
2568
|
|
@@ -2515,6 +2575,7 @@ module Aws::KinesisAnalytics
|
|
2515
2575
|
#
|
2516
2576
|
class LimitExceededException < Struct.new(
|
2517
2577
|
:message)
|
2578
|
+
SENSITIVE = []
|
2518
2579
|
include Aws::Structure
|
2519
2580
|
end
|
2520
2581
|
|
@@ -2543,6 +2604,7 @@ module Aws::KinesisAnalytics
|
|
2543
2604
|
class ListApplicationsRequest < Struct.new(
|
2544
2605
|
:limit,
|
2545
2606
|
:exclusive_start_application_name)
|
2607
|
+
SENSITIVE = []
|
2546
2608
|
include Aws::Structure
|
2547
2609
|
end
|
2548
2610
|
|
@@ -2559,6 +2621,7 @@ module Aws::KinesisAnalytics
|
|
2559
2621
|
class ListApplicationsResponse < Struct.new(
|
2560
2622
|
:application_summaries,
|
2561
2623
|
:has_more_applications)
|
2624
|
+
SENSITIVE = []
|
2562
2625
|
include Aws::Structure
|
2563
2626
|
end
|
2564
2627
|
|
@@ -2577,6 +2640,7 @@ module Aws::KinesisAnalytics
|
|
2577
2640
|
#
|
2578
2641
|
class ListTagsForResourceRequest < Struct.new(
|
2579
2642
|
:resource_arn)
|
2643
|
+
SENSITIVE = []
|
2580
2644
|
include Aws::Structure
|
2581
2645
|
end
|
2582
2646
|
|
@@ -2588,6 +2652,7 @@ module Aws::KinesisAnalytics
|
|
2588
2652
|
#
|
2589
2653
|
class ListTagsForResourceResponse < Struct.new(
|
2590
2654
|
:tags)
|
2655
|
+
SENSITIVE = []
|
2591
2656
|
include Aws::Structure
|
2592
2657
|
end
|
2593
2658
|
|
@@ -2624,6 +2689,7 @@ module Aws::KinesisAnalytics
|
|
2624
2689
|
class MappingParameters < Struct.new(
|
2625
2690
|
:json_mapping_parameters,
|
2626
2691
|
:csv_mapping_parameters)
|
2692
|
+
SENSITIVE = []
|
2627
2693
|
include Aws::Structure
|
2628
2694
|
end
|
2629
2695
|
|
@@ -2698,6 +2764,7 @@ module Aws::KinesisAnalytics
|
|
2698
2764
|
:kinesis_firehose_output,
|
2699
2765
|
:lambda_output,
|
2700
2766
|
:destination_schema)
|
2767
|
+
SENSITIVE = []
|
2701
2768
|
include Aws::Structure
|
2702
2769
|
end
|
2703
2770
|
|
@@ -2742,6 +2809,7 @@ module Aws::KinesisAnalytics
|
|
2742
2809
|
:kinesis_firehose_output_description,
|
2743
2810
|
:lambda_output_description,
|
2744
2811
|
:destination_schema)
|
2812
|
+
SENSITIVE = []
|
2745
2813
|
include Aws::Structure
|
2746
2814
|
end
|
2747
2815
|
|
@@ -2815,6 +2883,7 @@ module Aws::KinesisAnalytics
|
|
2815
2883
|
:kinesis_firehose_output_update,
|
2816
2884
|
:lambda_output_update,
|
2817
2885
|
:destination_schema_update)
|
2886
|
+
SENSITIVE = []
|
2818
2887
|
include Aws::Structure
|
2819
2888
|
end
|
2820
2889
|
|
@@ -2858,6 +2927,7 @@ module Aws::KinesisAnalytics
|
|
2858
2927
|
:name,
|
2859
2928
|
:mapping,
|
2860
2929
|
:sql_type)
|
2930
|
+
SENSITIVE = []
|
2861
2931
|
include Aws::Structure
|
2862
2932
|
end
|
2863
2933
|
|
@@ -2896,6 +2966,7 @@ module Aws::KinesisAnalytics
|
|
2896
2966
|
class RecordFormat < Struct.new(
|
2897
2967
|
:record_format_type,
|
2898
2968
|
:mapping_parameters)
|
2969
|
+
SENSITIVE = []
|
2899
2970
|
include Aws::Structure
|
2900
2971
|
end
|
2901
2972
|
|
@@ -2964,6 +3035,7 @@ module Aws::KinesisAnalytics
|
|
2964
3035
|
:table_name,
|
2965
3036
|
:s3_reference_data_source,
|
2966
3037
|
:reference_schema)
|
3038
|
+
SENSITIVE = []
|
2967
3039
|
include Aws::Structure
|
2968
3040
|
end
|
2969
3041
|
|
@@ -3005,6 +3077,7 @@ module Aws::KinesisAnalytics
|
|
3005
3077
|
:table_name,
|
3006
3078
|
:s3_reference_data_source_description,
|
3007
3079
|
:reference_schema)
|
3080
|
+
SENSITIVE = []
|
3008
3081
|
include Aws::Structure
|
3009
3082
|
end
|
3010
3083
|
|
@@ -3082,6 +3155,7 @@ module Aws::KinesisAnalytics
|
|
3082
3155
|
:table_name_update,
|
3083
3156
|
:s3_reference_data_source_update,
|
3084
3157
|
:reference_schema_update)
|
3158
|
+
SENSITIVE = []
|
3085
3159
|
include Aws::Structure
|
3086
3160
|
end
|
3087
3161
|
|
@@ -3094,6 +3168,7 @@ module Aws::KinesisAnalytics
|
|
3094
3168
|
#
|
3095
3169
|
class ResourceInUseException < Struct.new(
|
3096
3170
|
:message)
|
3171
|
+
SENSITIVE = []
|
3097
3172
|
include Aws::Structure
|
3098
3173
|
end
|
3099
3174
|
|
@@ -3106,6 +3181,7 @@ module Aws::KinesisAnalytics
|
|
3106
3181
|
#
|
3107
3182
|
class ResourceNotFoundException < Struct.new(
|
3108
3183
|
:message)
|
3184
|
+
SENSITIVE = []
|
3109
3185
|
include Aws::Structure
|
3110
3186
|
end
|
3111
3187
|
|
@@ -3125,6 +3201,7 @@ module Aws::KinesisAnalytics
|
|
3125
3201
|
#
|
3126
3202
|
class ResourceProvisionedThroughputExceededException < Struct.new(
|
3127
3203
|
:message)
|
3204
|
+
SENSITIVE = []
|
3128
3205
|
include Aws::Structure
|
3129
3206
|
end
|
3130
3207
|
|
@@ -3160,6 +3237,7 @@ module Aws::KinesisAnalytics
|
|
3160
3237
|
:role_arn,
|
3161
3238
|
:bucket_arn,
|
3162
3239
|
:file_key)
|
3240
|
+
SENSITIVE = []
|
3163
3241
|
include Aws::Structure
|
3164
3242
|
end
|
3165
3243
|
|
@@ -3205,6 +3283,7 @@ module Aws::KinesisAnalytics
|
|
3205
3283
|
:bucket_arn,
|
3206
3284
|
:file_key,
|
3207
3285
|
:reference_role_arn)
|
3286
|
+
SENSITIVE = []
|
3208
3287
|
include Aws::Structure
|
3209
3288
|
end
|
3210
3289
|
|
@@ -3231,6 +3310,7 @@ module Aws::KinesisAnalytics
|
|
3231
3310
|
:bucket_arn,
|
3232
3311
|
:file_key,
|
3233
3312
|
:reference_role_arn)
|
3313
|
+
SENSITIVE = []
|
3234
3314
|
include Aws::Structure
|
3235
3315
|
end
|
3236
3316
|
|
@@ -3266,6 +3346,7 @@ module Aws::KinesisAnalytics
|
|
3266
3346
|
:bucket_arn_update,
|
3267
3347
|
:file_key_update,
|
3268
3348
|
:reference_role_arn_update)
|
3349
|
+
SENSITIVE = []
|
3269
3350
|
include Aws::Structure
|
3270
3351
|
end
|
3271
3352
|
|
@@ -3278,6 +3359,7 @@ module Aws::KinesisAnalytics
|
|
3278
3359
|
#
|
3279
3360
|
class ServiceUnavailableException < Struct.new(
|
3280
3361
|
:message)
|
3362
|
+
SENSITIVE = []
|
3281
3363
|
include Aws::Structure
|
3282
3364
|
end
|
3283
3365
|
|
@@ -3330,6 +3412,7 @@ module Aws::KinesisAnalytics
|
|
3330
3412
|
:record_format,
|
3331
3413
|
:record_encoding,
|
3332
3414
|
:record_columns)
|
3415
|
+
SENSITIVE = []
|
3333
3416
|
include Aws::Structure
|
3334
3417
|
end
|
3335
3418
|
|
@@ -3364,6 +3447,7 @@ module Aws::KinesisAnalytics
|
|
3364
3447
|
class StartApplicationRequest < Struct.new(
|
3365
3448
|
:application_name,
|
3366
3449
|
:input_configurations)
|
3450
|
+
SENSITIVE = []
|
3367
3451
|
include Aws::Structure
|
3368
3452
|
end
|
3369
3453
|
|
@@ -3386,6 +3470,7 @@ module Aws::KinesisAnalytics
|
|
3386
3470
|
#
|
3387
3471
|
class StopApplicationRequest < Struct.new(
|
3388
3472
|
:application_name)
|
3473
|
+
SENSITIVE = []
|
3389
3474
|
include Aws::Structure
|
3390
3475
|
end
|
3391
3476
|
|
@@ -3425,6 +3510,7 @@ module Aws::KinesisAnalytics
|
|
3425
3510
|
class Tag < Struct.new(
|
3426
3511
|
:key,
|
3427
3512
|
:value)
|
3513
|
+
SENSITIVE = []
|
3428
3514
|
include Aws::Structure
|
3429
3515
|
end
|
3430
3516
|
|
@@ -3454,6 +3540,7 @@ module Aws::KinesisAnalytics
|
|
3454
3540
|
class TagResourceRequest < Struct.new(
|
3455
3541
|
:resource_arn,
|
3456
3542
|
:tags)
|
3543
|
+
SENSITIVE = []
|
3457
3544
|
include Aws::Structure
|
3458
3545
|
end
|
3459
3546
|
|
@@ -3473,6 +3560,7 @@ module Aws::KinesisAnalytics
|
|
3473
3560
|
#
|
3474
3561
|
class TooManyTagsException < Struct.new(
|
3475
3562
|
:message)
|
3563
|
+
SENSITIVE = []
|
3476
3564
|
include Aws::Structure
|
3477
3565
|
end
|
3478
3566
|
|
@@ -3494,6 +3582,7 @@ module Aws::KinesisAnalytics
|
|
3494
3582
|
:message,
|
3495
3583
|
:raw_input_records,
|
3496
3584
|
:processed_input_records)
|
3585
|
+
SENSITIVE = []
|
3497
3586
|
include Aws::Structure
|
3498
3587
|
end
|
3499
3588
|
|
@@ -3507,6 +3596,7 @@ module Aws::KinesisAnalytics
|
|
3507
3596
|
#
|
3508
3597
|
class UnsupportedOperationException < Struct.new(
|
3509
3598
|
:message)
|
3599
|
+
SENSITIVE = []
|
3510
3600
|
include Aws::Structure
|
3511
3601
|
end
|
3512
3602
|
|
@@ -3532,6 +3622,7 @@ module Aws::KinesisAnalytics
|
|
3532
3622
|
class UntagResourceRequest < Struct.new(
|
3533
3623
|
:resource_arn,
|
3534
3624
|
:tag_keys)
|
3625
|
+
SENSITIVE = []
|
3535
3626
|
include Aws::Structure
|
3536
3627
|
end
|
3537
3628
|
|
@@ -3679,6 +3770,7 @@ module Aws::KinesisAnalytics
|
|
3679
3770
|
:application_name,
|
3680
3771
|
:current_application_version_id,
|
3681
3772
|
:application_update)
|
3773
|
+
SENSITIVE = []
|
3682
3774
|
include Aws::Structure
|
3683
3775
|
end
|
3684
3776
|
|
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.
|
4
|
+
version: 1.27.0
|
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: 2020-
|
11
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Kinesis Analytics
|