aws-sdk-kinesisanalytics 1.21.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-kinesisanalytics.rb +9 -4
- data/lib/aws-sdk-kinesisanalytics/client.rb +72 -14
- 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 +36 -12
- data/lib/aws-sdk-kinesisanalytics/resource.rb +3 -0
- 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: de748a7df76625de02b4393818ddadef58f33e2a5fe8314f10da358aedae18b0
|
4
|
+
data.tar.gz: 647907eee7e90b394386da4cc93208554ef31e0af6e6986aac11451685dafa8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5743bce45388c5f6e3bfb0f627e86cd3a0f991057a24c4b08675042cc5b58aaf7ddfb1d3445c7009be5aa4a2ba597bb2aefde2365980c760a7a7d4d624ed9aee
|
7
|
+
data.tar.gz: f20d939b3f1fe2fb5fabb3953edeb97f17e5251fdcd44bc7f68cb8e6621c5b2c5d6058f3586a348041608f411ef3ac569a5aac2702f33a7aac53882fcacc43a7
|
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-kinesisanalytics/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# kinesis_analytics = Aws::KinesisAnalytics::Client.new
|
30
|
+
# resp = kinesis_analytics.add_application_cloud_watch_logging_option(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from Amazon Kinesis Analytics
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from Amazon Kinesis Analytics are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::KinesisAnalytics::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all Amazon Kinesis Analytics API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-kinesisanalytics/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::KinesisAnalytics
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.26.0'
|
46
51
|
|
47
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,12 +26,25 @@ 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
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:kinesisanalytics)
|
31
34
|
|
32
35
|
module Aws::KinesisAnalytics
|
36
|
+
# An API client for KinesisAnalytics. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::KinesisAnalytics::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::KinesisAnalytics
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::KinesisAnalytics
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::KinesisAnalytics
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::KinesisAnalytics
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::KinesisAnalytics
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::KinesisAnalytics
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::KinesisAnalytics
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::KinesisAnalytics
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -219,16 +278,15 @@ module Aws::KinesisAnalytics
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::KinesisAnalytics
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1857,7 +1915,7 @@ module Aws::KinesisAnalytics
|
|
1857
1915
|
params: params,
|
1858
1916
|
config: config)
|
1859
1917
|
context[:gem_name] = 'aws-sdk-kinesisanalytics'
|
1860
|
-
context[:gem_version] = '1.
|
1918
|
+
context[:gem_version] = '1.26.0'
|
1861
1919
|
Seahorse::Client::Request.new(handlers, context)
|
1862
1920
|
end
|
1863
1921
|
|
@@ -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,6 +8,40 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::KinesisAnalytics
|
11
|
+
|
12
|
+
# When KinesisAnalytics returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::KinesisAnalytics::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all KinesisAnalytics errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::KinesisAnalytics::Errors::ServiceError
|
20
|
+
# # rescues all KinesisAnalytics API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {CodeValidationException}
|
31
|
+
# * {ConcurrentModificationException}
|
32
|
+
# * {InvalidApplicationConfigurationException}
|
33
|
+
# * {InvalidArgumentException}
|
34
|
+
# * {LimitExceededException}
|
35
|
+
# * {ResourceInUseException}
|
36
|
+
# * {ResourceNotFoundException}
|
37
|
+
# * {ResourceProvisionedThroughputExceededException}
|
38
|
+
# * {ServiceUnavailableException}
|
39
|
+
# * {TooManyTagsException}
|
40
|
+
# * {UnableToDetectSchemaException}
|
41
|
+
# * {UnsupportedOperationException}
|
42
|
+
#
|
43
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
44
|
+
# if they are not defined above.
|
9
45
|
module Errors
|
10
46
|
|
11
47
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +59,6 @@ module Aws::KinesisAnalytics
|
|
23
59
|
def message
|
24
60
|
@message || @data[:message]
|
25
61
|
end
|
26
|
-
|
27
62
|
end
|
28
63
|
|
29
64
|
class ConcurrentModificationException < ServiceError
|
@@ -39,7 +74,6 @@ module Aws::KinesisAnalytics
|
|
39
74
|
def message
|
40
75
|
@message || @data[:message]
|
41
76
|
end
|
42
|
-
|
43
77
|
end
|
44
78
|
|
45
79
|
class InvalidApplicationConfigurationException < ServiceError
|
@@ -55,7 +89,6 @@ module Aws::KinesisAnalytics
|
|
55
89
|
def message
|
56
90
|
@message || @data[:message]
|
57
91
|
end
|
58
|
-
|
59
92
|
end
|
60
93
|
|
61
94
|
class InvalidArgumentException < ServiceError
|
@@ -71,7 +104,6 @@ module Aws::KinesisAnalytics
|
|
71
104
|
def message
|
72
105
|
@message || @data[:message]
|
73
106
|
end
|
74
|
-
|
75
107
|
end
|
76
108
|
|
77
109
|
class LimitExceededException < ServiceError
|
@@ -87,7 +119,6 @@ module Aws::KinesisAnalytics
|
|
87
119
|
def message
|
88
120
|
@message || @data[:message]
|
89
121
|
end
|
90
|
-
|
91
122
|
end
|
92
123
|
|
93
124
|
class ResourceInUseException < ServiceError
|
@@ -103,7 +134,6 @@ module Aws::KinesisAnalytics
|
|
103
134
|
def message
|
104
135
|
@message || @data[:message]
|
105
136
|
end
|
106
|
-
|
107
137
|
end
|
108
138
|
|
109
139
|
class ResourceNotFoundException < ServiceError
|
@@ -119,7 +149,6 @@ module Aws::KinesisAnalytics
|
|
119
149
|
def message
|
120
150
|
@message || @data[:message]
|
121
151
|
end
|
122
|
-
|
123
152
|
end
|
124
153
|
|
125
154
|
class ResourceProvisionedThroughputExceededException < ServiceError
|
@@ -135,7 +164,6 @@ module Aws::KinesisAnalytics
|
|
135
164
|
def message
|
136
165
|
@message || @data[:message]
|
137
166
|
end
|
138
|
-
|
139
167
|
end
|
140
168
|
|
141
169
|
class ServiceUnavailableException < ServiceError
|
@@ -151,7 +179,6 @@ module Aws::KinesisAnalytics
|
|
151
179
|
def message
|
152
180
|
@message || @data[:message]
|
153
181
|
end
|
154
|
-
|
155
182
|
end
|
156
183
|
|
157
184
|
class TooManyTagsException < ServiceError
|
@@ -167,7 +194,6 @@ module Aws::KinesisAnalytics
|
|
167
194
|
def message
|
168
195
|
@message || @data[:message]
|
169
196
|
end
|
170
|
-
|
171
197
|
end
|
172
198
|
|
173
199
|
class UnableToDetectSchemaException < ServiceError
|
@@ -193,7 +219,6 @@ module Aws::KinesisAnalytics
|
|
193
219
|
def processed_input_records
|
194
220
|
@data[:processed_input_records]
|
195
221
|
end
|
196
|
-
|
197
222
|
end
|
198
223
|
|
199
224
|
class UnsupportedOperationException < ServiceError
|
@@ -209,7 +234,6 @@ module Aws::KinesisAnalytics
|
|
209
234
|
def message
|
210
235
|
@message || @data[:message]
|
211
236
|
end
|
212
|
-
|
213
237
|
end
|
214
238
|
|
215
239
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::KinesisAnalytics
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
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.26.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:
|
11
|
+
date: 2020-06-23 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
|