aws-sdk-kinesisanalytics 1.51.0 → 1.52.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisanalytics/client.rb +1 -1
- data/lib/aws-sdk-kinesisanalytics/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-kinesisanalytics.rb +1 -1
- data/sig/client.rbs +601 -0
- data/sig/errors.rbs +54 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +648 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa2b354da87b63ff809b2d80f5699803990cf37ecaaf9c60596291fc6c9b8ca0
|
|
4
|
+
data.tar.gz: 5af583f8bd3da3c6c495128b2da07fc1cec563f741ca4ab5016c84190582315e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01e19df4090b8d9512a483895ca1d1ea1d3d3435c960997815cd4d6e53c12638d7b4ed30c4f8063876541de5de98556d86761a0a2bba1e81900a659d8ebc8aff
|
|
7
|
+
data.tar.gz: 4bba0ba3a14a243768edbfa4bea84323ec26045e14031063cd4dbfd0f1cd91eabb05f3b0c3607f1e5016aa487e2dc4cd382f22f3213373c4c90de02e92793633
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.52.0
|
|
@@ -1991,7 +1991,7 @@ module Aws::KinesisAnalytics
|
|
|
1991
1991
|
params: params,
|
|
1992
1992
|
config: config)
|
|
1993
1993
|
context[:gem_name] = 'aws-sdk-kinesisanalytics'
|
|
1994
|
-
context[:gem_version] = '1.
|
|
1994
|
+
context[:gem_version] = '1.52.0'
|
|
1995
1995
|
Seahorse::Client::Request.new(handlers, context)
|
|
1996
1996
|
end
|
|
1997
1997
|
|
|
@@ -14,6 +14,7 @@ module Aws::KinesisAnalytics
|
|
|
14
14
|
option(
|
|
15
15
|
:endpoint_provider,
|
|
16
16
|
doc_type: 'Aws::KinesisAnalytics::EndpointProvider',
|
|
17
|
+
rbs_type: 'untyped',
|
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,601 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module KinesisAnalytics
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?simple_json: bool,
|
|
52
|
+
?stub_responses: untyped,
|
|
53
|
+
?token_provider: untyped,
|
|
54
|
+
?use_dualstack_endpoint: bool,
|
|
55
|
+
?use_fips_endpoint: bool,
|
|
56
|
+
?validate_params: bool,
|
|
57
|
+
?endpoint_provider: untyped,
|
|
58
|
+
?http_proxy: String,
|
|
59
|
+
?http_open_timeout: (Float | Integer),
|
|
60
|
+
?http_read_timeout: (Float | Integer),
|
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
64
|
+
?http_wire_trace: bool,
|
|
65
|
+
?ssl_verify_peer: bool,
|
|
66
|
+
?ssl_ca_bundle: String,
|
|
67
|
+
?ssl_ca_directory: String,
|
|
68
|
+
?ssl_ca_store: String,
|
|
69
|
+
?on_chunk_received: Proc,
|
|
70
|
+
?on_chunk_sent: Proc,
|
|
71
|
+
?raise_response_errors: bool
|
|
72
|
+
) -> instance
|
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
interface _AddApplicationCloudWatchLoggingOptionResponseSuccess
|
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationCloudWatchLoggingOptionResponse]
|
|
78
|
+
end
|
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#add_application_cloud_watch_logging_option-instance_method
|
|
80
|
+
def add_application_cloud_watch_logging_option: (
|
|
81
|
+
application_name: ::String,
|
|
82
|
+
current_application_version_id: ::Integer,
|
|
83
|
+
cloud_watch_logging_option: {
|
|
84
|
+
log_stream_arn: ::String,
|
|
85
|
+
role_arn: ::String
|
|
86
|
+
}
|
|
87
|
+
) -> _AddApplicationCloudWatchLoggingOptionResponseSuccess
|
|
88
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationCloudWatchLoggingOptionResponseSuccess
|
|
89
|
+
|
|
90
|
+
interface _AddApplicationInputResponseSuccess
|
|
91
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationInputResponse]
|
|
92
|
+
end
|
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#add_application_input-instance_method
|
|
94
|
+
def add_application_input: (
|
|
95
|
+
application_name: ::String,
|
|
96
|
+
current_application_version_id: ::Integer,
|
|
97
|
+
input: {
|
|
98
|
+
name_prefix: ::String,
|
|
99
|
+
input_processing_configuration: {
|
|
100
|
+
input_lambda_processor: {
|
|
101
|
+
resource_arn: ::String,
|
|
102
|
+
role_arn: ::String
|
|
103
|
+
}
|
|
104
|
+
}?,
|
|
105
|
+
kinesis_streams_input: {
|
|
106
|
+
resource_arn: ::String,
|
|
107
|
+
role_arn: ::String
|
|
108
|
+
}?,
|
|
109
|
+
kinesis_firehose_input: {
|
|
110
|
+
resource_arn: ::String,
|
|
111
|
+
role_arn: ::String
|
|
112
|
+
}?,
|
|
113
|
+
input_parallelism: {
|
|
114
|
+
count: ::Integer?
|
|
115
|
+
}?,
|
|
116
|
+
input_schema: {
|
|
117
|
+
record_format: {
|
|
118
|
+
record_format_type: ("JSON" | "CSV"),
|
|
119
|
+
mapping_parameters: {
|
|
120
|
+
json_mapping_parameters: {
|
|
121
|
+
record_row_path: ::String
|
|
122
|
+
}?,
|
|
123
|
+
csv_mapping_parameters: {
|
|
124
|
+
record_row_delimiter: ::String,
|
|
125
|
+
record_column_delimiter: ::String
|
|
126
|
+
}?
|
|
127
|
+
}?
|
|
128
|
+
},
|
|
129
|
+
record_encoding: ::String?,
|
|
130
|
+
record_columns: Array[
|
|
131
|
+
{
|
|
132
|
+
name: ::String,
|
|
133
|
+
mapping: ::String?,
|
|
134
|
+
sql_type: ::String
|
|
135
|
+
},
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
) -> _AddApplicationInputResponseSuccess
|
|
140
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationInputResponseSuccess
|
|
141
|
+
|
|
142
|
+
interface _AddApplicationInputProcessingConfigurationResponseSuccess
|
|
143
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationInputProcessingConfigurationResponse]
|
|
144
|
+
end
|
|
145
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#add_application_input_processing_configuration-instance_method
|
|
146
|
+
def add_application_input_processing_configuration: (
|
|
147
|
+
application_name: ::String,
|
|
148
|
+
current_application_version_id: ::Integer,
|
|
149
|
+
input_id: ::String,
|
|
150
|
+
input_processing_configuration: {
|
|
151
|
+
input_lambda_processor: {
|
|
152
|
+
resource_arn: ::String,
|
|
153
|
+
role_arn: ::String
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
) -> _AddApplicationInputProcessingConfigurationResponseSuccess
|
|
157
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationInputProcessingConfigurationResponseSuccess
|
|
158
|
+
|
|
159
|
+
interface _AddApplicationOutputResponseSuccess
|
|
160
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationOutputResponse]
|
|
161
|
+
end
|
|
162
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#add_application_output-instance_method
|
|
163
|
+
def add_application_output: (
|
|
164
|
+
application_name: ::String,
|
|
165
|
+
current_application_version_id: ::Integer,
|
|
166
|
+
output: {
|
|
167
|
+
name: ::String,
|
|
168
|
+
kinesis_streams_output: {
|
|
169
|
+
resource_arn: ::String,
|
|
170
|
+
role_arn: ::String
|
|
171
|
+
}?,
|
|
172
|
+
kinesis_firehose_output: {
|
|
173
|
+
resource_arn: ::String,
|
|
174
|
+
role_arn: ::String
|
|
175
|
+
}?,
|
|
176
|
+
lambda_output: {
|
|
177
|
+
resource_arn: ::String,
|
|
178
|
+
role_arn: ::String
|
|
179
|
+
}?,
|
|
180
|
+
destination_schema: {
|
|
181
|
+
record_format_type: ("JSON" | "CSV")
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
) -> _AddApplicationOutputResponseSuccess
|
|
185
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationOutputResponseSuccess
|
|
186
|
+
|
|
187
|
+
interface _AddApplicationReferenceDataSourceResponseSuccess
|
|
188
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationReferenceDataSourceResponse]
|
|
189
|
+
end
|
|
190
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#add_application_reference_data_source-instance_method
|
|
191
|
+
def add_application_reference_data_source: (
|
|
192
|
+
application_name: ::String,
|
|
193
|
+
current_application_version_id: ::Integer,
|
|
194
|
+
reference_data_source: {
|
|
195
|
+
table_name: ::String,
|
|
196
|
+
s3_reference_data_source: {
|
|
197
|
+
bucket_arn: ::String,
|
|
198
|
+
file_key: ::String,
|
|
199
|
+
reference_role_arn: ::String
|
|
200
|
+
}?,
|
|
201
|
+
reference_schema: {
|
|
202
|
+
record_format: {
|
|
203
|
+
record_format_type: ("JSON" | "CSV"),
|
|
204
|
+
mapping_parameters: {
|
|
205
|
+
json_mapping_parameters: {
|
|
206
|
+
record_row_path: ::String
|
|
207
|
+
}?,
|
|
208
|
+
csv_mapping_parameters: {
|
|
209
|
+
record_row_delimiter: ::String,
|
|
210
|
+
record_column_delimiter: ::String
|
|
211
|
+
}?
|
|
212
|
+
}?
|
|
213
|
+
},
|
|
214
|
+
record_encoding: ::String?,
|
|
215
|
+
record_columns: Array[
|
|
216
|
+
{
|
|
217
|
+
name: ::String,
|
|
218
|
+
mapping: ::String?,
|
|
219
|
+
sql_type: ::String
|
|
220
|
+
},
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
) -> _AddApplicationReferenceDataSourceResponseSuccess
|
|
225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationReferenceDataSourceResponseSuccess
|
|
226
|
+
|
|
227
|
+
interface _CreateApplicationResponseSuccess
|
|
228
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationResponse]
|
|
229
|
+
def application_summary: () -> Types::ApplicationSummary
|
|
230
|
+
end
|
|
231
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#create_application-instance_method
|
|
232
|
+
def create_application: (
|
|
233
|
+
application_name: ::String,
|
|
234
|
+
?application_description: ::String,
|
|
235
|
+
?inputs: Array[
|
|
236
|
+
{
|
|
237
|
+
name_prefix: ::String,
|
|
238
|
+
input_processing_configuration: {
|
|
239
|
+
input_lambda_processor: {
|
|
240
|
+
resource_arn: ::String,
|
|
241
|
+
role_arn: ::String
|
|
242
|
+
}
|
|
243
|
+
}?,
|
|
244
|
+
kinesis_streams_input: {
|
|
245
|
+
resource_arn: ::String,
|
|
246
|
+
role_arn: ::String
|
|
247
|
+
}?,
|
|
248
|
+
kinesis_firehose_input: {
|
|
249
|
+
resource_arn: ::String,
|
|
250
|
+
role_arn: ::String
|
|
251
|
+
}?,
|
|
252
|
+
input_parallelism: {
|
|
253
|
+
count: ::Integer?
|
|
254
|
+
}?,
|
|
255
|
+
input_schema: {
|
|
256
|
+
record_format: {
|
|
257
|
+
record_format_type: ("JSON" | "CSV"),
|
|
258
|
+
mapping_parameters: {
|
|
259
|
+
json_mapping_parameters: {
|
|
260
|
+
record_row_path: ::String
|
|
261
|
+
}?,
|
|
262
|
+
csv_mapping_parameters: {
|
|
263
|
+
record_row_delimiter: ::String,
|
|
264
|
+
record_column_delimiter: ::String
|
|
265
|
+
}?
|
|
266
|
+
}?
|
|
267
|
+
},
|
|
268
|
+
record_encoding: ::String?,
|
|
269
|
+
record_columns: Array[
|
|
270
|
+
{
|
|
271
|
+
name: ::String,
|
|
272
|
+
mapping: ::String?,
|
|
273
|
+
sql_type: ::String
|
|
274
|
+
},
|
|
275
|
+
]
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
],
|
|
279
|
+
?outputs: Array[
|
|
280
|
+
{
|
|
281
|
+
name: ::String,
|
|
282
|
+
kinesis_streams_output: {
|
|
283
|
+
resource_arn: ::String,
|
|
284
|
+
role_arn: ::String
|
|
285
|
+
}?,
|
|
286
|
+
kinesis_firehose_output: {
|
|
287
|
+
resource_arn: ::String,
|
|
288
|
+
role_arn: ::String
|
|
289
|
+
}?,
|
|
290
|
+
lambda_output: {
|
|
291
|
+
resource_arn: ::String,
|
|
292
|
+
role_arn: ::String
|
|
293
|
+
}?,
|
|
294
|
+
destination_schema: {
|
|
295
|
+
record_format_type: ("JSON" | "CSV")
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
],
|
|
299
|
+
?cloud_watch_logging_options: Array[
|
|
300
|
+
{
|
|
301
|
+
log_stream_arn: ::String,
|
|
302
|
+
role_arn: ::String
|
|
303
|
+
},
|
|
304
|
+
],
|
|
305
|
+
?application_code: ::String,
|
|
306
|
+
?tags: Array[
|
|
307
|
+
{
|
|
308
|
+
key: ::String,
|
|
309
|
+
value: ::String?
|
|
310
|
+
},
|
|
311
|
+
]
|
|
312
|
+
) -> _CreateApplicationResponseSuccess
|
|
313
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
|
314
|
+
|
|
315
|
+
interface _DeleteApplicationResponseSuccess
|
|
316
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationResponse]
|
|
317
|
+
end
|
|
318
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#delete_application-instance_method
|
|
319
|
+
def delete_application: (
|
|
320
|
+
application_name: ::String,
|
|
321
|
+
create_timestamp: ::Time
|
|
322
|
+
) -> _DeleteApplicationResponseSuccess
|
|
323
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationResponseSuccess
|
|
324
|
+
|
|
325
|
+
interface _DeleteApplicationCloudWatchLoggingOptionResponseSuccess
|
|
326
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationCloudWatchLoggingOptionResponse]
|
|
327
|
+
end
|
|
328
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#delete_application_cloud_watch_logging_option-instance_method
|
|
329
|
+
def delete_application_cloud_watch_logging_option: (
|
|
330
|
+
application_name: ::String,
|
|
331
|
+
current_application_version_id: ::Integer,
|
|
332
|
+
cloud_watch_logging_option_id: ::String
|
|
333
|
+
) -> _DeleteApplicationCloudWatchLoggingOptionResponseSuccess
|
|
334
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationCloudWatchLoggingOptionResponseSuccess
|
|
335
|
+
|
|
336
|
+
interface _DeleteApplicationInputProcessingConfigurationResponseSuccess
|
|
337
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationInputProcessingConfigurationResponse]
|
|
338
|
+
end
|
|
339
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#delete_application_input_processing_configuration-instance_method
|
|
340
|
+
def delete_application_input_processing_configuration: (
|
|
341
|
+
application_name: ::String,
|
|
342
|
+
current_application_version_id: ::Integer,
|
|
343
|
+
input_id: ::String
|
|
344
|
+
) -> _DeleteApplicationInputProcessingConfigurationResponseSuccess
|
|
345
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationInputProcessingConfigurationResponseSuccess
|
|
346
|
+
|
|
347
|
+
interface _DeleteApplicationOutputResponseSuccess
|
|
348
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationOutputResponse]
|
|
349
|
+
end
|
|
350
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#delete_application_output-instance_method
|
|
351
|
+
def delete_application_output: (
|
|
352
|
+
application_name: ::String,
|
|
353
|
+
current_application_version_id: ::Integer,
|
|
354
|
+
output_id: ::String
|
|
355
|
+
) -> _DeleteApplicationOutputResponseSuccess
|
|
356
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationOutputResponseSuccess
|
|
357
|
+
|
|
358
|
+
interface _DeleteApplicationReferenceDataSourceResponseSuccess
|
|
359
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationReferenceDataSourceResponse]
|
|
360
|
+
end
|
|
361
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#delete_application_reference_data_source-instance_method
|
|
362
|
+
def delete_application_reference_data_source: (
|
|
363
|
+
application_name: ::String,
|
|
364
|
+
current_application_version_id: ::Integer,
|
|
365
|
+
reference_id: ::String
|
|
366
|
+
) -> _DeleteApplicationReferenceDataSourceResponseSuccess
|
|
367
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationReferenceDataSourceResponseSuccess
|
|
368
|
+
|
|
369
|
+
interface _DescribeApplicationResponseSuccess
|
|
370
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationResponse]
|
|
371
|
+
def application_detail: () -> Types::ApplicationDetail
|
|
372
|
+
end
|
|
373
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#describe_application-instance_method
|
|
374
|
+
def describe_application: (
|
|
375
|
+
application_name: ::String
|
|
376
|
+
) -> _DescribeApplicationResponseSuccess
|
|
377
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationResponseSuccess
|
|
378
|
+
|
|
379
|
+
interface _DiscoverInputSchemaResponseSuccess
|
|
380
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DiscoverInputSchemaResponse]
|
|
381
|
+
def input_schema: () -> Types::SourceSchema
|
|
382
|
+
def parsed_input_records: () -> ::Array[::Array[::String]]
|
|
383
|
+
def processed_input_records: () -> ::Array[::String]
|
|
384
|
+
def raw_input_records: () -> ::Array[::String]
|
|
385
|
+
end
|
|
386
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#discover_input_schema-instance_method
|
|
387
|
+
def discover_input_schema: (
|
|
388
|
+
?resource_arn: ::String,
|
|
389
|
+
?role_arn: ::String,
|
|
390
|
+
?input_starting_position_configuration: {
|
|
391
|
+
input_starting_position: ("NOW" | "TRIM_HORIZON" | "LAST_STOPPED_POINT")?
|
|
392
|
+
},
|
|
393
|
+
?s3_configuration: {
|
|
394
|
+
role_arn: ::String,
|
|
395
|
+
bucket_arn: ::String,
|
|
396
|
+
file_key: ::String
|
|
397
|
+
},
|
|
398
|
+
?input_processing_configuration: {
|
|
399
|
+
input_lambda_processor: {
|
|
400
|
+
resource_arn: ::String,
|
|
401
|
+
role_arn: ::String
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
) -> _DiscoverInputSchemaResponseSuccess
|
|
405
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DiscoverInputSchemaResponseSuccess
|
|
406
|
+
|
|
407
|
+
interface _ListApplicationsResponseSuccess
|
|
408
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationsResponse]
|
|
409
|
+
def application_summaries: () -> ::Array[Types::ApplicationSummary]
|
|
410
|
+
def has_more_applications: () -> bool
|
|
411
|
+
end
|
|
412
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#list_applications-instance_method
|
|
413
|
+
def list_applications: (
|
|
414
|
+
?limit: ::Integer,
|
|
415
|
+
?exclusive_start_application_name: ::String
|
|
416
|
+
) -> _ListApplicationsResponseSuccess
|
|
417
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
|
|
418
|
+
|
|
419
|
+
interface _ListTagsForResourceResponseSuccess
|
|
420
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
421
|
+
def tags: () -> ::Array[Types::Tag]
|
|
422
|
+
end
|
|
423
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#list_tags_for_resource-instance_method
|
|
424
|
+
def list_tags_for_resource: (
|
|
425
|
+
resource_arn: ::String
|
|
426
|
+
) -> _ListTagsForResourceResponseSuccess
|
|
427
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
|
428
|
+
|
|
429
|
+
interface _StartApplicationResponseSuccess
|
|
430
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartApplicationResponse]
|
|
431
|
+
end
|
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#start_application-instance_method
|
|
433
|
+
def start_application: (
|
|
434
|
+
application_name: ::String,
|
|
435
|
+
input_configurations: Array[
|
|
436
|
+
{
|
|
437
|
+
id: ::String,
|
|
438
|
+
input_starting_position_configuration: {
|
|
439
|
+
input_starting_position: ("NOW" | "TRIM_HORIZON" | "LAST_STOPPED_POINT")?
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
]
|
|
443
|
+
) -> _StartApplicationResponseSuccess
|
|
444
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartApplicationResponseSuccess
|
|
445
|
+
|
|
446
|
+
interface _StopApplicationResponseSuccess
|
|
447
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopApplicationResponse]
|
|
448
|
+
end
|
|
449
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#stop_application-instance_method
|
|
450
|
+
def stop_application: (
|
|
451
|
+
application_name: ::String
|
|
452
|
+
) -> _StopApplicationResponseSuccess
|
|
453
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopApplicationResponseSuccess
|
|
454
|
+
|
|
455
|
+
interface _TagResourceResponseSuccess
|
|
456
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
|
457
|
+
end
|
|
458
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#tag_resource-instance_method
|
|
459
|
+
def tag_resource: (
|
|
460
|
+
resource_arn: ::String,
|
|
461
|
+
tags: Array[
|
|
462
|
+
{
|
|
463
|
+
key: ::String,
|
|
464
|
+
value: ::String?
|
|
465
|
+
},
|
|
466
|
+
]
|
|
467
|
+
) -> _TagResourceResponseSuccess
|
|
468
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
|
469
|
+
|
|
470
|
+
interface _UntagResourceResponseSuccess
|
|
471
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
|
472
|
+
end
|
|
473
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#untag_resource-instance_method
|
|
474
|
+
def untag_resource: (
|
|
475
|
+
resource_arn: ::String,
|
|
476
|
+
tag_keys: Array[::String]
|
|
477
|
+
) -> _UntagResourceResponseSuccess
|
|
478
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
|
479
|
+
|
|
480
|
+
interface _UpdateApplicationResponseSuccess
|
|
481
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationResponse]
|
|
482
|
+
end
|
|
483
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalytics/Client.html#update_application-instance_method
|
|
484
|
+
def update_application: (
|
|
485
|
+
application_name: ::String,
|
|
486
|
+
current_application_version_id: ::Integer,
|
|
487
|
+
application_update: {
|
|
488
|
+
input_updates: Array[
|
|
489
|
+
{
|
|
490
|
+
input_id: ::String,
|
|
491
|
+
name_prefix_update: ::String?,
|
|
492
|
+
input_processing_configuration_update: {
|
|
493
|
+
input_lambda_processor_update: {
|
|
494
|
+
resource_arn_update: ::String?,
|
|
495
|
+
role_arn_update: ::String?
|
|
496
|
+
}
|
|
497
|
+
}?,
|
|
498
|
+
kinesis_streams_input_update: {
|
|
499
|
+
resource_arn_update: ::String?,
|
|
500
|
+
role_arn_update: ::String?
|
|
501
|
+
}?,
|
|
502
|
+
kinesis_firehose_input_update: {
|
|
503
|
+
resource_arn_update: ::String?,
|
|
504
|
+
role_arn_update: ::String?
|
|
505
|
+
}?,
|
|
506
|
+
input_schema_update: {
|
|
507
|
+
record_format_update: {
|
|
508
|
+
record_format_type: ("JSON" | "CSV"),
|
|
509
|
+
mapping_parameters: {
|
|
510
|
+
json_mapping_parameters: {
|
|
511
|
+
record_row_path: ::String
|
|
512
|
+
}?,
|
|
513
|
+
csv_mapping_parameters: {
|
|
514
|
+
record_row_delimiter: ::String,
|
|
515
|
+
record_column_delimiter: ::String
|
|
516
|
+
}?
|
|
517
|
+
}?
|
|
518
|
+
}?,
|
|
519
|
+
record_encoding_update: ::String?,
|
|
520
|
+
record_column_updates: Array[
|
|
521
|
+
{
|
|
522
|
+
name: ::String,
|
|
523
|
+
mapping: ::String?,
|
|
524
|
+
sql_type: ::String
|
|
525
|
+
},
|
|
526
|
+
]?
|
|
527
|
+
}?,
|
|
528
|
+
input_parallelism_update: {
|
|
529
|
+
count_update: ::Integer?
|
|
530
|
+
}?
|
|
531
|
+
},
|
|
532
|
+
]?,
|
|
533
|
+
application_code_update: ::String?,
|
|
534
|
+
output_updates: Array[
|
|
535
|
+
{
|
|
536
|
+
output_id: ::String,
|
|
537
|
+
name_update: ::String?,
|
|
538
|
+
kinesis_streams_output_update: {
|
|
539
|
+
resource_arn_update: ::String?,
|
|
540
|
+
role_arn_update: ::String?
|
|
541
|
+
}?,
|
|
542
|
+
kinesis_firehose_output_update: {
|
|
543
|
+
resource_arn_update: ::String?,
|
|
544
|
+
role_arn_update: ::String?
|
|
545
|
+
}?,
|
|
546
|
+
lambda_output_update: {
|
|
547
|
+
resource_arn_update: ::String?,
|
|
548
|
+
role_arn_update: ::String?
|
|
549
|
+
}?,
|
|
550
|
+
destination_schema_update: {
|
|
551
|
+
record_format_type: ("JSON" | "CSV")
|
|
552
|
+
}?
|
|
553
|
+
},
|
|
554
|
+
]?,
|
|
555
|
+
reference_data_source_updates: Array[
|
|
556
|
+
{
|
|
557
|
+
reference_id: ::String,
|
|
558
|
+
table_name_update: ::String?,
|
|
559
|
+
s3_reference_data_source_update: {
|
|
560
|
+
bucket_arn_update: ::String?,
|
|
561
|
+
file_key_update: ::String?,
|
|
562
|
+
reference_role_arn_update: ::String?
|
|
563
|
+
}?,
|
|
564
|
+
reference_schema_update: {
|
|
565
|
+
record_format: {
|
|
566
|
+
record_format_type: ("JSON" | "CSV"),
|
|
567
|
+
mapping_parameters: {
|
|
568
|
+
json_mapping_parameters: {
|
|
569
|
+
record_row_path: ::String
|
|
570
|
+
}?,
|
|
571
|
+
csv_mapping_parameters: {
|
|
572
|
+
record_row_delimiter: ::String,
|
|
573
|
+
record_column_delimiter: ::String
|
|
574
|
+
}?
|
|
575
|
+
}?
|
|
576
|
+
},
|
|
577
|
+
record_encoding: ::String?,
|
|
578
|
+
record_columns: Array[
|
|
579
|
+
{
|
|
580
|
+
name: ::String,
|
|
581
|
+
mapping: ::String?,
|
|
582
|
+
sql_type: ::String
|
|
583
|
+
},
|
|
584
|
+
]
|
|
585
|
+
}?
|
|
586
|
+
},
|
|
587
|
+
]?,
|
|
588
|
+
cloud_watch_logging_option_updates: Array[
|
|
589
|
+
{
|
|
590
|
+
cloud_watch_logging_option_id: ::String,
|
|
591
|
+
log_stream_arn_update: ::String?,
|
|
592
|
+
role_arn_update: ::String?
|
|
593
|
+
},
|
|
594
|
+
]?
|
|
595
|
+
}
|
|
596
|
+
) -> _UpdateApplicationResponseSuccess
|
|
597
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
|
598
|
+
end
|
|
599
|
+
end
|
|
600
|
+
end
|
|
601
|
+
|