aws-sdk-kinesisanalytics 1.51.0 → 1.53.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisanalytics/client.rb +70 -46
- 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
data/sig/types.rbs
ADDED
@@ -0,0 +1,648 @@
|
|
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::KinesisAnalytics
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AddApplicationCloudWatchLoggingOptionRequest
|
12
|
+
attr_accessor application_name: ::String
|
13
|
+
attr_accessor current_application_version_id: ::Integer
|
14
|
+
attr_accessor cloud_watch_logging_option: Types::CloudWatchLoggingOption
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AddApplicationCloudWatchLoggingOptionResponse < Aws::EmptyStructure
|
19
|
+
end
|
20
|
+
|
21
|
+
class AddApplicationInputProcessingConfigurationRequest
|
22
|
+
attr_accessor application_name: ::String
|
23
|
+
attr_accessor current_application_version_id: ::Integer
|
24
|
+
attr_accessor input_id: ::String
|
25
|
+
attr_accessor input_processing_configuration: Types::InputProcessingConfiguration
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class AddApplicationInputProcessingConfigurationResponse < Aws::EmptyStructure
|
30
|
+
end
|
31
|
+
|
32
|
+
class AddApplicationInputRequest
|
33
|
+
attr_accessor application_name: ::String
|
34
|
+
attr_accessor current_application_version_id: ::Integer
|
35
|
+
attr_accessor input: Types::Input
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class AddApplicationInputResponse < Aws::EmptyStructure
|
40
|
+
end
|
41
|
+
|
42
|
+
class AddApplicationOutputRequest
|
43
|
+
attr_accessor application_name: ::String
|
44
|
+
attr_accessor current_application_version_id: ::Integer
|
45
|
+
attr_accessor output: Types::Output
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class AddApplicationOutputResponse < Aws::EmptyStructure
|
50
|
+
end
|
51
|
+
|
52
|
+
class AddApplicationReferenceDataSourceRequest
|
53
|
+
attr_accessor application_name: ::String
|
54
|
+
attr_accessor current_application_version_id: ::Integer
|
55
|
+
attr_accessor reference_data_source: Types::ReferenceDataSource
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class AddApplicationReferenceDataSourceResponse < Aws::EmptyStructure
|
60
|
+
end
|
61
|
+
|
62
|
+
class ApplicationDetail
|
63
|
+
attr_accessor application_name: ::String
|
64
|
+
attr_accessor application_description: ::String
|
65
|
+
attr_accessor application_arn: ::String
|
66
|
+
attr_accessor application_status: ("DELETING" | "STARTING" | "STOPPING" | "READY" | "RUNNING" | "UPDATING")
|
67
|
+
attr_accessor create_timestamp: ::Time
|
68
|
+
attr_accessor last_update_timestamp: ::Time
|
69
|
+
attr_accessor input_descriptions: ::Array[Types::InputDescription]
|
70
|
+
attr_accessor output_descriptions: ::Array[Types::OutputDescription]
|
71
|
+
attr_accessor reference_data_source_descriptions: ::Array[Types::ReferenceDataSourceDescription]
|
72
|
+
attr_accessor cloud_watch_logging_option_descriptions: ::Array[Types::CloudWatchLoggingOptionDescription]
|
73
|
+
attr_accessor application_code: ::String
|
74
|
+
attr_accessor application_version_id: ::Integer
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class ApplicationSummary
|
79
|
+
attr_accessor application_name: ::String
|
80
|
+
attr_accessor application_arn: ::String
|
81
|
+
attr_accessor application_status: ("DELETING" | "STARTING" | "STOPPING" | "READY" | "RUNNING" | "UPDATING")
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class ApplicationUpdate
|
86
|
+
attr_accessor input_updates: ::Array[Types::InputUpdate]
|
87
|
+
attr_accessor application_code_update: ::String
|
88
|
+
attr_accessor output_updates: ::Array[Types::OutputUpdate]
|
89
|
+
attr_accessor reference_data_source_updates: ::Array[Types::ReferenceDataSourceUpdate]
|
90
|
+
attr_accessor cloud_watch_logging_option_updates: ::Array[Types::CloudWatchLoggingOptionUpdate]
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class CSVMappingParameters
|
95
|
+
attr_accessor record_row_delimiter: ::String
|
96
|
+
attr_accessor record_column_delimiter: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class CloudWatchLoggingOption
|
101
|
+
attr_accessor log_stream_arn: ::String
|
102
|
+
attr_accessor role_arn: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class CloudWatchLoggingOptionDescription
|
107
|
+
attr_accessor cloud_watch_logging_option_id: ::String
|
108
|
+
attr_accessor log_stream_arn: ::String
|
109
|
+
attr_accessor role_arn: ::String
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class CloudWatchLoggingOptionUpdate
|
114
|
+
attr_accessor cloud_watch_logging_option_id: ::String
|
115
|
+
attr_accessor log_stream_arn_update: ::String
|
116
|
+
attr_accessor role_arn_update: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class CodeValidationException
|
121
|
+
attr_accessor message: ::String
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class ConcurrentModificationException
|
126
|
+
attr_accessor message: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class CreateApplicationRequest
|
131
|
+
attr_accessor application_name: ::String
|
132
|
+
attr_accessor application_description: ::String
|
133
|
+
attr_accessor inputs: ::Array[Types::Input]
|
134
|
+
attr_accessor outputs: ::Array[Types::Output]
|
135
|
+
attr_accessor cloud_watch_logging_options: ::Array[Types::CloudWatchLoggingOption]
|
136
|
+
attr_accessor application_code: ::String
|
137
|
+
attr_accessor tags: ::Array[Types::Tag]
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class CreateApplicationResponse
|
142
|
+
attr_accessor application_summary: Types::ApplicationSummary
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class DeleteApplicationCloudWatchLoggingOptionRequest
|
147
|
+
attr_accessor application_name: ::String
|
148
|
+
attr_accessor current_application_version_id: ::Integer
|
149
|
+
attr_accessor cloud_watch_logging_option_id: ::String
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class DeleteApplicationCloudWatchLoggingOptionResponse < Aws::EmptyStructure
|
154
|
+
end
|
155
|
+
|
156
|
+
class DeleteApplicationInputProcessingConfigurationRequest
|
157
|
+
attr_accessor application_name: ::String
|
158
|
+
attr_accessor current_application_version_id: ::Integer
|
159
|
+
attr_accessor input_id: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class DeleteApplicationInputProcessingConfigurationResponse < Aws::EmptyStructure
|
164
|
+
end
|
165
|
+
|
166
|
+
class DeleteApplicationOutputRequest
|
167
|
+
attr_accessor application_name: ::String
|
168
|
+
attr_accessor current_application_version_id: ::Integer
|
169
|
+
attr_accessor output_id: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class DeleteApplicationOutputResponse < Aws::EmptyStructure
|
174
|
+
end
|
175
|
+
|
176
|
+
class DeleteApplicationReferenceDataSourceRequest
|
177
|
+
attr_accessor application_name: ::String
|
178
|
+
attr_accessor current_application_version_id: ::Integer
|
179
|
+
attr_accessor reference_id: ::String
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class DeleteApplicationReferenceDataSourceResponse < Aws::EmptyStructure
|
184
|
+
end
|
185
|
+
|
186
|
+
class DeleteApplicationRequest
|
187
|
+
attr_accessor application_name: ::String
|
188
|
+
attr_accessor create_timestamp: ::Time
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class DeleteApplicationResponse < Aws::EmptyStructure
|
193
|
+
end
|
194
|
+
|
195
|
+
class DescribeApplicationRequest
|
196
|
+
attr_accessor application_name: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class DescribeApplicationResponse
|
201
|
+
attr_accessor application_detail: Types::ApplicationDetail
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class DestinationSchema
|
206
|
+
attr_accessor record_format_type: ("JSON" | "CSV")
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class DiscoverInputSchemaRequest
|
211
|
+
attr_accessor resource_arn: ::String
|
212
|
+
attr_accessor role_arn: ::String
|
213
|
+
attr_accessor input_starting_position_configuration: Types::InputStartingPositionConfiguration
|
214
|
+
attr_accessor s3_configuration: Types::S3Configuration
|
215
|
+
attr_accessor input_processing_configuration: Types::InputProcessingConfiguration
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class DiscoverInputSchemaResponse
|
220
|
+
attr_accessor input_schema: Types::SourceSchema
|
221
|
+
attr_accessor parsed_input_records: ::Array[::Array[::String]]
|
222
|
+
attr_accessor processed_input_records: ::Array[::String]
|
223
|
+
attr_accessor raw_input_records: ::Array[::String]
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class Input
|
228
|
+
attr_accessor name_prefix: ::String
|
229
|
+
attr_accessor input_processing_configuration: Types::InputProcessingConfiguration
|
230
|
+
attr_accessor kinesis_streams_input: Types::KinesisStreamsInput
|
231
|
+
attr_accessor kinesis_firehose_input: Types::KinesisFirehoseInput
|
232
|
+
attr_accessor input_parallelism: Types::InputParallelism
|
233
|
+
attr_accessor input_schema: Types::SourceSchema
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class InputConfiguration
|
238
|
+
attr_accessor id: ::String
|
239
|
+
attr_accessor input_starting_position_configuration: Types::InputStartingPositionConfiguration
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class InputDescription
|
244
|
+
attr_accessor input_id: ::String
|
245
|
+
attr_accessor name_prefix: ::String
|
246
|
+
attr_accessor in_app_stream_names: ::Array[::String]
|
247
|
+
attr_accessor input_processing_configuration_description: Types::InputProcessingConfigurationDescription
|
248
|
+
attr_accessor kinesis_streams_input_description: Types::KinesisStreamsInputDescription
|
249
|
+
attr_accessor kinesis_firehose_input_description: Types::KinesisFirehoseInputDescription
|
250
|
+
attr_accessor input_schema: Types::SourceSchema
|
251
|
+
attr_accessor input_parallelism: Types::InputParallelism
|
252
|
+
attr_accessor input_starting_position_configuration: Types::InputStartingPositionConfiguration
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class InputLambdaProcessor
|
257
|
+
attr_accessor resource_arn: ::String
|
258
|
+
attr_accessor role_arn: ::String
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class InputLambdaProcessorDescription
|
263
|
+
attr_accessor resource_arn: ::String
|
264
|
+
attr_accessor role_arn: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class InputLambdaProcessorUpdate
|
269
|
+
attr_accessor resource_arn_update: ::String
|
270
|
+
attr_accessor role_arn_update: ::String
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class InputParallelism
|
275
|
+
attr_accessor count: ::Integer
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class InputParallelismUpdate
|
280
|
+
attr_accessor count_update: ::Integer
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class InputProcessingConfiguration
|
285
|
+
attr_accessor input_lambda_processor: Types::InputLambdaProcessor
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class InputProcessingConfigurationDescription
|
290
|
+
attr_accessor input_lambda_processor_description: Types::InputLambdaProcessorDescription
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class InputProcessingConfigurationUpdate
|
295
|
+
attr_accessor input_lambda_processor_update: Types::InputLambdaProcessorUpdate
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class InputSchemaUpdate
|
300
|
+
attr_accessor record_format_update: Types::RecordFormat
|
301
|
+
attr_accessor record_encoding_update: ::String
|
302
|
+
attr_accessor record_column_updates: ::Array[Types::RecordColumn]
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class InputStartingPositionConfiguration
|
307
|
+
attr_accessor input_starting_position: ("NOW" | "TRIM_HORIZON" | "LAST_STOPPED_POINT")
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class InputUpdate
|
312
|
+
attr_accessor input_id: ::String
|
313
|
+
attr_accessor name_prefix_update: ::String
|
314
|
+
attr_accessor input_processing_configuration_update: Types::InputProcessingConfigurationUpdate
|
315
|
+
attr_accessor kinesis_streams_input_update: Types::KinesisStreamsInputUpdate
|
316
|
+
attr_accessor kinesis_firehose_input_update: Types::KinesisFirehoseInputUpdate
|
317
|
+
attr_accessor input_schema_update: Types::InputSchemaUpdate
|
318
|
+
attr_accessor input_parallelism_update: Types::InputParallelismUpdate
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class InvalidApplicationConfigurationException
|
323
|
+
attr_accessor message: ::String
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class InvalidArgumentException
|
328
|
+
attr_accessor message: ::String
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class JSONMappingParameters
|
333
|
+
attr_accessor record_row_path: ::String
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class KinesisFirehoseInput
|
338
|
+
attr_accessor resource_arn: ::String
|
339
|
+
attr_accessor role_arn: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class KinesisFirehoseInputDescription
|
344
|
+
attr_accessor resource_arn: ::String
|
345
|
+
attr_accessor role_arn: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class KinesisFirehoseInputUpdate
|
350
|
+
attr_accessor resource_arn_update: ::String
|
351
|
+
attr_accessor role_arn_update: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class KinesisFirehoseOutput
|
356
|
+
attr_accessor resource_arn: ::String
|
357
|
+
attr_accessor role_arn: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class KinesisFirehoseOutputDescription
|
362
|
+
attr_accessor resource_arn: ::String
|
363
|
+
attr_accessor role_arn: ::String
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class KinesisFirehoseOutputUpdate
|
368
|
+
attr_accessor resource_arn_update: ::String
|
369
|
+
attr_accessor role_arn_update: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class KinesisStreamsInput
|
374
|
+
attr_accessor resource_arn: ::String
|
375
|
+
attr_accessor role_arn: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class KinesisStreamsInputDescription
|
380
|
+
attr_accessor resource_arn: ::String
|
381
|
+
attr_accessor role_arn: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class KinesisStreamsInputUpdate
|
386
|
+
attr_accessor resource_arn_update: ::String
|
387
|
+
attr_accessor role_arn_update: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class KinesisStreamsOutput
|
392
|
+
attr_accessor resource_arn: ::String
|
393
|
+
attr_accessor role_arn: ::String
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class KinesisStreamsOutputDescription
|
398
|
+
attr_accessor resource_arn: ::String
|
399
|
+
attr_accessor role_arn: ::String
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class KinesisStreamsOutputUpdate
|
404
|
+
attr_accessor resource_arn_update: ::String
|
405
|
+
attr_accessor role_arn_update: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class LambdaOutput
|
410
|
+
attr_accessor resource_arn: ::String
|
411
|
+
attr_accessor role_arn: ::String
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class LambdaOutputDescription
|
416
|
+
attr_accessor resource_arn: ::String
|
417
|
+
attr_accessor role_arn: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class LambdaOutputUpdate
|
422
|
+
attr_accessor resource_arn_update: ::String
|
423
|
+
attr_accessor role_arn_update: ::String
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class LimitExceededException
|
428
|
+
attr_accessor message: ::String
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class ListApplicationsRequest
|
433
|
+
attr_accessor limit: ::Integer
|
434
|
+
attr_accessor exclusive_start_application_name: ::String
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class ListApplicationsResponse
|
439
|
+
attr_accessor application_summaries: ::Array[Types::ApplicationSummary]
|
440
|
+
attr_accessor has_more_applications: bool
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class ListTagsForResourceRequest
|
445
|
+
attr_accessor resource_arn: ::String
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class ListTagsForResourceResponse
|
450
|
+
attr_accessor tags: ::Array[Types::Tag]
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class MappingParameters
|
455
|
+
attr_accessor json_mapping_parameters: Types::JSONMappingParameters
|
456
|
+
attr_accessor csv_mapping_parameters: Types::CSVMappingParameters
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class Output
|
461
|
+
attr_accessor name: ::String
|
462
|
+
attr_accessor kinesis_streams_output: Types::KinesisStreamsOutput
|
463
|
+
attr_accessor kinesis_firehose_output: Types::KinesisFirehoseOutput
|
464
|
+
attr_accessor lambda_output: Types::LambdaOutput
|
465
|
+
attr_accessor destination_schema: Types::DestinationSchema
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class OutputDescription
|
470
|
+
attr_accessor output_id: ::String
|
471
|
+
attr_accessor name: ::String
|
472
|
+
attr_accessor kinesis_streams_output_description: Types::KinesisStreamsOutputDescription
|
473
|
+
attr_accessor kinesis_firehose_output_description: Types::KinesisFirehoseOutputDescription
|
474
|
+
attr_accessor lambda_output_description: Types::LambdaOutputDescription
|
475
|
+
attr_accessor destination_schema: Types::DestinationSchema
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class OutputUpdate
|
480
|
+
attr_accessor output_id: ::String
|
481
|
+
attr_accessor name_update: ::String
|
482
|
+
attr_accessor kinesis_streams_output_update: Types::KinesisStreamsOutputUpdate
|
483
|
+
attr_accessor kinesis_firehose_output_update: Types::KinesisFirehoseOutputUpdate
|
484
|
+
attr_accessor lambda_output_update: Types::LambdaOutputUpdate
|
485
|
+
attr_accessor destination_schema_update: Types::DestinationSchema
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class RecordColumn
|
490
|
+
attr_accessor name: ::String
|
491
|
+
attr_accessor mapping: ::String
|
492
|
+
attr_accessor sql_type: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class RecordFormat
|
497
|
+
attr_accessor record_format_type: ("JSON" | "CSV")
|
498
|
+
attr_accessor mapping_parameters: Types::MappingParameters
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class ReferenceDataSource
|
503
|
+
attr_accessor table_name: ::String
|
504
|
+
attr_accessor s3_reference_data_source: Types::S3ReferenceDataSource
|
505
|
+
attr_accessor reference_schema: Types::SourceSchema
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class ReferenceDataSourceDescription
|
510
|
+
attr_accessor reference_id: ::String
|
511
|
+
attr_accessor table_name: ::String
|
512
|
+
attr_accessor s3_reference_data_source_description: Types::S3ReferenceDataSourceDescription
|
513
|
+
attr_accessor reference_schema: Types::SourceSchema
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
517
|
+
class ReferenceDataSourceUpdate
|
518
|
+
attr_accessor reference_id: ::String
|
519
|
+
attr_accessor table_name_update: ::String
|
520
|
+
attr_accessor s3_reference_data_source_update: Types::S3ReferenceDataSourceUpdate
|
521
|
+
attr_accessor reference_schema_update: Types::SourceSchema
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class ResourceInUseException
|
526
|
+
attr_accessor message: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class ResourceNotFoundException
|
531
|
+
attr_accessor message: ::String
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
535
|
+
class ResourceProvisionedThroughputExceededException
|
536
|
+
attr_accessor message: ::String
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class S3Configuration
|
541
|
+
attr_accessor role_arn: ::String
|
542
|
+
attr_accessor bucket_arn: ::String
|
543
|
+
attr_accessor file_key: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class S3ReferenceDataSource
|
548
|
+
attr_accessor bucket_arn: ::String
|
549
|
+
attr_accessor file_key: ::String
|
550
|
+
attr_accessor reference_role_arn: ::String
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class S3ReferenceDataSourceDescription
|
555
|
+
attr_accessor bucket_arn: ::String
|
556
|
+
attr_accessor file_key: ::String
|
557
|
+
attr_accessor reference_role_arn: ::String
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class S3ReferenceDataSourceUpdate
|
562
|
+
attr_accessor bucket_arn_update: ::String
|
563
|
+
attr_accessor file_key_update: ::String
|
564
|
+
attr_accessor reference_role_arn_update: ::String
|
565
|
+
SENSITIVE: []
|
566
|
+
end
|
567
|
+
|
568
|
+
class ServiceUnavailableException
|
569
|
+
attr_accessor message: ::String
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class SourceSchema
|
574
|
+
attr_accessor record_format: Types::RecordFormat
|
575
|
+
attr_accessor record_encoding: ::String
|
576
|
+
attr_accessor record_columns: ::Array[Types::RecordColumn]
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class StartApplicationRequest
|
581
|
+
attr_accessor application_name: ::String
|
582
|
+
attr_accessor input_configurations: ::Array[Types::InputConfiguration]
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class StartApplicationResponse < Aws::EmptyStructure
|
587
|
+
end
|
588
|
+
|
589
|
+
class StopApplicationRequest
|
590
|
+
attr_accessor application_name: ::String
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class StopApplicationResponse < Aws::EmptyStructure
|
595
|
+
end
|
596
|
+
|
597
|
+
class Tag
|
598
|
+
attr_accessor key: ::String
|
599
|
+
attr_accessor value: ::String
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
603
|
+
class TagResourceRequest
|
604
|
+
attr_accessor resource_arn: ::String
|
605
|
+
attr_accessor tags: ::Array[Types::Tag]
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class TagResourceResponse < Aws::EmptyStructure
|
610
|
+
end
|
611
|
+
|
612
|
+
class TooManyTagsException
|
613
|
+
attr_accessor message: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class UnableToDetectSchemaException
|
618
|
+
attr_accessor message: ::String
|
619
|
+
attr_accessor raw_input_records: ::Array[::String]
|
620
|
+
attr_accessor processed_input_records: ::Array[::String]
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class UnsupportedOperationException
|
625
|
+
attr_accessor message: ::String
|
626
|
+
SENSITIVE: []
|
627
|
+
end
|
628
|
+
|
629
|
+
class UntagResourceRequest
|
630
|
+
attr_accessor resource_arn: ::String
|
631
|
+
attr_accessor tag_keys: ::Array[::String]
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
636
|
+
end
|
637
|
+
|
638
|
+
class UpdateApplicationRequest
|
639
|
+
attr_accessor application_name: ::String
|
640
|
+
attr_accessor current_application_version_id: ::Integer
|
641
|
+
attr_accessor application_update: Types::ApplicationUpdate
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class UpdateApplicationResponse < Aws::EmptyStructure
|
646
|
+
end
|
647
|
+
end
|
648
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|