aws-sdk-kinesisanalyticsv2 1.13.0 → 1.18.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-kinesisanalyticsv2.rb +9 -4
- data/lib/aws-sdk-kinesisanalyticsv2/client.rb +72 -14
- data/lib/aws-sdk-kinesisanalyticsv2/client_api.rb +2 -0
- data/lib/aws-sdk-kinesisanalyticsv2/errors.rb +37 -13
- data/lib/aws-sdk-kinesisanalyticsv2/resource.rb +3 -0
- data/lib/aws-sdk-kinesisanalyticsv2/types.rb +155 -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: 1cd5d3fc42aac7ee76cfea946ae87ea6208959264e595a73d9ef5fa051c4931a
|
4
|
+
data.tar.gz: ba4e99212dea01eee1eebdf0f12bfff282c620f874323af92ad758966f5d97e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 721e7970698edba12ab9cb5a32923e10f2c3331751d0727020a1257a5b3aabed26ff8dfecd0e6cc2143d19b87d56d3ab385790266af92b6e56f8b69eef93e172
|
7
|
+
data.tar.gz: 9a1bea80735a46cd020493ea8560760deeaf2e4059fbe882a0f817e9165e945c06c2bbfed8c1159658d0033854d9ec14ebd6284c03e433e6e9a81e611b90fc18
|
@@ -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-kinesisanalyticsv2/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# kinesis_analytics_v2 = Aws::KinesisAnalyticsV2::Client.new
|
30
|
+
# resp = kinesis_analytics_v2.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::KinesisAnalyticsV2::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-kinesisanalyticsv2/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::KinesisAnalyticsV2
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.18.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(:kinesisanalyticsv2)
|
31
34
|
|
32
35
|
module Aws::KinesisAnalyticsV2
|
36
|
+
# An API client for KinesisAnalyticsV2. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::KinesisAnalyticsV2::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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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::KinesisAnalyticsV2
|
|
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`.
|
@@ -2204,7 +2262,7 @@ module Aws::KinesisAnalyticsV2
|
|
2204
2262
|
params: params,
|
2205
2263
|
config: config)
|
2206
2264
|
context[:gem_name] = 'aws-sdk-kinesisanalyticsv2'
|
2207
|
-
context[:gem_version] = '1.
|
2265
|
+
context[:gem_version] = '1.18.0'
|
2208
2266
|
Seahorse::Client::Request.new(handlers, context)
|
2209
2267
|
end
|
2210
2268
|
|
@@ -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,41 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::KinesisAnalyticsV2
|
11
|
+
|
12
|
+
# When KinesisAnalyticsV2 returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::KinesisAnalyticsV2::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all KinesisAnalyticsV2 errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::KinesisAnalyticsV2::Errors::ServiceError
|
20
|
+
# # rescues all KinesisAnalyticsV2 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
|
+
# * {InvalidRequestException}
|
35
|
+
# * {LimitExceededException}
|
36
|
+
# * {ResourceInUseException}
|
37
|
+
# * {ResourceNotFoundException}
|
38
|
+
# * {ResourceProvisionedThroughputExceededException}
|
39
|
+
# * {ServiceUnavailableException}
|
40
|
+
# * {TooManyTagsException}
|
41
|
+
# * {UnableToDetectSchemaException}
|
42
|
+
# * {UnsupportedOperationException}
|
43
|
+
#
|
44
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
45
|
+
# if they are not defined above.
|
9
46
|
module Errors
|
10
47
|
|
11
48
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +60,6 @@ module Aws::KinesisAnalyticsV2
|
|
23
60
|
def message
|
24
61
|
@message || @data[:message]
|
25
62
|
end
|
26
|
-
|
27
63
|
end
|
28
64
|
|
29
65
|
class ConcurrentModificationException < ServiceError
|
@@ -39,7 +75,6 @@ module Aws::KinesisAnalyticsV2
|
|
39
75
|
def message
|
40
76
|
@message || @data[:message]
|
41
77
|
end
|
42
|
-
|
43
78
|
end
|
44
79
|
|
45
80
|
class InvalidApplicationConfigurationException < ServiceError
|
@@ -55,7 +90,6 @@ module Aws::KinesisAnalyticsV2
|
|
55
90
|
def message
|
56
91
|
@message || @data[:message]
|
57
92
|
end
|
58
|
-
|
59
93
|
end
|
60
94
|
|
61
95
|
class InvalidArgumentException < ServiceError
|
@@ -71,7 +105,6 @@ module Aws::KinesisAnalyticsV2
|
|
71
105
|
def message
|
72
106
|
@message || @data[:message]
|
73
107
|
end
|
74
|
-
|
75
108
|
end
|
76
109
|
|
77
110
|
class InvalidRequestException < ServiceError
|
@@ -87,7 +120,6 @@ module Aws::KinesisAnalyticsV2
|
|
87
120
|
def message
|
88
121
|
@message || @data[:message]
|
89
122
|
end
|
90
|
-
|
91
123
|
end
|
92
124
|
|
93
125
|
class LimitExceededException < ServiceError
|
@@ -103,7 +135,6 @@ module Aws::KinesisAnalyticsV2
|
|
103
135
|
def message
|
104
136
|
@message || @data[:message]
|
105
137
|
end
|
106
|
-
|
107
138
|
end
|
108
139
|
|
109
140
|
class ResourceInUseException < ServiceError
|
@@ -119,7 +150,6 @@ module Aws::KinesisAnalyticsV2
|
|
119
150
|
def message
|
120
151
|
@message || @data[:message]
|
121
152
|
end
|
122
|
-
|
123
153
|
end
|
124
154
|
|
125
155
|
class ResourceNotFoundException < ServiceError
|
@@ -135,7 +165,6 @@ module Aws::KinesisAnalyticsV2
|
|
135
165
|
def message
|
136
166
|
@message || @data[:message]
|
137
167
|
end
|
138
|
-
|
139
168
|
end
|
140
169
|
|
141
170
|
class ResourceProvisionedThroughputExceededException < ServiceError
|
@@ -151,7 +180,6 @@ module Aws::KinesisAnalyticsV2
|
|
151
180
|
def message
|
152
181
|
@message || @data[:message]
|
153
182
|
end
|
154
|
-
|
155
183
|
end
|
156
184
|
|
157
185
|
class ServiceUnavailableException < ServiceError
|
@@ -167,7 +195,6 @@ module Aws::KinesisAnalyticsV2
|
|
167
195
|
def message
|
168
196
|
@message || @data[:message]
|
169
197
|
end
|
170
|
-
|
171
198
|
end
|
172
199
|
|
173
200
|
class TooManyTagsException < ServiceError
|
@@ -183,7 +210,6 @@ module Aws::KinesisAnalyticsV2
|
|
183
210
|
def message
|
184
211
|
@message || @data[:message]
|
185
212
|
end
|
186
|
-
|
187
213
|
end
|
188
214
|
|
189
215
|
class UnableToDetectSchemaException < ServiceError
|
@@ -209,7 +235,6 @@ module Aws::KinesisAnalyticsV2
|
|
209
235
|
def processed_input_records
|
210
236
|
@data[:processed_input_records]
|
211
237
|
end
|
212
|
-
|
213
238
|
end
|
214
239
|
|
215
240
|
class UnsupportedOperationException < ServiceError
|
@@ -225,7 +250,6 @@ module Aws::KinesisAnalyticsV2
|
|
225
250
|
def message
|
226
251
|
@message || @data[:message]
|
227
252
|
end
|
228
|
-
|
229
253
|
end
|
230
254
|
|
231
255
|
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::KinesisAnalyticsV2
|
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:
|
@@ -39,6 +41,7 @@ module Aws::KinesisAnalyticsV2
|
|
39
41
|
:application_name,
|
40
42
|
:current_application_version_id,
|
41
43
|
:cloud_watch_logging_option)
|
44
|
+
SENSITIVE = []
|
42
45
|
include Aws::Structure
|
43
46
|
end
|
44
47
|
|
@@ -63,6 +66,7 @@ module Aws::KinesisAnalyticsV2
|
|
63
66
|
:application_arn,
|
64
67
|
:application_version_id,
|
65
68
|
:cloud_watch_logging_option_descriptions)
|
69
|
+
SENSITIVE = []
|
66
70
|
include Aws::Structure
|
67
71
|
end
|
68
72
|
|
@@ -110,6 +114,7 @@ module Aws::KinesisAnalyticsV2
|
|
110
114
|
:current_application_version_id,
|
111
115
|
:input_id,
|
112
116
|
:input_processing_configuration)
|
117
|
+
SENSITIVE = []
|
113
118
|
include Aws::Structure
|
114
119
|
end
|
115
120
|
|
@@ -139,6 +144,7 @@ module Aws::KinesisAnalyticsV2
|
|
139
144
|
:application_version_id,
|
140
145
|
:input_id,
|
141
146
|
:input_processing_configuration_description)
|
147
|
+
SENSITIVE = []
|
142
148
|
include Aws::Structure
|
143
149
|
end
|
144
150
|
|
@@ -210,6 +216,7 @@ module Aws::KinesisAnalyticsV2
|
|
210
216
|
:application_name,
|
211
217
|
:current_application_version_id,
|
212
218
|
:input)
|
219
|
+
SENSITIVE = []
|
213
220
|
include Aws::Structure
|
214
221
|
end
|
215
222
|
|
@@ -231,6 +238,7 @@ module Aws::KinesisAnalyticsV2
|
|
231
238
|
:application_arn,
|
232
239
|
:application_version_id,
|
233
240
|
:input_descriptions)
|
241
|
+
SENSITIVE = []
|
234
242
|
include Aws::Structure
|
235
243
|
end
|
236
244
|
|
@@ -283,6 +291,7 @@ module Aws::KinesisAnalyticsV2
|
|
283
291
|
:application_name,
|
284
292
|
:current_application_version_id,
|
285
293
|
:output)
|
294
|
+
SENSITIVE = []
|
286
295
|
include Aws::Structure
|
287
296
|
end
|
288
297
|
|
@@ -310,6 +319,7 @@ module Aws::KinesisAnalyticsV2
|
|
310
319
|
:application_arn,
|
311
320
|
:application_version_id,
|
312
321
|
:output_descriptions)
|
322
|
+
SENSITIVE = []
|
313
323
|
include Aws::Structure
|
314
324
|
end
|
315
325
|
|
@@ -376,6 +386,7 @@ module Aws::KinesisAnalyticsV2
|
|
376
386
|
:application_name,
|
377
387
|
:current_application_version_id,
|
378
388
|
:reference_data_source)
|
389
|
+
SENSITIVE = []
|
379
390
|
include Aws::Structure
|
380
391
|
end
|
381
392
|
|
@@ -398,6 +409,7 @@ module Aws::KinesisAnalyticsV2
|
|
398
409
|
:application_arn,
|
399
410
|
:application_version_id,
|
400
411
|
:reference_data_source_descriptions)
|
412
|
+
SENSITIVE = []
|
401
413
|
include Aws::Structure
|
402
414
|
end
|
403
415
|
|
@@ -435,6 +447,7 @@ module Aws::KinesisAnalyticsV2
|
|
435
447
|
:application_name,
|
436
448
|
:current_application_version_id,
|
437
449
|
:vpc_configuration)
|
450
|
+
SENSITIVE = []
|
438
451
|
include Aws::Structure
|
439
452
|
end
|
440
453
|
|
@@ -458,6 +471,7 @@ module Aws::KinesisAnalyticsV2
|
|
458
471
|
:application_arn,
|
459
472
|
:application_version_id,
|
460
473
|
:vpc_configuration_description)
|
474
|
+
SENSITIVE = []
|
461
475
|
include Aws::Structure
|
462
476
|
end
|
463
477
|
|
@@ -493,6 +507,7 @@ module Aws::KinesisAnalyticsV2
|
|
493
507
|
class ApplicationCodeConfiguration < Struct.new(
|
494
508
|
:code_content,
|
495
509
|
:code_content_type)
|
510
|
+
SENSITIVE = []
|
496
511
|
include Aws::Structure
|
497
512
|
end
|
498
513
|
|
@@ -513,6 +528,7 @@ module Aws::KinesisAnalyticsV2
|
|
513
528
|
class ApplicationCodeConfigurationDescription < Struct.new(
|
514
529
|
:code_content_type,
|
515
530
|
:code_content_description)
|
531
|
+
SENSITIVE = []
|
516
532
|
include Aws::Structure
|
517
533
|
end
|
518
534
|
|
@@ -548,6 +564,7 @@ module Aws::KinesisAnalyticsV2
|
|
548
564
|
class ApplicationCodeConfigurationUpdate < Struct.new(
|
549
565
|
:code_content_type_update,
|
550
566
|
:code_content_update)
|
567
|
+
SENSITIVE = []
|
551
568
|
include Aws::Structure
|
552
569
|
end
|
553
570
|
|
@@ -740,6 +757,7 @@ module Aws::KinesisAnalyticsV2
|
|
740
757
|
:application_code_configuration,
|
741
758
|
:application_snapshot_configuration,
|
742
759
|
:vpc_configurations)
|
760
|
+
SENSITIVE = []
|
743
761
|
include Aws::Structure
|
744
762
|
end
|
745
763
|
|
@@ -790,6 +808,7 @@ module Aws::KinesisAnalyticsV2
|
|
790
808
|
:environment_property_descriptions,
|
791
809
|
:application_snapshot_configuration_description,
|
792
810
|
:vpc_configuration_descriptions)
|
811
|
+
SENSITIVE = []
|
793
812
|
include Aws::Structure
|
794
813
|
end
|
795
814
|
|
@@ -985,6 +1004,7 @@ module Aws::KinesisAnalyticsV2
|
|
985
1004
|
:environment_property_updates,
|
986
1005
|
:application_snapshot_configuration_update,
|
987
1006
|
:vpc_configuration_updates)
|
1007
|
+
SENSITIVE = []
|
988
1008
|
include Aws::Structure
|
989
1009
|
end
|
990
1010
|
|
@@ -1055,6 +1075,7 @@ module Aws::KinesisAnalyticsV2
|
|
1055
1075
|
:last_update_timestamp,
|
1056
1076
|
:application_configuration_description,
|
1057
1077
|
:cloud_watch_logging_option_descriptions)
|
1078
|
+
SENSITIVE = []
|
1058
1079
|
include Aws::Structure
|
1059
1080
|
end
|
1060
1081
|
|
@@ -1085,6 +1106,7 @@ module Aws::KinesisAnalyticsV2
|
|
1085
1106
|
class ApplicationRestoreConfiguration < Struct.new(
|
1086
1107
|
:application_restore_type,
|
1087
1108
|
:snapshot_name)
|
1109
|
+
SENSITIVE = []
|
1088
1110
|
include Aws::Structure
|
1089
1111
|
end
|
1090
1112
|
|
@@ -1107,6 +1129,7 @@ module Aws::KinesisAnalyticsV2
|
|
1107
1129
|
#
|
1108
1130
|
class ApplicationSnapshotConfiguration < Struct.new(
|
1109
1131
|
:snapshots_enabled)
|
1132
|
+
SENSITIVE = []
|
1110
1133
|
include Aws::Structure
|
1111
1134
|
end
|
1112
1135
|
|
@@ -1122,6 +1145,7 @@ module Aws::KinesisAnalyticsV2
|
|
1122
1145
|
#
|
1123
1146
|
class ApplicationSnapshotConfigurationDescription < Struct.new(
|
1124
1147
|
:snapshots_enabled)
|
1148
|
+
SENSITIVE = []
|
1125
1149
|
include Aws::Structure
|
1126
1150
|
end
|
1127
1151
|
|
@@ -1144,6 +1168,7 @@ module Aws::KinesisAnalyticsV2
|
|
1144
1168
|
#
|
1145
1169
|
class ApplicationSnapshotConfigurationUpdate < Struct.new(
|
1146
1170
|
:snapshots_enabled_update)
|
1171
|
+
SENSITIVE = []
|
1147
1172
|
include Aws::Structure
|
1148
1173
|
end
|
1149
1174
|
|
@@ -1179,6 +1204,7 @@ module Aws::KinesisAnalyticsV2
|
|
1179
1204
|
:application_status,
|
1180
1205
|
:application_version_id,
|
1181
1206
|
:runtime_environment)
|
1207
|
+
SENSITIVE = []
|
1182
1208
|
include Aws::Structure
|
1183
1209
|
end
|
1184
1210
|
|
@@ -1215,6 +1241,7 @@ module Aws::KinesisAnalyticsV2
|
|
1215
1241
|
class CSVMappingParameters < Struct.new(
|
1216
1242
|
:record_row_delimiter,
|
1217
1243
|
:record_column_delimiter)
|
1244
|
+
SENSITIVE = []
|
1218
1245
|
include Aws::Structure
|
1219
1246
|
end
|
1220
1247
|
|
@@ -1308,6 +1335,7 @@ module Aws::KinesisAnalyticsV2
|
|
1308
1335
|
:checkpointing_enabled,
|
1309
1336
|
:checkpoint_interval,
|
1310
1337
|
:min_pause_between_checkpoints)
|
1338
|
+
SENSITIVE = []
|
1311
1339
|
include Aws::Structure
|
1312
1340
|
end
|
1313
1341
|
|
@@ -1373,6 +1401,7 @@ module Aws::KinesisAnalyticsV2
|
|
1373
1401
|
:checkpointing_enabled,
|
1374
1402
|
:checkpoint_interval,
|
1375
1403
|
:min_pause_between_checkpoints)
|
1404
|
+
SENSITIVE = []
|
1376
1405
|
include Aws::Structure
|
1377
1406
|
end
|
1378
1407
|
|
@@ -1451,6 +1480,7 @@ module Aws::KinesisAnalyticsV2
|
|
1451
1480
|
:checkpointing_enabled_update,
|
1452
1481
|
:checkpoint_interval_update,
|
1453
1482
|
:min_pause_between_checkpoints_update)
|
1483
|
+
SENSITIVE = []
|
1454
1484
|
include Aws::Structure
|
1455
1485
|
end
|
1456
1486
|
|
@@ -1472,6 +1502,7 @@ module Aws::KinesisAnalyticsV2
|
|
1472
1502
|
#
|
1473
1503
|
class CloudWatchLoggingOption < Struct.new(
|
1474
1504
|
:log_stream_arn)
|
1505
|
+
SENSITIVE = []
|
1475
1506
|
include Aws::Structure
|
1476
1507
|
end
|
1477
1508
|
|
@@ -1502,6 +1533,7 @@ module Aws::KinesisAnalyticsV2
|
|
1502
1533
|
:cloud_watch_logging_option_id,
|
1503
1534
|
:log_stream_arn,
|
1504
1535
|
:role_arn)
|
1536
|
+
SENSITIVE = []
|
1505
1537
|
include Aws::Structure
|
1506
1538
|
end
|
1507
1539
|
|
@@ -1529,6 +1561,7 @@ module Aws::KinesisAnalyticsV2
|
|
1529
1561
|
class CloudWatchLoggingOptionUpdate < Struct.new(
|
1530
1562
|
:cloud_watch_logging_option_id,
|
1531
1563
|
:log_stream_arn_update)
|
1564
|
+
SENSITIVE = []
|
1532
1565
|
include Aws::Structure
|
1533
1566
|
end
|
1534
1567
|
|
@@ -1570,6 +1603,7 @@ module Aws::KinesisAnalyticsV2
|
|
1570
1603
|
:text_content,
|
1571
1604
|
:zip_file_content,
|
1572
1605
|
:s3_content_location)
|
1606
|
+
SENSITIVE = []
|
1573
1607
|
include Aws::Structure
|
1574
1608
|
end
|
1575
1609
|
|
@@ -1601,6 +1635,7 @@ module Aws::KinesisAnalyticsV2
|
|
1601
1635
|
:code_md5,
|
1602
1636
|
:code_size,
|
1603
1637
|
:s3_application_code_location_description)
|
1638
|
+
SENSITIVE = []
|
1604
1639
|
include Aws::Structure
|
1605
1640
|
end
|
1606
1641
|
|
@@ -1638,6 +1673,7 @@ module Aws::KinesisAnalyticsV2
|
|
1638
1673
|
:text_content_update,
|
1639
1674
|
:zip_file_content_update,
|
1640
1675
|
:s3_content_location_update)
|
1676
|
+
SENSITIVE = []
|
1641
1677
|
include Aws::Structure
|
1642
1678
|
end
|
1643
1679
|
|
@@ -1651,6 +1687,7 @@ module Aws::KinesisAnalyticsV2
|
|
1651
1687
|
#
|
1652
1688
|
class CodeValidationException < Struct.new(
|
1653
1689
|
:message)
|
1690
|
+
SENSITIVE = []
|
1654
1691
|
include Aws::Structure
|
1655
1692
|
end
|
1656
1693
|
|
@@ -1665,6 +1702,7 @@ module Aws::KinesisAnalyticsV2
|
|
1665
1702
|
#
|
1666
1703
|
class ConcurrentModificationException < Struct.new(
|
1667
1704
|
:message)
|
1705
|
+
SENSITIVE = []
|
1668
1706
|
include Aws::Structure
|
1669
1707
|
end
|
1670
1708
|
|
@@ -1882,6 +1920,7 @@ module Aws::KinesisAnalyticsV2
|
|
1882
1920
|
:application_configuration,
|
1883
1921
|
:cloud_watch_logging_options,
|
1884
1922
|
:tags)
|
1923
|
+
SENSITIVE = []
|
1885
1924
|
include Aws::Structure
|
1886
1925
|
end
|
1887
1926
|
|
@@ -1895,6 +1934,7 @@ module Aws::KinesisAnalyticsV2
|
|
1895
1934
|
#
|
1896
1935
|
class CreateApplicationResponse < Struct.new(
|
1897
1936
|
:application_detail)
|
1937
|
+
SENSITIVE = []
|
1898
1938
|
include Aws::Structure
|
1899
1939
|
end
|
1900
1940
|
|
@@ -1919,6 +1959,7 @@ module Aws::KinesisAnalyticsV2
|
|
1919
1959
|
class CreateApplicationSnapshotRequest < Struct.new(
|
1920
1960
|
:application_name,
|
1921
1961
|
:snapshot_name)
|
1962
|
+
SENSITIVE = []
|
1922
1963
|
include Aws::Structure
|
1923
1964
|
end
|
1924
1965
|
|
@@ -1956,6 +1997,7 @@ module Aws::KinesisAnalyticsV2
|
|
1956
1997
|
:application_name,
|
1957
1998
|
:current_application_version_id,
|
1958
1999
|
:cloud_watch_logging_option_id)
|
2000
|
+
SENSITIVE = []
|
1959
2001
|
include Aws::Structure
|
1960
2002
|
end
|
1961
2003
|
|
@@ -1980,6 +2022,7 @@ module Aws::KinesisAnalyticsV2
|
|
1980
2022
|
:application_arn,
|
1981
2023
|
:application_version_id,
|
1982
2024
|
:cloud_watch_logging_option_descriptions)
|
2025
|
+
SENSITIVE = []
|
1983
2026
|
include Aws::Structure
|
1984
2027
|
end
|
1985
2028
|
|
@@ -2015,6 +2058,7 @@ module Aws::KinesisAnalyticsV2
|
|
2015
2058
|
:application_name,
|
2016
2059
|
:current_application_version_id,
|
2017
2060
|
:input_id)
|
2061
|
+
SENSITIVE = []
|
2018
2062
|
include Aws::Structure
|
2019
2063
|
end
|
2020
2064
|
|
@@ -2031,6 +2075,7 @@ module Aws::KinesisAnalyticsV2
|
|
2031
2075
|
class DeleteApplicationInputProcessingConfigurationResponse < Struct.new(
|
2032
2076
|
:application_arn,
|
2033
2077
|
:application_version_id)
|
2078
|
+
SENSITIVE = []
|
2034
2079
|
include Aws::Structure
|
2035
2080
|
end
|
2036
2081
|
|
@@ -2070,6 +2115,7 @@ module Aws::KinesisAnalyticsV2
|
|
2070
2115
|
:application_name,
|
2071
2116
|
:current_application_version_id,
|
2072
2117
|
:output_id)
|
2118
|
+
SENSITIVE = []
|
2073
2119
|
include Aws::Structure
|
2074
2120
|
end
|
2075
2121
|
|
@@ -2086,6 +2132,7 @@ module Aws::KinesisAnalyticsV2
|
|
2086
2132
|
class DeleteApplicationOutputResponse < Struct.new(
|
2087
2133
|
:application_arn,
|
2088
2134
|
:application_version_id)
|
2135
|
+
SENSITIVE = []
|
2089
2136
|
include Aws::Structure
|
2090
2137
|
end
|
2091
2138
|
|
@@ -2123,6 +2170,7 @@ module Aws::KinesisAnalyticsV2
|
|
2123
2170
|
:application_name,
|
2124
2171
|
:current_application_version_id,
|
2125
2172
|
:reference_id)
|
2173
|
+
SENSITIVE = []
|
2126
2174
|
include Aws::Structure
|
2127
2175
|
end
|
2128
2176
|
|
@@ -2139,6 +2187,7 @@ module Aws::KinesisAnalyticsV2
|
|
2139
2187
|
class DeleteApplicationReferenceDataSourceResponse < Struct.new(
|
2140
2188
|
:application_arn,
|
2141
2189
|
:application_version_id)
|
2190
|
+
SENSITIVE = []
|
2142
2191
|
include Aws::Structure
|
2143
2192
|
end
|
2144
2193
|
|
@@ -2163,6 +2212,7 @@ module Aws::KinesisAnalyticsV2
|
|
2163
2212
|
class DeleteApplicationRequest < Struct.new(
|
2164
2213
|
:application_name,
|
2165
2214
|
:create_timestamp)
|
2215
|
+
SENSITIVE = []
|
2166
2216
|
include Aws::Structure
|
2167
2217
|
end
|
2168
2218
|
|
@@ -2198,6 +2248,7 @@ module Aws::KinesisAnalyticsV2
|
|
2198
2248
|
:application_name,
|
2199
2249
|
:snapshot_name,
|
2200
2250
|
:snapshot_creation_timestamp)
|
2251
|
+
SENSITIVE = []
|
2201
2252
|
include Aws::Structure
|
2202
2253
|
end
|
2203
2254
|
|
@@ -2233,6 +2284,7 @@ module Aws::KinesisAnalyticsV2
|
|
2233
2284
|
:application_name,
|
2234
2285
|
:current_application_version_id,
|
2235
2286
|
:vpc_configuration_id)
|
2287
|
+
SENSITIVE = []
|
2236
2288
|
include Aws::Structure
|
2237
2289
|
end
|
2238
2290
|
|
@@ -2249,6 +2301,7 @@ module Aws::KinesisAnalyticsV2
|
|
2249
2301
|
class DeleteApplicationVpcConfigurationResponse < Struct.new(
|
2250
2302
|
:application_arn,
|
2251
2303
|
:application_version_id)
|
2304
|
+
SENSITIVE = []
|
2252
2305
|
include Aws::Structure
|
2253
2306
|
end
|
2254
2307
|
|
@@ -2274,6 +2327,7 @@ module Aws::KinesisAnalyticsV2
|
|
2274
2327
|
class DescribeApplicationRequest < Struct.new(
|
2275
2328
|
:application_name,
|
2276
2329
|
:include_additional_details)
|
2330
|
+
SENSITIVE = []
|
2277
2331
|
include Aws::Structure
|
2278
2332
|
end
|
2279
2333
|
|
@@ -2287,6 +2341,7 @@ module Aws::KinesisAnalyticsV2
|
|
2287
2341
|
#
|
2288
2342
|
class DescribeApplicationResponse < Struct.new(
|
2289
2343
|
:application_detail)
|
2344
|
+
SENSITIVE = []
|
2290
2345
|
include Aws::Structure
|
2291
2346
|
end
|
2292
2347
|
|
@@ -2312,6 +2367,7 @@ module Aws::KinesisAnalyticsV2
|
|
2312
2367
|
class DescribeApplicationSnapshotRequest < Struct.new(
|
2313
2368
|
:application_name,
|
2314
2369
|
:snapshot_name)
|
2370
|
+
SENSITIVE = []
|
2315
2371
|
include Aws::Structure
|
2316
2372
|
end
|
2317
2373
|
|
@@ -2323,6 +2379,7 @@ module Aws::KinesisAnalyticsV2
|
|
2323
2379
|
#
|
2324
2380
|
class DescribeApplicationSnapshotResponse < Struct.new(
|
2325
2381
|
:snapshot_details)
|
2382
|
+
SENSITIVE = []
|
2326
2383
|
include Aws::Structure
|
2327
2384
|
end
|
2328
2385
|
|
@@ -2344,6 +2401,7 @@ module Aws::KinesisAnalyticsV2
|
|
2344
2401
|
#
|
2345
2402
|
class DestinationSchema < Struct.new(
|
2346
2403
|
:record_format_type)
|
2404
|
+
SENSITIVE = []
|
2347
2405
|
include Aws::Structure
|
2348
2406
|
end
|
2349
2407
|
|
@@ -2398,6 +2456,7 @@ module Aws::KinesisAnalyticsV2
|
|
2398
2456
|
:input_starting_position_configuration,
|
2399
2457
|
:s3_configuration,
|
2400
2458
|
:input_processing_configuration)
|
2459
|
+
SENSITIVE = []
|
2401
2460
|
include Aws::Structure
|
2402
2461
|
end
|
2403
2462
|
|
@@ -2429,6 +2488,7 @@ module Aws::KinesisAnalyticsV2
|
|
2429
2488
|
:parsed_input_records,
|
2430
2489
|
:processed_input_records,
|
2431
2490
|
:raw_input_records)
|
2491
|
+
SENSITIVE = []
|
2432
2492
|
include Aws::Structure
|
2433
2493
|
end
|
2434
2494
|
|
@@ -2457,6 +2517,7 @@ module Aws::KinesisAnalyticsV2
|
|
2457
2517
|
#
|
2458
2518
|
class EnvironmentProperties < Struct.new(
|
2459
2519
|
:property_groups)
|
2520
|
+
SENSITIVE = []
|
2460
2521
|
include Aws::Structure
|
2461
2522
|
end
|
2462
2523
|
|
@@ -2471,6 +2532,7 @@ module Aws::KinesisAnalyticsV2
|
|
2471
2532
|
#
|
2472
2533
|
class EnvironmentPropertyDescriptions < Struct.new(
|
2473
2534
|
:property_group_descriptions)
|
2535
|
+
SENSITIVE = []
|
2474
2536
|
include Aws::Structure
|
2475
2537
|
end
|
2476
2538
|
|
@@ -2499,6 +2561,7 @@ module Aws::KinesisAnalyticsV2
|
|
2499
2561
|
#
|
2500
2562
|
class EnvironmentPropertyUpdates < Struct.new(
|
2501
2563
|
:property_groups)
|
2564
|
+
SENSITIVE = []
|
2502
2565
|
include Aws::Structure
|
2503
2566
|
end
|
2504
2567
|
|
@@ -2556,6 +2619,7 @@ module Aws::KinesisAnalyticsV2
|
|
2556
2619
|
:checkpoint_configuration,
|
2557
2620
|
:monitoring_configuration,
|
2558
2621
|
:parallelism_configuration)
|
2622
|
+
SENSITIVE = []
|
2559
2623
|
include Aws::Structure
|
2560
2624
|
end
|
2561
2625
|
|
@@ -2598,6 +2662,7 @@ module Aws::KinesisAnalyticsV2
|
|
2598
2662
|
:monitoring_configuration_description,
|
2599
2663
|
:parallelism_configuration_description,
|
2600
2664
|
:job_plan_description)
|
2665
|
+
SENSITIVE = []
|
2601
2666
|
include Aws::Structure
|
2602
2667
|
end
|
2603
2668
|
|
@@ -2649,6 +2714,7 @@ module Aws::KinesisAnalyticsV2
|
|
2649
2714
|
:checkpoint_configuration_update,
|
2650
2715
|
:monitoring_configuration_update,
|
2651
2716
|
:parallelism_configuration_update)
|
2717
|
+
SENSITIVE = []
|
2652
2718
|
include Aws::Structure
|
2653
2719
|
end
|
2654
2720
|
|
@@ -2681,6 +2747,7 @@ module Aws::KinesisAnalyticsV2
|
|
2681
2747
|
#
|
2682
2748
|
class FlinkRunConfiguration < Struct.new(
|
2683
2749
|
:allow_non_restored_state)
|
2750
|
+
SENSITIVE = []
|
2684
2751
|
include Aws::Structure
|
2685
2752
|
end
|
2686
2753
|
|
@@ -2779,6 +2846,7 @@ module Aws::KinesisAnalyticsV2
|
|
2779
2846
|
:kinesis_firehose_input,
|
2780
2847
|
:input_parallelism,
|
2781
2848
|
:input_schema)
|
2849
|
+
SENSITIVE = []
|
2782
2850
|
include Aws::Structure
|
2783
2851
|
end
|
2784
2852
|
|
@@ -2843,6 +2911,7 @@ module Aws::KinesisAnalyticsV2
|
|
2843
2911
|
:input_schema,
|
2844
2912
|
:input_parallelism,
|
2845
2913
|
:input_starting_position_configuration)
|
2914
|
+
SENSITIVE = []
|
2846
2915
|
include Aws::Structure
|
2847
2916
|
end
|
2848
2917
|
|
@@ -2873,6 +2942,7 @@ module Aws::KinesisAnalyticsV2
|
|
2873
2942
|
#
|
2874
2943
|
class InputLambdaProcessor < Struct.new(
|
2875
2944
|
:resource_arn)
|
2945
|
+
SENSITIVE = []
|
2876
2946
|
include Aws::Structure
|
2877
2947
|
end
|
2878
2948
|
|
@@ -2908,6 +2978,7 @@ module Aws::KinesisAnalyticsV2
|
|
2908
2978
|
class InputLambdaProcessorDescription < Struct.new(
|
2909
2979
|
:resource_arn,
|
2910
2980
|
:role_arn)
|
2981
|
+
SENSITIVE = []
|
2911
2982
|
include Aws::Structure
|
2912
2983
|
end
|
2913
2984
|
|
@@ -2938,6 +3009,7 @@ module Aws::KinesisAnalyticsV2
|
|
2938
3009
|
#
|
2939
3010
|
class InputLambdaProcessorUpdate < Struct.new(
|
2940
3011
|
:resource_arn_update)
|
3012
|
+
SENSITIVE = []
|
2941
3013
|
include Aws::Structure
|
2942
3014
|
end
|
2943
3015
|
|
@@ -2960,6 +3032,7 @@ module Aws::KinesisAnalyticsV2
|
|
2960
3032
|
#
|
2961
3033
|
class InputParallelism < Struct.new(
|
2962
3034
|
:count)
|
3035
|
+
SENSITIVE = []
|
2963
3036
|
include Aws::Structure
|
2964
3037
|
end
|
2965
3038
|
|
@@ -2982,6 +3055,7 @@ module Aws::KinesisAnalyticsV2
|
|
2982
3055
|
#
|
2983
3056
|
class InputParallelismUpdate < Struct.new(
|
2984
3057
|
:count_update)
|
3058
|
+
SENSITIVE = []
|
2985
3059
|
include Aws::Structure
|
2986
3060
|
end
|
2987
3061
|
|
@@ -3012,6 +3086,7 @@ module Aws::KinesisAnalyticsV2
|
|
3012
3086
|
#
|
3013
3087
|
class InputProcessingConfiguration < Struct.new(
|
3014
3088
|
:input_lambda_processor)
|
3089
|
+
SENSITIVE = []
|
3015
3090
|
include Aws::Structure
|
3016
3091
|
end
|
3017
3092
|
|
@@ -3032,6 +3107,7 @@ module Aws::KinesisAnalyticsV2
|
|
3032
3107
|
#
|
3033
3108
|
class InputProcessingConfigurationDescription < Struct.new(
|
3034
3109
|
:input_lambda_processor_description)
|
3110
|
+
SENSITIVE = []
|
3035
3111
|
include Aws::Structure
|
3036
3112
|
end
|
3037
3113
|
|
@@ -3055,6 +3131,7 @@ module Aws::KinesisAnalyticsV2
|
|
3055
3131
|
#
|
3056
3132
|
class InputProcessingConfigurationUpdate < Struct.new(
|
3057
3133
|
:input_lambda_processor_update)
|
3134
|
+
SENSITIVE = []
|
3058
3135
|
include Aws::Structure
|
3059
3136
|
end
|
3060
3137
|
|
@@ -3108,6 +3185,7 @@ module Aws::KinesisAnalyticsV2
|
|
3108
3185
|
:record_format_update,
|
3109
3186
|
:record_encoding_update,
|
3110
3187
|
:record_column_updates)
|
3188
|
+
SENSITIVE = []
|
3111
3189
|
include Aws::Structure
|
3112
3190
|
end
|
3113
3191
|
|
@@ -3141,6 +3219,7 @@ module Aws::KinesisAnalyticsV2
|
|
3141
3219
|
#
|
3142
3220
|
class InputStartingPositionConfiguration < Struct.new(
|
3143
3221
|
:input_starting_position)
|
3222
|
+
SENSITIVE = []
|
3144
3223
|
include Aws::Structure
|
3145
3224
|
end
|
3146
3225
|
|
@@ -3237,6 +3316,7 @@ module Aws::KinesisAnalyticsV2
|
|
3237
3316
|
:kinesis_firehose_input_update,
|
3238
3317
|
:input_schema_update,
|
3239
3318
|
:input_parallelism_update)
|
3319
|
+
SENSITIVE = []
|
3240
3320
|
include Aws::Structure
|
3241
3321
|
end
|
3242
3322
|
|
@@ -3249,6 +3329,7 @@ module Aws::KinesisAnalyticsV2
|
|
3249
3329
|
#
|
3250
3330
|
class InvalidApplicationConfigurationException < Struct.new(
|
3251
3331
|
:message)
|
3332
|
+
SENSITIVE = []
|
3252
3333
|
include Aws::Structure
|
3253
3334
|
end
|
3254
3335
|
|
@@ -3261,6 +3342,7 @@ module Aws::KinesisAnalyticsV2
|
|
3261
3342
|
#
|
3262
3343
|
class InvalidArgumentException < Struct.new(
|
3263
3344
|
:message)
|
3345
|
+
SENSITIVE = []
|
3264
3346
|
include Aws::Structure
|
3265
3347
|
end
|
3266
3348
|
|
@@ -3273,6 +3355,7 @@ module Aws::KinesisAnalyticsV2
|
|
3273
3355
|
#
|
3274
3356
|
class InvalidRequestException < Struct.new(
|
3275
3357
|
:message)
|
3358
|
+
SENSITIVE = []
|
3276
3359
|
include Aws::Structure
|
3277
3360
|
end
|
3278
3361
|
|
@@ -3295,6 +3378,7 @@ module Aws::KinesisAnalyticsV2
|
|
3295
3378
|
#
|
3296
3379
|
class JSONMappingParameters < Struct.new(
|
3297
3380
|
:record_row_path)
|
3381
|
+
SENSITIVE = []
|
3298
3382
|
include Aws::Structure
|
3299
3383
|
end
|
3300
3384
|
|
@@ -3317,6 +3401,7 @@ module Aws::KinesisAnalyticsV2
|
|
3317
3401
|
#
|
3318
3402
|
class KinesisFirehoseInput < Struct.new(
|
3319
3403
|
:resource_arn)
|
3404
|
+
SENSITIVE = []
|
3320
3405
|
include Aws::Structure
|
3321
3406
|
end
|
3322
3407
|
|
@@ -3344,6 +3429,7 @@ module Aws::KinesisAnalyticsV2
|
|
3344
3429
|
class KinesisFirehoseInputDescription < Struct.new(
|
3345
3430
|
:resource_arn,
|
3346
3431
|
:role_arn)
|
3432
|
+
SENSITIVE = []
|
3347
3433
|
include Aws::Structure
|
3348
3434
|
end
|
3349
3435
|
|
@@ -3366,6 +3452,7 @@ module Aws::KinesisAnalyticsV2
|
|
3366
3452
|
#
|
3367
3453
|
class KinesisFirehoseInputUpdate < Struct.new(
|
3368
3454
|
:resource_arn_update)
|
3455
|
+
SENSITIVE = []
|
3369
3456
|
include Aws::Structure
|
3370
3457
|
end
|
3371
3458
|
|
@@ -3389,6 +3476,7 @@ module Aws::KinesisAnalyticsV2
|
|
3389
3476
|
#
|
3390
3477
|
class KinesisFirehoseOutput < Struct.new(
|
3391
3478
|
:resource_arn)
|
3479
|
+
SENSITIVE = []
|
3392
3480
|
include Aws::Structure
|
3393
3481
|
end
|
3394
3482
|
|
@@ -3416,6 +3504,7 @@ module Aws::KinesisAnalyticsV2
|
|
3416
3504
|
class KinesisFirehoseOutputDescription < Struct.new(
|
3417
3505
|
:resource_arn,
|
3418
3506
|
:role_arn)
|
3507
|
+
SENSITIVE = []
|
3419
3508
|
include Aws::Structure
|
3420
3509
|
end
|
3421
3510
|
|
@@ -3439,6 +3528,7 @@ module Aws::KinesisAnalyticsV2
|
|
3439
3528
|
#
|
3440
3529
|
class KinesisFirehoseOutputUpdate < Struct.new(
|
3441
3530
|
:resource_arn_update)
|
3531
|
+
SENSITIVE = []
|
3442
3532
|
include Aws::Structure
|
3443
3533
|
end
|
3444
3534
|
|
@@ -3460,6 +3550,7 @@ module Aws::KinesisAnalyticsV2
|
|
3460
3550
|
#
|
3461
3551
|
class KinesisStreamsInput < Struct.new(
|
3462
3552
|
:resource_arn)
|
3553
|
+
SENSITIVE = []
|
3463
3554
|
include Aws::Structure
|
3464
3555
|
end
|
3465
3556
|
|
@@ -3487,6 +3578,7 @@ module Aws::KinesisAnalyticsV2
|
|
3487
3578
|
class KinesisStreamsInputDescription < Struct.new(
|
3488
3579
|
:resource_arn,
|
3489
3580
|
:role_arn)
|
3581
|
+
SENSITIVE = []
|
3490
3582
|
include Aws::Structure
|
3491
3583
|
end
|
3492
3584
|
|
@@ -3510,6 +3602,7 @@ module Aws::KinesisAnalyticsV2
|
|
3510
3602
|
#
|
3511
3603
|
class KinesisStreamsInputUpdate < Struct.new(
|
3512
3604
|
:resource_arn_update)
|
3605
|
+
SENSITIVE = []
|
3513
3606
|
include Aws::Structure
|
3514
3607
|
end
|
3515
3608
|
|
@@ -3532,6 +3625,7 @@ module Aws::KinesisAnalyticsV2
|
|
3532
3625
|
#
|
3533
3626
|
class KinesisStreamsOutput < Struct.new(
|
3534
3627
|
:resource_arn)
|
3628
|
+
SENSITIVE = []
|
3535
3629
|
include Aws::Structure
|
3536
3630
|
end
|
3537
3631
|
|
@@ -3559,6 +3653,7 @@ module Aws::KinesisAnalyticsV2
|
|
3559
3653
|
class KinesisStreamsOutputDescription < Struct.new(
|
3560
3654
|
:resource_arn,
|
3561
3655
|
:role_arn)
|
3656
|
+
SENSITIVE = []
|
3562
3657
|
include Aws::Structure
|
3563
3658
|
end
|
3564
3659
|
|
@@ -3583,6 +3678,7 @@ module Aws::KinesisAnalyticsV2
|
|
3583
3678
|
#
|
3584
3679
|
class KinesisStreamsOutputUpdate < Struct.new(
|
3585
3680
|
:resource_arn_update)
|
3681
|
+
SENSITIVE = []
|
3586
3682
|
include Aws::Structure
|
3587
3683
|
end
|
3588
3684
|
|
@@ -3614,6 +3710,7 @@ module Aws::KinesisAnalyticsV2
|
|
3614
3710
|
#
|
3615
3711
|
class LambdaOutput < Struct.new(
|
3616
3712
|
:resource_arn)
|
3713
|
+
SENSITIVE = []
|
3617
3714
|
include Aws::Structure
|
3618
3715
|
end
|
3619
3716
|
|
@@ -3641,6 +3738,7 @@ module Aws::KinesisAnalyticsV2
|
|
3641
3738
|
class LambdaOutputDescription < Struct.new(
|
3642
3739
|
:resource_arn,
|
3643
3740
|
:role_arn)
|
3741
|
+
SENSITIVE = []
|
3644
3742
|
include Aws::Structure
|
3645
3743
|
end
|
3646
3744
|
|
@@ -3672,6 +3770,7 @@ module Aws::KinesisAnalyticsV2
|
|
3672
3770
|
#
|
3673
3771
|
class LambdaOutputUpdate < Struct.new(
|
3674
3772
|
:resource_arn_update)
|
3773
|
+
SENSITIVE = []
|
3675
3774
|
include Aws::Structure
|
3676
3775
|
end
|
3677
3776
|
|
@@ -3684,6 +3783,7 @@ module Aws::KinesisAnalyticsV2
|
|
3684
3783
|
#
|
3685
3784
|
class LimitExceededException < Struct.new(
|
3686
3785
|
:message)
|
3786
|
+
SENSITIVE = []
|
3687
3787
|
include Aws::Structure
|
3688
3788
|
end
|
3689
3789
|
|
@@ -3717,6 +3817,7 @@ module Aws::KinesisAnalyticsV2
|
|
3717
3817
|
:application_name,
|
3718
3818
|
:limit,
|
3719
3819
|
:next_token)
|
3820
|
+
SENSITIVE = []
|
3720
3821
|
include Aws::Structure
|
3721
3822
|
end
|
3722
3823
|
|
@@ -3735,6 +3836,7 @@ module Aws::KinesisAnalyticsV2
|
|
3735
3836
|
class ListApplicationSnapshotsResponse < Struct.new(
|
3736
3837
|
:snapshot_summaries,
|
3737
3838
|
:next_token)
|
3839
|
+
SENSITIVE = []
|
3738
3840
|
include Aws::Structure
|
3739
3841
|
end
|
3740
3842
|
|
@@ -3766,6 +3868,7 @@ module Aws::KinesisAnalyticsV2
|
|
3766
3868
|
class ListApplicationsRequest < Struct.new(
|
3767
3869
|
:limit,
|
3768
3870
|
:next_token)
|
3871
|
+
SENSITIVE = []
|
3769
3872
|
include Aws::Structure
|
3770
3873
|
end
|
3771
3874
|
|
@@ -3790,6 +3893,7 @@ module Aws::KinesisAnalyticsV2
|
|
3790
3893
|
class ListApplicationsResponse < Struct.new(
|
3791
3894
|
:application_summaries,
|
3792
3895
|
:next_token)
|
3896
|
+
SENSITIVE = []
|
3793
3897
|
include Aws::Structure
|
3794
3898
|
end
|
3795
3899
|
|
@@ -3808,6 +3912,7 @@ module Aws::KinesisAnalyticsV2
|
|
3808
3912
|
#
|
3809
3913
|
class ListTagsForResourceRequest < Struct.new(
|
3810
3914
|
:resource_arn)
|
3915
|
+
SENSITIVE = []
|
3811
3916
|
include Aws::Structure
|
3812
3917
|
end
|
3813
3918
|
|
@@ -3819,6 +3924,7 @@ module Aws::KinesisAnalyticsV2
|
|
3819
3924
|
#
|
3820
3925
|
class ListTagsForResourceResponse < Struct.new(
|
3821
3926
|
:tags)
|
3927
|
+
SENSITIVE = []
|
3822
3928
|
include Aws::Structure
|
3823
3929
|
end
|
3824
3930
|
|
@@ -3856,6 +3962,7 @@ module Aws::KinesisAnalyticsV2
|
|
3856
3962
|
class MappingParameters < Struct.new(
|
3857
3963
|
:json_mapping_parameters,
|
3858
3964
|
:csv_mapping_parameters)
|
3965
|
+
SENSITIVE = []
|
3859
3966
|
include Aws::Structure
|
3860
3967
|
end
|
3861
3968
|
|
@@ -3897,6 +4004,7 @@ module Aws::KinesisAnalyticsV2
|
|
3897
4004
|
:configuration_type,
|
3898
4005
|
:metrics_level,
|
3899
4006
|
:log_level)
|
4007
|
+
SENSITIVE = []
|
3900
4008
|
include Aws::Structure
|
3901
4009
|
end
|
3902
4010
|
|
@@ -3922,6 +4030,7 @@ module Aws::KinesisAnalyticsV2
|
|
3922
4030
|
:configuration_type,
|
3923
4031
|
:metrics_level,
|
3924
4032
|
:log_level)
|
4033
|
+
SENSITIVE = []
|
3925
4034
|
include Aws::Structure
|
3926
4035
|
end
|
3927
4036
|
|
@@ -3960,6 +4069,7 @@ module Aws::KinesisAnalyticsV2
|
|
3960
4069
|
:configuration_type_update,
|
3961
4070
|
:metrics_level_update,
|
3962
4071
|
:log_level_update)
|
4072
|
+
SENSITIVE = []
|
3963
4073
|
include Aws::Structure
|
3964
4074
|
end
|
3965
4075
|
|
@@ -4018,6 +4128,7 @@ module Aws::KinesisAnalyticsV2
|
|
4018
4128
|
:kinesis_firehose_output,
|
4019
4129
|
:lambda_output,
|
4020
4130
|
:destination_schema)
|
4131
|
+
SENSITIVE = []
|
4021
4132
|
include Aws::Structure
|
4022
4133
|
end
|
4023
4134
|
|
@@ -4063,6 +4174,7 @@ module Aws::KinesisAnalyticsV2
|
|
4063
4174
|
:kinesis_firehose_output_description,
|
4064
4175
|
:lambda_output_description,
|
4065
4176
|
:destination_schema)
|
4177
|
+
SENSITIVE = []
|
4066
4178
|
include Aws::Structure
|
4067
4179
|
end
|
4068
4180
|
|
@@ -4127,6 +4239,7 @@ module Aws::KinesisAnalyticsV2
|
|
4127
4239
|
:kinesis_firehose_output_update,
|
4128
4240
|
:lambda_output_update,
|
4129
4241
|
:destination_schema_update)
|
4242
|
+
SENSITIVE = []
|
4130
4243
|
include Aws::Structure
|
4131
4244
|
end
|
4132
4245
|
|
@@ -4196,6 +4309,7 @@ module Aws::KinesisAnalyticsV2
|
|
4196
4309
|
:parallelism,
|
4197
4310
|
:parallelism_per_kpu,
|
4198
4311
|
:auto_scaling_enabled)
|
4312
|
+
SENSITIVE = []
|
4199
4313
|
include Aws::Structure
|
4200
4314
|
end
|
4201
4315
|
|
@@ -4253,6 +4367,7 @@ module Aws::KinesisAnalyticsV2
|
|
4253
4367
|
:parallelism_per_kpu,
|
4254
4368
|
:current_parallelism,
|
4255
4369
|
:auto_scaling_enabled)
|
4370
|
+
SENSITIVE = []
|
4256
4371
|
include Aws::Structure
|
4257
4372
|
end
|
4258
4373
|
|
@@ -4308,6 +4423,7 @@ module Aws::KinesisAnalyticsV2
|
|
4308
4423
|
:parallelism_update,
|
4309
4424
|
:parallelism_per_kpu_update,
|
4310
4425
|
:auto_scaling_enabled_update)
|
4426
|
+
SENSITIVE = []
|
4311
4427
|
include Aws::Structure
|
4312
4428
|
end
|
4313
4429
|
|
@@ -4339,6 +4455,7 @@ module Aws::KinesisAnalyticsV2
|
|
4339
4455
|
class PropertyGroup < Struct.new(
|
4340
4456
|
:property_group_id,
|
4341
4457
|
:property_map)
|
4458
|
+
SENSITIVE = []
|
4342
4459
|
include Aws::Structure
|
4343
4460
|
end
|
4344
4461
|
|
@@ -4378,6 +4495,7 @@ module Aws::KinesisAnalyticsV2
|
|
4378
4495
|
:name,
|
4379
4496
|
:mapping,
|
4380
4497
|
:sql_type)
|
4498
|
+
SENSITIVE = []
|
4381
4499
|
include Aws::Structure
|
4382
4500
|
end
|
4383
4501
|
|
@@ -4417,6 +4535,7 @@ module Aws::KinesisAnalyticsV2
|
|
4417
4535
|
class RecordFormat < Struct.new(
|
4418
4536
|
:record_format_type,
|
4419
4537
|
:mapping_parameters)
|
4538
|
+
SENSITIVE = []
|
4420
4539
|
include Aws::Structure
|
4421
4540
|
end
|
4422
4541
|
|
@@ -4482,6 +4601,7 @@ module Aws::KinesisAnalyticsV2
|
|
4482
4601
|
:table_name,
|
4483
4602
|
:s3_reference_data_source,
|
4484
4603
|
:reference_schema)
|
4604
|
+
SENSITIVE = []
|
4485
4605
|
include Aws::Structure
|
4486
4606
|
end
|
4487
4607
|
|
@@ -4518,6 +4638,7 @@ module Aws::KinesisAnalyticsV2
|
|
4518
4638
|
:table_name,
|
4519
4639
|
:s3_reference_data_source_description,
|
4520
4640
|
:reference_schema)
|
4641
|
+
SENSITIVE = []
|
4521
4642
|
include Aws::Structure
|
4522
4643
|
end
|
4523
4644
|
|
@@ -4590,6 +4711,7 @@ module Aws::KinesisAnalyticsV2
|
|
4590
4711
|
:table_name_update,
|
4591
4712
|
:s3_reference_data_source_update,
|
4592
4713
|
:reference_schema_update)
|
4714
|
+
SENSITIVE = []
|
4593
4715
|
include Aws::Structure
|
4594
4716
|
end
|
4595
4717
|
|
@@ -4602,6 +4724,7 @@ module Aws::KinesisAnalyticsV2
|
|
4602
4724
|
#
|
4603
4725
|
class ResourceInUseException < Struct.new(
|
4604
4726
|
:message)
|
4727
|
+
SENSITIVE = []
|
4605
4728
|
include Aws::Structure
|
4606
4729
|
end
|
4607
4730
|
|
@@ -4614,6 +4737,7 @@ module Aws::KinesisAnalyticsV2
|
|
4614
4737
|
#
|
4615
4738
|
class ResourceNotFoundException < Struct.new(
|
4616
4739
|
:message)
|
4740
|
+
SENSITIVE = []
|
4617
4741
|
include Aws::Structure
|
4618
4742
|
end
|
4619
4743
|
|
@@ -4633,6 +4757,7 @@ module Aws::KinesisAnalyticsV2
|
|
4633
4757
|
#
|
4634
4758
|
class ResourceProvisionedThroughputExceededException < Struct.new(
|
4635
4759
|
:message)
|
4760
|
+
SENSITIVE = []
|
4636
4761
|
include Aws::Structure
|
4637
4762
|
end
|
4638
4763
|
|
@@ -4680,6 +4805,7 @@ module Aws::KinesisAnalyticsV2
|
|
4680
4805
|
:flink_run_configuration,
|
4681
4806
|
:sql_run_configurations,
|
4682
4807
|
:application_restore_configuration)
|
4808
|
+
SENSITIVE = []
|
4683
4809
|
include Aws::Structure
|
4684
4810
|
end
|
4685
4811
|
|
@@ -4694,6 +4820,7 @@ module Aws::KinesisAnalyticsV2
|
|
4694
4820
|
#
|
4695
4821
|
class RunConfigurationDescription < Struct.new(
|
4696
4822
|
:application_restore_configuration_description)
|
4823
|
+
SENSITIVE = []
|
4697
4824
|
include Aws::Structure
|
4698
4825
|
end
|
4699
4826
|
|
@@ -4728,6 +4855,7 @@ module Aws::KinesisAnalyticsV2
|
|
4728
4855
|
class RunConfigurationUpdate < Struct.new(
|
4729
4856
|
:flink_run_configuration,
|
4730
4857
|
:application_restore_configuration)
|
4858
|
+
SENSITIVE = []
|
4731
4859
|
include Aws::Structure
|
4732
4860
|
end
|
4733
4861
|
|
@@ -4753,6 +4881,7 @@ module Aws::KinesisAnalyticsV2
|
|
4753
4881
|
:bucket_arn,
|
4754
4882
|
:file_key,
|
4755
4883
|
:object_version)
|
4884
|
+
SENSITIVE = []
|
4756
4885
|
include Aws::Structure
|
4757
4886
|
end
|
4758
4887
|
|
@@ -4782,6 +4911,7 @@ module Aws::KinesisAnalyticsV2
|
|
4782
4911
|
class S3Configuration < Struct.new(
|
4783
4912
|
:bucket_arn,
|
4784
4913
|
:file_key)
|
4914
|
+
SENSITIVE = []
|
4785
4915
|
include Aws::Structure
|
4786
4916
|
end
|
4787
4917
|
|
@@ -4819,6 +4949,7 @@ module Aws::KinesisAnalyticsV2
|
|
4819
4949
|
:bucket_arn,
|
4820
4950
|
:file_key,
|
4821
4951
|
:object_version)
|
4952
|
+
SENSITIVE = []
|
4822
4953
|
include Aws::Structure
|
4823
4954
|
end
|
4824
4955
|
|
@@ -4853,6 +4984,7 @@ module Aws::KinesisAnalyticsV2
|
|
4853
4984
|
:bucket_arn_update,
|
4854
4985
|
:file_key_update,
|
4855
4986
|
:object_version_update)
|
4987
|
+
SENSITIVE = []
|
4856
4988
|
include Aws::Structure
|
4857
4989
|
end
|
4858
4990
|
|
@@ -4884,6 +5016,7 @@ module Aws::KinesisAnalyticsV2
|
|
4884
5016
|
class S3ReferenceDataSource < Struct.new(
|
4885
5017
|
:bucket_arn,
|
4886
5018
|
:file_key)
|
5019
|
+
SENSITIVE = []
|
4887
5020
|
include Aws::Structure
|
4888
5021
|
end
|
4889
5022
|
|
@@ -4916,6 +5049,7 @@ module Aws::KinesisAnalyticsV2
|
|
4916
5049
|
:bucket_arn,
|
4917
5050
|
:file_key,
|
4918
5051
|
:reference_role_arn)
|
5052
|
+
SENSITIVE = []
|
4919
5053
|
include Aws::Structure
|
4920
5054
|
end
|
4921
5055
|
|
@@ -4944,6 +5078,7 @@ module Aws::KinesisAnalyticsV2
|
|
4944
5078
|
class S3ReferenceDataSourceUpdate < Struct.new(
|
4945
5079
|
:bucket_arn_update,
|
4946
5080
|
:file_key_update)
|
5081
|
+
SENSITIVE = []
|
4947
5082
|
include Aws::Structure
|
4948
5083
|
end
|
4949
5084
|
|
@@ -4956,6 +5091,7 @@ module Aws::KinesisAnalyticsV2
|
|
4956
5091
|
#
|
4957
5092
|
class ServiceUnavailableException < Struct.new(
|
4958
5093
|
:message)
|
5094
|
+
SENSITIVE = []
|
4959
5095
|
include Aws::Structure
|
4960
5096
|
end
|
4961
5097
|
|
@@ -4984,6 +5120,7 @@ module Aws::KinesisAnalyticsV2
|
|
4984
5120
|
:snapshot_status,
|
4985
5121
|
:application_version_id,
|
4986
5122
|
:snapshot_creation_timestamp)
|
5123
|
+
SENSITIVE = []
|
4987
5124
|
include Aws::Structure
|
4988
5125
|
end
|
4989
5126
|
|
@@ -5037,6 +5174,7 @@ module Aws::KinesisAnalyticsV2
|
|
5037
5174
|
:record_format,
|
5038
5175
|
:record_encoding,
|
5039
5176
|
:record_columns)
|
5177
|
+
SENSITIVE = []
|
5040
5178
|
include Aws::Structure
|
5041
5179
|
end
|
5042
5180
|
|
@@ -5159,6 +5297,7 @@ module Aws::KinesisAnalyticsV2
|
|
5159
5297
|
:inputs,
|
5160
5298
|
:outputs,
|
5161
5299
|
:reference_data_sources)
|
5300
|
+
SENSITIVE = []
|
5162
5301
|
include Aws::Structure
|
5163
5302
|
end
|
5164
5303
|
|
@@ -5186,6 +5325,7 @@ module Aws::KinesisAnalyticsV2
|
|
5186
5325
|
:input_descriptions,
|
5187
5326
|
:output_descriptions,
|
5188
5327
|
:reference_data_source_descriptions)
|
5328
|
+
SENSITIVE = []
|
5189
5329
|
include Aws::Structure
|
5190
5330
|
end
|
5191
5331
|
|
@@ -5312,6 +5452,7 @@ module Aws::KinesisAnalyticsV2
|
|
5312
5452
|
:input_updates,
|
5313
5453
|
:output_updates,
|
5314
5454
|
:reference_data_source_updates)
|
5455
|
+
SENSITIVE = []
|
5315
5456
|
include Aws::Structure
|
5316
5457
|
end
|
5317
5458
|
|
@@ -5343,6 +5484,7 @@ module Aws::KinesisAnalyticsV2
|
|
5343
5484
|
class SqlRunConfiguration < Struct.new(
|
5344
5485
|
:input_id,
|
5345
5486
|
:input_starting_position_configuration)
|
5487
|
+
SENSITIVE = []
|
5346
5488
|
include Aws::Structure
|
5347
5489
|
end
|
5348
5490
|
|
@@ -5384,6 +5526,7 @@ module Aws::KinesisAnalyticsV2
|
|
5384
5526
|
class StartApplicationRequest < Struct.new(
|
5385
5527
|
:application_name,
|
5386
5528
|
:run_configuration)
|
5529
|
+
SENSITIVE = []
|
5387
5530
|
include Aws::Structure
|
5388
5531
|
end
|
5389
5532
|
|
@@ -5406,6 +5549,7 @@ module Aws::KinesisAnalyticsV2
|
|
5406
5549
|
#
|
5407
5550
|
class StopApplicationRequest < Struct.new(
|
5408
5551
|
:application_name)
|
5552
|
+
SENSITIVE = []
|
5409
5553
|
include Aws::Structure
|
5410
5554
|
end
|
5411
5555
|
|
@@ -5445,6 +5589,7 @@ module Aws::KinesisAnalyticsV2
|
|
5445
5589
|
class Tag < Struct.new(
|
5446
5590
|
:key,
|
5447
5591
|
:value)
|
5592
|
+
SENSITIVE = []
|
5448
5593
|
include Aws::Structure
|
5449
5594
|
end
|
5450
5595
|
|
@@ -5474,6 +5619,7 @@ module Aws::KinesisAnalyticsV2
|
|
5474
5619
|
class TagResourceRequest < Struct.new(
|
5475
5620
|
:resource_arn,
|
5476
5621
|
:tags)
|
5622
|
+
SENSITIVE = []
|
5477
5623
|
include Aws::Structure
|
5478
5624
|
end
|
5479
5625
|
|
@@ -5493,6 +5639,7 @@ module Aws::KinesisAnalyticsV2
|
|
5493
5639
|
#
|
5494
5640
|
class TooManyTagsException < Struct.new(
|
5495
5641
|
:message)
|
5642
|
+
SENSITIVE = []
|
5496
5643
|
include Aws::Structure
|
5497
5644
|
end
|
5498
5645
|
|
@@ -5517,6 +5664,7 @@ module Aws::KinesisAnalyticsV2
|
|
5517
5664
|
:message,
|
5518
5665
|
:raw_input_records,
|
5519
5666
|
:processed_input_records)
|
5667
|
+
SENSITIVE = []
|
5520
5668
|
include Aws::Structure
|
5521
5669
|
end
|
5522
5670
|
|
@@ -5530,6 +5678,7 @@ module Aws::KinesisAnalyticsV2
|
|
5530
5678
|
#
|
5531
5679
|
class UnsupportedOperationException < Struct.new(
|
5532
5680
|
:message)
|
5681
|
+
SENSITIVE = []
|
5533
5682
|
include Aws::Structure
|
5534
5683
|
end
|
5535
5684
|
|
@@ -5555,6 +5704,7 @@ module Aws::KinesisAnalyticsV2
|
|
5555
5704
|
class UntagResourceRequest < Struct.new(
|
5556
5705
|
:resource_arn,
|
5557
5706
|
:tag_keys)
|
5707
|
+
SENSITIVE = []
|
5558
5708
|
include Aws::Structure
|
5559
5709
|
end
|
5560
5710
|
|
@@ -5770,6 +5920,7 @@ module Aws::KinesisAnalyticsV2
|
|
5770
5920
|
:service_execution_role_update,
|
5771
5921
|
:run_configuration_update,
|
5772
5922
|
:cloud_watch_logging_option_updates)
|
5923
|
+
SENSITIVE = []
|
5773
5924
|
include Aws::Structure
|
5774
5925
|
end
|
5775
5926
|
|
@@ -5781,6 +5932,7 @@ module Aws::KinesisAnalyticsV2
|
|
5781
5932
|
#
|
5782
5933
|
class UpdateApplicationResponse < Struct.new(
|
5783
5934
|
:application_detail)
|
5935
|
+
SENSITIVE = []
|
5784
5936
|
include Aws::Structure
|
5785
5937
|
end
|
5786
5938
|
|
@@ -5815,6 +5967,7 @@ module Aws::KinesisAnalyticsV2
|
|
5815
5967
|
class VpcConfiguration < Struct.new(
|
5816
5968
|
:subnet_ids,
|
5817
5969
|
:security_group_ids)
|
5970
|
+
SENSITIVE = []
|
5818
5971
|
include Aws::Structure
|
5819
5972
|
end
|
5820
5973
|
|
@@ -5851,6 +6004,7 @@ module Aws::KinesisAnalyticsV2
|
|
5851
6004
|
:vpc_id,
|
5852
6005
|
:subnet_ids,
|
5853
6006
|
:security_group_ids)
|
6007
|
+
SENSITIVE = []
|
5854
6008
|
include Aws::Structure
|
5855
6009
|
end
|
5856
6010
|
|
@@ -5893,6 +6047,7 @@ module Aws::KinesisAnalyticsV2
|
|
5893
6047
|
:vpc_configuration_id,
|
5894
6048
|
:subnet_id_updates,
|
5895
6049
|
:security_group_id_updates)
|
6050
|
+
SENSITIVE = []
|
5896
6051
|
include Aws::Structure
|
5897
6052
|
end
|
5898
6053
|
|