aws-sdk-kinesisanalyticsv2 1.90.0 → 1.91.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-kinesisanalyticsv2/client.rb +1 -1
- data/lib/aws-sdk-kinesisanalyticsv2.rb +1 -1
- data/sig/client.rbs +23 -239
- data/sig/params.rbs +98 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68a0646b254073bf9e79fd92791eaec88a89cbf0f83604ab0f2a954a28ba820a
|
|
4
|
+
data.tar.gz: ef28ebe425031dd9bb93e67c12402dce850f58bf338dead36286c343f3bda99a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2e2157e6cd69c024cdaf5271d49ac9b74cce24ba2f32f7fc28f267043a2023d9b174a97bd42070d55bd06165110fbd1e7b636d99721f4c23da7d53d8e5da01a
|
|
7
|
+
data.tar.gz: 8fd253cb7049500ad0a568e218489d4bab989ce0c6feec5978fa509a1717bdd01639f8259f6e5253a231035261994ab32f1a06f5f2c357162ab4a5139404e5c6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
|
@@ -3315,7 +3315,7 @@ module Aws::KinesisAnalyticsV2
|
|
|
3315
3315
|
tracer: tracer
|
|
3316
3316
|
)
|
|
3317
3317
|
context[:gem_name] = 'aws-sdk-kinesisanalyticsv2'
|
|
3318
|
-
context[:gem_version] = '1.
|
|
3318
|
+
context[:gem_version] = '1.91.0'
|
|
3319
3319
|
Seahorse::Client::Request.new(handlers, context)
|
|
3320
3320
|
end
|
|
3321
3321
|
|
data/sig/client.rbs
CHANGED
|
@@ -107,45 +107,7 @@ module Aws
|
|
|
107
107
|
def add_application_input: (
|
|
108
108
|
application_name: ::String,
|
|
109
109
|
current_application_version_id: ::Integer,
|
|
110
|
-
input:
|
|
111
|
-
name_prefix: ::String,
|
|
112
|
-
input_processing_configuration: {
|
|
113
|
-
input_lambda_processor: {
|
|
114
|
-
resource_arn: ::String
|
|
115
|
-
}
|
|
116
|
-
}?,
|
|
117
|
-
kinesis_streams_input: {
|
|
118
|
-
resource_arn: ::String
|
|
119
|
-
}?,
|
|
120
|
-
kinesis_firehose_input: {
|
|
121
|
-
resource_arn: ::String
|
|
122
|
-
}?,
|
|
123
|
-
input_parallelism: {
|
|
124
|
-
count: ::Integer?
|
|
125
|
-
}?,
|
|
126
|
-
input_schema: {
|
|
127
|
-
record_format: {
|
|
128
|
-
record_format_type: ("JSON" | "CSV"),
|
|
129
|
-
mapping_parameters: {
|
|
130
|
-
json_mapping_parameters: {
|
|
131
|
-
record_row_path: ::String
|
|
132
|
-
}?,
|
|
133
|
-
csv_mapping_parameters: {
|
|
134
|
-
record_row_delimiter: ::String,
|
|
135
|
-
record_column_delimiter: ::String
|
|
136
|
-
}?
|
|
137
|
-
}?
|
|
138
|
-
},
|
|
139
|
-
record_encoding: ::String?,
|
|
140
|
-
record_columns: Array[
|
|
141
|
-
{
|
|
142
|
-
name: ::String,
|
|
143
|
-
mapping: ::String?,
|
|
144
|
-
sql_type: ::String
|
|
145
|
-
},
|
|
146
|
-
]
|
|
147
|
-
}
|
|
148
|
-
}
|
|
110
|
+
input: Params::input
|
|
149
111
|
) -> _AddApplicationInputResponseSuccess
|
|
150
112
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationInputResponseSuccess
|
|
151
113
|
|
|
@@ -179,21 +141,7 @@ module Aws
|
|
|
179
141
|
def add_application_output: (
|
|
180
142
|
application_name: ::String,
|
|
181
143
|
current_application_version_id: ::Integer,
|
|
182
|
-
output:
|
|
183
|
-
name: ::String,
|
|
184
|
-
kinesis_streams_output: {
|
|
185
|
-
resource_arn: ::String
|
|
186
|
-
}?,
|
|
187
|
-
kinesis_firehose_output: {
|
|
188
|
-
resource_arn: ::String
|
|
189
|
-
}?,
|
|
190
|
-
lambda_output: {
|
|
191
|
-
resource_arn: ::String
|
|
192
|
-
}?,
|
|
193
|
-
destination_schema: {
|
|
194
|
-
record_format_type: ("JSON" | "CSV")
|
|
195
|
-
}
|
|
196
|
-
}
|
|
144
|
+
output: Params::output
|
|
197
145
|
) -> _AddApplicationOutputResponseSuccess
|
|
198
146
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationOutputResponseSuccess
|
|
199
147
|
|
|
@@ -207,35 +155,7 @@ module Aws
|
|
|
207
155
|
def add_application_reference_data_source: (
|
|
208
156
|
application_name: ::String,
|
|
209
157
|
current_application_version_id: ::Integer,
|
|
210
|
-
reference_data_source:
|
|
211
|
-
table_name: ::String,
|
|
212
|
-
s3_reference_data_source: {
|
|
213
|
-
bucket_arn: ::String?,
|
|
214
|
-
file_key: ::String?
|
|
215
|
-
}?,
|
|
216
|
-
reference_schema: {
|
|
217
|
-
record_format: {
|
|
218
|
-
record_format_type: ("JSON" | "CSV"),
|
|
219
|
-
mapping_parameters: {
|
|
220
|
-
json_mapping_parameters: {
|
|
221
|
-
record_row_path: ::String
|
|
222
|
-
}?,
|
|
223
|
-
csv_mapping_parameters: {
|
|
224
|
-
record_row_delimiter: ::String,
|
|
225
|
-
record_column_delimiter: ::String
|
|
226
|
-
}?
|
|
227
|
-
}?
|
|
228
|
-
},
|
|
229
|
-
record_encoding: ::String?,
|
|
230
|
-
record_columns: Array[
|
|
231
|
-
{
|
|
232
|
-
name: ::String,
|
|
233
|
-
mapping: ::String?,
|
|
234
|
-
sql_type: ::String
|
|
235
|
-
},
|
|
236
|
-
]
|
|
237
|
-
}
|
|
238
|
-
}
|
|
158
|
+
reference_data_source: Params::reference_data_source
|
|
239
159
|
) -> _AddApplicationReferenceDataSourceResponseSuccess
|
|
240
160
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationReferenceDataSourceResponseSuccess
|
|
241
161
|
|
|
@@ -271,93 +191,13 @@ module Aws
|
|
|
271
191
|
?application_configuration: {
|
|
272
192
|
sql_application_configuration: {
|
|
273
193
|
inputs: Array[
|
|
274
|
-
|
|
275
|
-
name_prefix: ::String,
|
|
276
|
-
input_processing_configuration: {
|
|
277
|
-
input_lambda_processor: {
|
|
278
|
-
resource_arn: ::String
|
|
279
|
-
}
|
|
280
|
-
}?,
|
|
281
|
-
kinesis_streams_input: {
|
|
282
|
-
resource_arn: ::String
|
|
283
|
-
}?,
|
|
284
|
-
kinesis_firehose_input: {
|
|
285
|
-
resource_arn: ::String
|
|
286
|
-
}?,
|
|
287
|
-
input_parallelism: {
|
|
288
|
-
count: ::Integer?
|
|
289
|
-
}?,
|
|
290
|
-
input_schema: {
|
|
291
|
-
record_format: {
|
|
292
|
-
record_format_type: ("JSON" | "CSV"),
|
|
293
|
-
mapping_parameters: {
|
|
294
|
-
json_mapping_parameters: {
|
|
295
|
-
record_row_path: ::String
|
|
296
|
-
}?,
|
|
297
|
-
csv_mapping_parameters: {
|
|
298
|
-
record_row_delimiter: ::String,
|
|
299
|
-
record_column_delimiter: ::String
|
|
300
|
-
}?
|
|
301
|
-
}?
|
|
302
|
-
},
|
|
303
|
-
record_encoding: ::String?,
|
|
304
|
-
record_columns: Array[
|
|
305
|
-
{
|
|
306
|
-
name: ::String,
|
|
307
|
-
mapping: ::String?,
|
|
308
|
-
sql_type: ::String
|
|
309
|
-
},
|
|
310
|
-
]
|
|
311
|
-
}
|
|
312
|
-
},
|
|
194
|
+
Params::input
|
|
313
195
|
]?,
|
|
314
196
|
outputs: Array[
|
|
315
|
-
|
|
316
|
-
name: ::String,
|
|
317
|
-
kinesis_streams_output: {
|
|
318
|
-
resource_arn: ::String
|
|
319
|
-
}?,
|
|
320
|
-
kinesis_firehose_output: {
|
|
321
|
-
resource_arn: ::String
|
|
322
|
-
}?,
|
|
323
|
-
lambda_output: {
|
|
324
|
-
resource_arn: ::String
|
|
325
|
-
}?,
|
|
326
|
-
destination_schema: {
|
|
327
|
-
record_format_type: ("JSON" | "CSV")
|
|
328
|
-
}
|
|
329
|
-
},
|
|
197
|
+
Params::output
|
|
330
198
|
]?,
|
|
331
199
|
reference_data_sources: Array[
|
|
332
|
-
|
|
333
|
-
table_name: ::String,
|
|
334
|
-
s3_reference_data_source: {
|
|
335
|
-
bucket_arn: ::String?,
|
|
336
|
-
file_key: ::String?
|
|
337
|
-
}?,
|
|
338
|
-
reference_schema: {
|
|
339
|
-
record_format: {
|
|
340
|
-
record_format_type: ("JSON" | "CSV"),
|
|
341
|
-
mapping_parameters: {
|
|
342
|
-
json_mapping_parameters: {
|
|
343
|
-
record_row_path: ::String
|
|
344
|
-
}?,
|
|
345
|
-
csv_mapping_parameters: {
|
|
346
|
-
record_row_delimiter: ::String,
|
|
347
|
-
record_column_delimiter: ::String
|
|
348
|
-
}?
|
|
349
|
-
}?
|
|
350
|
-
},
|
|
351
|
-
record_encoding: ::String?,
|
|
352
|
-
record_columns: Array[
|
|
353
|
-
{
|
|
354
|
-
name: ::String,
|
|
355
|
-
mapping: ::String?,
|
|
356
|
-
sql_type: ::String
|
|
357
|
-
},
|
|
358
|
-
]
|
|
359
|
-
}
|
|
360
|
-
},
|
|
200
|
+
Params::reference_data_source
|
|
361
201
|
]?
|
|
362
202
|
}?,
|
|
363
203
|
flink_application_configuration: {
|
|
@@ -384,7 +224,7 @@ module Aws
|
|
|
384
224
|
{
|
|
385
225
|
property_group_id: ::String,
|
|
386
226
|
property_map: Hash[::String, ::String]
|
|
387
|
-
}
|
|
227
|
+
}
|
|
388
228
|
]
|
|
389
229
|
}?,
|
|
390
230
|
application_code_configuration: {
|
|
@@ -409,7 +249,7 @@ module Aws
|
|
|
409
249
|
{
|
|
410
250
|
subnet_ids: Array[::String],
|
|
411
251
|
security_group_ids: Array[::String]
|
|
412
|
-
}
|
|
252
|
+
}
|
|
413
253
|
]?,
|
|
414
254
|
zeppelin_application_configuration: {
|
|
415
255
|
monitoring_configuration: {
|
|
@@ -427,19 +267,7 @@ module Aws
|
|
|
427
267
|
}
|
|
428
268
|
}?,
|
|
429
269
|
custom_artifacts_configuration: Array[
|
|
430
|
-
|
|
431
|
-
artifact_type: ("UDF" | "DEPENDENCY_JAR"),
|
|
432
|
-
s3_content_location: {
|
|
433
|
-
bucket_arn: ::String,
|
|
434
|
-
file_key: ::String,
|
|
435
|
-
object_version: ::String?
|
|
436
|
-
}?,
|
|
437
|
-
maven_reference: {
|
|
438
|
-
group_id: ::String,
|
|
439
|
-
artifact_id: ::String,
|
|
440
|
-
version: ::String
|
|
441
|
-
}?
|
|
442
|
-
},
|
|
270
|
+
Params::custom_artifact_configuration
|
|
443
271
|
]?
|
|
444
272
|
}?,
|
|
445
273
|
application_encryption_configuration: {
|
|
@@ -450,13 +278,13 @@ module Aws
|
|
|
450
278
|
?cloud_watch_logging_options: Array[
|
|
451
279
|
{
|
|
452
280
|
log_stream_arn: ::String
|
|
453
|
-
}
|
|
281
|
+
}
|
|
454
282
|
],
|
|
455
283
|
?tags: Array[
|
|
456
284
|
{
|
|
457
285
|
key: ::String,
|
|
458
286
|
value: ::String?
|
|
459
|
-
}
|
|
287
|
+
}
|
|
460
288
|
],
|
|
461
289
|
?application_mode: ("STREAMING" | "INTERACTIVE")
|
|
462
290
|
) -> _CreateApplicationResponseSuccess
|
|
@@ -737,7 +565,7 @@ module Aws
|
|
|
737
565
|
input_starting_position_configuration: {
|
|
738
566
|
input_starting_position: ("NOW" | "TRIM_HORIZON" | "LAST_STOPPED_POINT")?
|
|
739
567
|
}
|
|
740
|
-
}
|
|
568
|
+
}
|
|
741
569
|
]?,
|
|
742
570
|
application_restore_configuration: {
|
|
743
571
|
application_restore_type: ("SKIP_RESTORE_FROM_SNAPSHOT" | "RESTORE_FROM_LATEST_SNAPSHOT" | "RESTORE_FROM_CUSTOM_SNAPSHOT"),
|
|
@@ -768,7 +596,7 @@ module Aws
|
|
|
768
596
|
{
|
|
769
597
|
key: ::String,
|
|
770
598
|
value: ::String?
|
|
771
|
-
}
|
|
599
|
+
}
|
|
772
600
|
]
|
|
773
601
|
) -> _TagResourceResponseSuccess
|
|
774
602
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
|
@@ -810,31 +638,20 @@ module Aws
|
|
|
810
638
|
resource_arn_update: ::String
|
|
811
639
|
}?,
|
|
812
640
|
input_schema_update: {
|
|
813
|
-
record_format_update:
|
|
814
|
-
record_format_type: ("JSON" | "CSV"),
|
|
815
|
-
mapping_parameters: {
|
|
816
|
-
json_mapping_parameters: {
|
|
817
|
-
record_row_path: ::String
|
|
818
|
-
}?,
|
|
819
|
-
csv_mapping_parameters: {
|
|
820
|
-
record_row_delimiter: ::String,
|
|
821
|
-
record_column_delimiter: ::String
|
|
822
|
-
}?
|
|
823
|
-
}?
|
|
824
|
-
}?,
|
|
641
|
+
record_format_update: Params::record_format?,
|
|
825
642
|
record_encoding_update: ::String?,
|
|
826
643
|
record_column_updates: Array[
|
|
827
644
|
{
|
|
828
645
|
name: ::String,
|
|
829
646
|
mapping: ::String?,
|
|
830
647
|
sql_type: ::String
|
|
831
|
-
}
|
|
648
|
+
}
|
|
832
649
|
]?
|
|
833
650
|
}?,
|
|
834
651
|
input_parallelism_update: {
|
|
835
652
|
count_update: ::Integer
|
|
836
653
|
}?
|
|
837
|
-
}
|
|
654
|
+
}
|
|
838
655
|
]?,
|
|
839
656
|
output_updates: Array[
|
|
840
657
|
{
|
|
@@ -852,7 +669,7 @@ module Aws
|
|
|
852
669
|
destination_schema_update: {
|
|
853
670
|
record_format_type: ("JSON" | "CSV")
|
|
854
671
|
}?
|
|
855
|
-
}
|
|
672
|
+
}
|
|
856
673
|
]?,
|
|
857
674
|
reference_data_source_updates: Array[
|
|
858
675
|
{
|
|
@@ -862,29 +679,8 @@ module Aws
|
|
|
862
679
|
bucket_arn_update: ::String?,
|
|
863
680
|
file_key_update: ::String?
|
|
864
681
|
}?,
|
|
865
|
-
reference_schema_update:
|
|
866
|
-
|
|
867
|
-
record_format_type: ("JSON" | "CSV"),
|
|
868
|
-
mapping_parameters: {
|
|
869
|
-
json_mapping_parameters: {
|
|
870
|
-
record_row_path: ::String
|
|
871
|
-
}?,
|
|
872
|
-
csv_mapping_parameters: {
|
|
873
|
-
record_row_delimiter: ::String,
|
|
874
|
-
record_column_delimiter: ::String
|
|
875
|
-
}?
|
|
876
|
-
}?
|
|
877
|
-
},
|
|
878
|
-
record_encoding: ::String?,
|
|
879
|
-
record_columns: Array[
|
|
880
|
-
{
|
|
881
|
-
name: ::String,
|
|
882
|
-
mapping: ::String?,
|
|
883
|
-
sql_type: ::String
|
|
884
|
-
},
|
|
885
|
-
]
|
|
886
|
-
}?
|
|
887
|
-
},
|
|
682
|
+
reference_schema_update: Params::source_schema?
|
|
683
|
+
}
|
|
888
684
|
]?
|
|
889
685
|
}?,
|
|
890
686
|
application_code_configuration_update: {
|
|
@@ -923,7 +719,7 @@ module Aws
|
|
|
923
719
|
{
|
|
924
720
|
property_group_id: ::String,
|
|
925
721
|
property_map: Hash[::String, ::String]
|
|
926
|
-
}
|
|
722
|
+
}
|
|
927
723
|
]
|
|
928
724
|
}?,
|
|
929
725
|
application_snapshot_configuration_update: {
|
|
@@ -937,7 +733,7 @@ module Aws
|
|
|
937
733
|
vpc_configuration_id: ::String,
|
|
938
734
|
subnet_id_updates: Array[::String]?,
|
|
939
735
|
security_group_id_updates: Array[::String]?
|
|
940
|
-
}
|
|
736
|
+
}
|
|
941
737
|
]?,
|
|
942
738
|
zeppelin_application_configuration_update: {
|
|
943
739
|
monitoring_configuration_update: {
|
|
@@ -955,19 +751,7 @@ module Aws
|
|
|
955
751
|
}?
|
|
956
752
|
}?,
|
|
957
753
|
custom_artifacts_configuration_update: Array[
|
|
958
|
-
|
|
959
|
-
artifact_type: ("UDF" | "DEPENDENCY_JAR"),
|
|
960
|
-
s3_content_location: {
|
|
961
|
-
bucket_arn: ::String,
|
|
962
|
-
file_key: ::String,
|
|
963
|
-
object_version: ::String?
|
|
964
|
-
}?,
|
|
965
|
-
maven_reference: {
|
|
966
|
-
group_id: ::String,
|
|
967
|
-
artifact_id: ::String,
|
|
968
|
-
version: ::String
|
|
969
|
-
}?
|
|
970
|
-
},
|
|
754
|
+
Params::custom_artifact_configuration
|
|
971
755
|
]?
|
|
972
756
|
}?,
|
|
973
757
|
application_encryption_configuration_update: {
|
|
@@ -989,7 +773,7 @@ module Aws
|
|
|
989
773
|
{
|
|
990
774
|
cloud_watch_logging_option_id: ::String,
|
|
991
775
|
log_stream_arn_update: ::String?
|
|
992
|
-
}
|
|
776
|
+
}
|
|
993
777
|
],
|
|
994
778
|
?conditional_token: ::String,
|
|
995
779
|
?runtime_environment_update: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18" | "FLINK-1_19" | "FLINK-1_20" | "FLINK-2_2")
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
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 KinesisAnalyticsV2
|
|
10
|
+
module Params
|
|
11
|
+
type mapping_parameters = {
|
|
12
|
+
json_mapping_parameters: {
|
|
13
|
+
record_row_path: ::String
|
|
14
|
+
}?,
|
|
15
|
+
csv_mapping_parameters: {
|
|
16
|
+
record_row_delimiter: ::String,
|
|
17
|
+
record_column_delimiter: ::String
|
|
18
|
+
}?
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
type record_format = {
|
|
22
|
+
record_format_type: ("JSON" | "CSV"),
|
|
23
|
+
mapping_parameters: Params::mapping_parameters?
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
type source_schema = {
|
|
27
|
+
record_format: Params::record_format,
|
|
28
|
+
record_encoding: ::String?,
|
|
29
|
+
record_columns: Array[
|
|
30
|
+
{
|
|
31
|
+
name: ::String,
|
|
32
|
+
mapping: ::String?,
|
|
33
|
+
sql_type: ::String
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
type input = {
|
|
39
|
+
name_prefix: ::String,
|
|
40
|
+
input_processing_configuration: {
|
|
41
|
+
input_lambda_processor: {
|
|
42
|
+
resource_arn: ::String
|
|
43
|
+
}
|
|
44
|
+
}?,
|
|
45
|
+
kinesis_streams_input: {
|
|
46
|
+
resource_arn: ::String
|
|
47
|
+
}?,
|
|
48
|
+
kinesis_firehose_input: {
|
|
49
|
+
resource_arn: ::String
|
|
50
|
+
}?,
|
|
51
|
+
input_parallelism: {
|
|
52
|
+
count: ::Integer?
|
|
53
|
+
}?,
|
|
54
|
+
input_schema: Params::source_schema
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
type output = {
|
|
58
|
+
name: ::String,
|
|
59
|
+
kinesis_streams_output: {
|
|
60
|
+
resource_arn: ::String
|
|
61
|
+
}?,
|
|
62
|
+
kinesis_firehose_output: {
|
|
63
|
+
resource_arn: ::String
|
|
64
|
+
}?,
|
|
65
|
+
lambda_output: {
|
|
66
|
+
resource_arn: ::String
|
|
67
|
+
}?,
|
|
68
|
+
destination_schema: {
|
|
69
|
+
record_format_type: ("JSON" | "CSV")
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
type reference_data_source = {
|
|
74
|
+
table_name: ::String,
|
|
75
|
+
s3_reference_data_source: {
|
|
76
|
+
bucket_arn: ::String?,
|
|
77
|
+
file_key: ::String?
|
|
78
|
+
}?,
|
|
79
|
+
reference_schema: Params::source_schema
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
type custom_artifact_configuration = {
|
|
83
|
+
artifact_type: ("UDF" | "DEPENDENCY_JAR"),
|
|
84
|
+
s3_content_location: {
|
|
85
|
+
bucket_arn: ::String,
|
|
86
|
+
file_key: ::String,
|
|
87
|
+
object_version: ::String?
|
|
88
|
+
}?,
|
|
89
|
+
maven_reference: {
|
|
90
|
+
group_id: ::String,
|
|
91
|
+
artifact_id: ::String,
|
|
92
|
+
version: ::String
|
|
93
|
+
}?
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-kinesisanalyticsv2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.91.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-kinesisanalyticsv2/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|