aws-sdk-personalize 1.57.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1020 @@
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 Personalize
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/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 _CreateBatchInferenceJobResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBatchInferenceJobResponse]
78
+ def batch_inference_job_arn: () -> ::String
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_batch_inference_job-instance_method
81
+ def create_batch_inference_job: (
82
+ job_name: ::String,
83
+ solution_version_arn: ::String,
84
+ ?filter_arn: ::String,
85
+ ?num_results: ::Integer,
86
+ job_input: {
87
+ s3_data_source: {
88
+ path: ::String,
89
+ kms_key_arn: ::String?
90
+ }
91
+ },
92
+ job_output: {
93
+ s3_data_destination: {
94
+ path: ::String,
95
+ kms_key_arn: ::String?
96
+ }
97
+ },
98
+ role_arn: ::String,
99
+ ?batch_inference_job_config: {
100
+ item_exploration_config: Hash[::String, ::String]?
101
+ },
102
+ ?tags: Array[
103
+ {
104
+ tag_key: ::String,
105
+ tag_value: ::String
106
+ },
107
+ ],
108
+ ?batch_inference_job_mode: ("BATCH_INFERENCE" | "THEME_GENERATION"),
109
+ ?theme_generation_config: {
110
+ fields_for_theme_generation: {
111
+ item_name: ::String
112
+ }
113
+ }
114
+ ) -> _CreateBatchInferenceJobResponseSuccess
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBatchInferenceJobResponseSuccess
116
+
117
+ interface _CreateBatchSegmentJobResponseSuccess
118
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBatchSegmentJobResponse]
119
+ def batch_segment_job_arn: () -> ::String
120
+ end
121
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_batch_segment_job-instance_method
122
+ def create_batch_segment_job: (
123
+ job_name: ::String,
124
+ solution_version_arn: ::String,
125
+ ?filter_arn: ::String,
126
+ ?num_results: ::Integer,
127
+ job_input: {
128
+ s3_data_source: {
129
+ path: ::String,
130
+ kms_key_arn: ::String?
131
+ }
132
+ },
133
+ job_output: {
134
+ s3_data_destination: {
135
+ path: ::String,
136
+ kms_key_arn: ::String?
137
+ }
138
+ },
139
+ role_arn: ::String,
140
+ ?tags: Array[
141
+ {
142
+ tag_key: ::String,
143
+ tag_value: ::String
144
+ },
145
+ ]
146
+ ) -> _CreateBatchSegmentJobResponseSuccess
147
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBatchSegmentJobResponseSuccess
148
+
149
+ interface _CreateCampaignResponseSuccess
150
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCampaignResponse]
151
+ def campaign_arn: () -> ::String
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_campaign-instance_method
154
+ def create_campaign: (
155
+ name: ::String,
156
+ solution_version_arn: ::String,
157
+ ?min_provisioned_tps: ::Integer,
158
+ ?campaign_config: {
159
+ item_exploration_config: Hash[::String, ::String]?,
160
+ enable_metadata_with_recommendations: bool?
161
+ },
162
+ ?tags: Array[
163
+ {
164
+ tag_key: ::String,
165
+ tag_value: ::String
166
+ },
167
+ ]
168
+ ) -> _CreateCampaignResponseSuccess
169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCampaignResponseSuccess
170
+
171
+ interface _CreateDatasetResponseSuccess
172
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetResponse]
173
+ def dataset_arn: () -> ::String
174
+ end
175
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_dataset-instance_method
176
+ def create_dataset: (
177
+ name: ::String,
178
+ schema_arn: ::String,
179
+ dataset_group_arn: ::String,
180
+ dataset_type: ::String,
181
+ ?tags: Array[
182
+ {
183
+ tag_key: ::String,
184
+ tag_value: ::String
185
+ },
186
+ ]
187
+ ) -> _CreateDatasetResponseSuccess
188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
189
+
190
+ interface _CreateDatasetExportJobResponseSuccess
191
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetExportJobResponse]
192
+ def dataset_export_job_arn: () -> ::String
193
+ end
194
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_dataset_export_job-instance_method
195
+ def create_dataset_export_job: (
196
+ job_name: ::String,
197
+ dataset_arn: ::String,
198
+ ?ingestion_mode: ("BULK" | "PUT" | "ALL"),
199
+ role_arn: ::String,
200
+ job_output: {
201
+ s3_data_destination: {
202
+ path: ::String,
203
+ kms_key_arn: ::String?
204
+ }
205
+ },
206
+ ?tags: Array[
207
+ {
208
+ tag_key: ::String,
209
+ tag_value: ::String
210
+ },
211
+ ]
212
+ ) -> _CreateDatasetExportJobResponseSuccess
213
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetExportJobResponseSuccess
214
+
215
+ interface _CreateDatasetGroupResponseSuccess
216
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetGroupResponse]
217
+ def dataset_group_arn: () -> ::String
218
+ def domain: () -> ("ECOMMERCE" | "VIDEO_ON_DEMAND")
219
+ end
220
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_dataset_group-instance_method
221
+ def create_dataset_group: (
222
+ name: ::String,
223
+ ?role_arn: ::String,
224
+ ?kms_key_arn: ::String,
225
+ ?domain: ("ECOMMERCE" | "VIDEO_ON_DEMAND"),
226
+ ?tags: Array[
227
+ {
228
+ tag_key: ::String,
229
+ tag_value: ::String
230
+ },
231
+ ]
232
+ ) -> _CreateDatasetGroupResponseSuccess
233
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetGroupResponseSuccess
234
+
235
+ interface _CreateDatasetImportJobResponseSuccess
236
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetImportJobResponse]
237
+ def dataset_import_job_arn: () -> ::String
238
+ end
239
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_dataset_import_job-instance_method
240
+ def create_dataset_import_job: (
241
+ job_name: ::String,
242
+ dataset_arn: ::String,
243
+ data_source: {
244
+ data_location: ::String?
245
+ },
246
+ role_arn: ::String,
247
+ ?tags: Array[
248
+ {
249
+ tag_key: ::String,
250
+ tag_value: ::String
251
+ },
252
+ ],
253
+ ?import_mode: ("FULL" | "INCREMENTAL"),
254
+ ?publish_attribution_metrics_to_s3: bool
255
+ ) -> _CreateDatasetImportJobResponseSuccess
256
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetImportJobResponseSuccess
257
+
258
+ interface _CreateEventTrackerResponseSuccess
259
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventTrackerResponse]
260
+ def event_tracker_arn: () -> ::String
261
+ def tracking_id: () -> ::String
262
+ end
263
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_event_tracker-instance_method
264
+ def create_event_tracker: (
265
+ name: ::String,
266
+ dataset_group_arn: ::String,
267
+ ?tags: Array[
268
+ {
269
+ tag_key: ::String,
270
+ tag_value: ::String
271
+ },
272
+ ]
273
+ ) -> _CreateEventTrackerResponseSuccess
274
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventTrackerResponseSuccess
275
+
276
+ interface _CreateFilterResponseSuccess
277
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFilterResponse]
278
+ def filter_arn: () -> ::String
279
+ end
280
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_filter-instance_method
281
+ def create_filter: (
282
+ name: ::String,
283
+ dataset_group_arn: ::String,
284
+ filter_expression: ::String,
285
+ ?tags: Array[
286
+ {
287
+ tag_key: ::String,
288
+ tag_value: ::String
289
+ },
290
+ ]
291
+ ) -> _CreateFilterResponseSuccess
292
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFilterResponseSuccess
293
+
294
+ interface _CreateMetricAttributionResponseSuccess
295
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMetricAttributionResponse]
296
+ def metric_attribution_arn: () -> ::String
297
+ end
298
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_metric_attribution-instance_method
299
+ def create_metric_attribution: (
300
+ name: ::String,
301
+ dataset_group_arn: ::String,
302
+ metrics: Array[
303
+ {
304
+ event_type: ::String,
305
+ metric_name: ::String,
306
+ expression: ::String
307
+ },
308
+ ],
309
+ metrics_output_config: {
310
+ s3_data_destination: {
311
+ path: ::String,
312
+ kms_key_arn: ::String?
313
+ }?,
314
+ role_arn: ::String
315
+ }
316
+ ) -> _CreateMetricAttributionResponseSuccess
317
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMetricAttributionResponseSuccess
318
+
319
+ interface _CreateRecommenderResponseSuccess
320
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRecommenderResponse]
321
+ def recommender_arn: () -> ::String
322
+ end
323
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_recommender-instance_method
324
+ def create_recommender: (
325
+ name: ::String,
326
+ dataset_group_arn: ::String,
327
+ recipe_arn: ::String,
328
+ ?recommender_config: {
329
+ item_exploration_config: Hash[::String, ::String]?,
330
+ min_recommendation_requests_per_second: ::Integer?,
331
+ training_data_config: {
332
+ excluded_dataset_columns: Hash[::String, Array[::String]]?
333
+ }?,
334
+ enable_metadata_with_recommendations: bool?
335
+ },
336
+ ?tags: Array[
337
+ {
338
+ tag_key: ::String,
339
+ tag_value: ::String
340
+ },
341
+ ]
342
+ ) -> _CreateRecommenderResponseSuccess
343
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRecommenderResponseSuccess
344
+
345
+ interface _CreateSchemaResponseSuccess
346
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSchemaResponse]
347
+ def schema_arn: () -> ::String
348
+ end
349
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_schema-instance_method
350
+ def create_schema: (
351
+ name: ::String,
352
+ schema: ::String,
353
+ ?domain: ("ECOMMERCE" | "VIDEO_ON_DEMAND")
354
+ ) -> _CreateSchemaResponseSuccess
355
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSchemaResponseSuccess
356
+
357
+ interface _CreateSolutionResponseSuccess
358
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSolutionResponse]
359
+ def solution_arn: () -> ::String
360
+ end
361
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_solution-instance_method
362
+ def create_solution: (
363
+ name: ::String,
364
+ ?perform_hpo: bool,
365
+ ?perform_auto_ml: bool,
366
+ ?recipe_arn: ::String,
367
+ dataset_group_arn: ::String,
368
+ ?event_type: ::String,
369
+ ?solution_config: {
370
+ event_value_threshold: ::String?,
371
+ hpo_config: {
372
+ hpo_objective: {
373
+ type: ::String?,
374
+ metric_name: ::String?,
375
+ metric_regex: ::String?
376
+ }?,
377
+ hpo_resource_config: {
378
+ max_number_of_training_jobs: ::String?,
379
+ max_parallel_training_jobs: ::String?
380
+ }?,
381
+ algorithm_hyper_parameter_ranges: {
382
+ integer_hyper_parameter_ranges: Array[
383
+ {
384
+ name: ::String?,
385
+ min_value: ::Integer?,
386
+ max_value: ::Integer?
387
+ },
388
+ ]?,
389
+ continuous_hyper_parameter_ranges: Array[
390
+ {
391
+ name: ::String?,
392
+ min_value: ::Float?,
393
+ max_value: ::Float?
394
+ },
395
+ ]?,
396
+ categorical_hyper_parameter_ranges: Array[
397
+ {
398
+ name: ::String?,
399
+ values: Array[::String]?
400
+ },
401
+ ]?
402
+ }?
403
+ }?,
404
+ algorithm_hyper_parameters: Hash[::String, ::String]?,
405
+ feature_transformation_parameters: Hash[::String, ::String]?,
406
+ auto_ml_config: {
407
+ metric_name: ::String?,
408
+ recipe_list: Array[::String]?
409
+ }?,
410
+ optimization_objective: {
411
+ item_attribute: ::String?,
412
+ objective_sensitivity: ("LOW" | "MEDIUM" | "HIGH" | "OFF")?
413
+ }?,
414
+ training_data_config: {
415
+ excluded_dataset_columns: Hash[::String, Array[::String]]?
416
+ }?
417
+ },
418
+ ?tags: Array[
419
+ {
420
+ tag_key: ::String,
421
+ tag_value: ::String
422
+ },
423
+ ]
424
+ ) -> _CreateSolutionResponseSuccess
425
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSolutionResponseSuccess
426
+
427
+ interface _CreateSolutionVersionResponseSuccess
428
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSolutionVersionResponse]
429
+ def solution_version_arn: () -> ::String
430
+ end
431
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#create_solution_version-instance_method
432
+ def create_solution_version: (
433
+ ?name: ::String,
434
+ solution_arn: ::String,
435
+ ?training_mode: ("FULL" | "UPDATE"),
436
+ ?tags: Array[
437
+ {
438
+ tag_key: ::String,
439
+ tag_value: ::String
440
+ },
441
+ ]
442
+ ) -> _CreateSolutionVersionResponseSuccess
443
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSolutionVersionResponseSuccess
444
+
445
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_campaign-instance_method
446
+ def delete_campaign: (
447
+ campaign_arn: ::String
448
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
449
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
450
+
451
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_dataset-instance_method
452
+ def delete_dataset: (
453
+ dataset_arn: ::String
454
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
455
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
456
+
457
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_dataset_group-instance_method
458
+ def delete_dataset_group: (
459
+ dataset_group_arn: ::String
460
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
461
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
462
+
463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_event_tracker-instance_method
464
+ def delete_event_tracker: (
465
+ event_tracker_arn: ::String
466
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
467
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
468
+
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_filter-instance_method
470
+ def delete_filter: (
471
+ filter_arn: ::String
472
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
473
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
474
+
475
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_metric_attribution-instance_method
476
+ def delete_metric_attribution: (
477
+ metric_attribution_arn: ::String
478
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
479
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
480
+
481
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_recommender-instance_method
482
+ def delete_recommender: (
483
+ recommender_arn: ::String
484
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
485
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
486
+
487
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_schema-instance_method
488
+ def delete_schema: (
489
+ schema_arn: ::String
490
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
491
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
492
+
493
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#delete_solution-instance_method
494
+ def delete_solution: (
495
+ solution_arn: ::String
496
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
498
+
499
+ interface _DescribeAlgorithmResponseSuccess
500
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAlgorithmResponse]
501
+ def algorithm: () -> Types::Algorithm
502
+ end
503
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_algorithm-instance_method
504
+ def describe_algorithm: (
505
+ algorithm_arn: ::String
506
+ ) -> _DescribeAlgorithmResponseSuccess
507
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAlgorithmResponseSuccess
508
+
509
+ interface _DescribeBatchInferenceJobResponseSuccess
510
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBatchInferenceJobResponse]
511
+ def batch_inference_job: () -> Types::BatchInferenceJob
512
+ end
513
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_batch_inference_job-instance_method
514
+ def describe_batch_inference_job: (
515
+ batch_inference_job_arn: ::String
516
+ ) -> _DescribeBatchInferenceJobResponseSuccess
517
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBatchInferenceJobResponseSuccess
518
+
519
+ interface _DescribeBatchSegmentJobResponseSuccess
520
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBatchSegmentJobResponse]
521
+ def batch_segment_job: () -> Types::BatchSegmentJob
522
+ end
523
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_batch_segment_job-instance_method
524
+ def describe_batch_segment_job: (
525
+ batch_segment_job_arn: ::String
526
+ ) -> _DescribeBatchSegmentJobResponseSuccess
527
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBatchSegmentJobResponseSuccess
528
+
529
+ interface _DescribeCampaignResponseSuccess
530
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCampaignResponse]
531
+ def campaign: () -> Types::Campaign
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_campaign-instance_method
534
+ def describe_campaign: (
535
+ campaign_arn: ::String
536
+ ) -> _DescribeCampaignResponseSuccess
537
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCampaignResponseSuccess
538
+
539
+ interface _DescribeDatasetResponseSuccess
540
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatasetResponse]
541
+ def dataset: () -> Types::Dataset
542
+ end
543
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_dataset-instance_method
544
+ def describe_dataset: (
545
+ dataset_arn: ::String
546
+ ) -> _DescribeDatasetResponseSuccess
547
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatasetResponseSuccess
548
+
549
+ interface _DescribeDatasetExportJobResponseSuccess
550
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatasetExportJobResponse]
551
+ def dataset_export_job: () -> Types::DatasetExportJob
552
+ end
553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_dataset_export_job-instance_method
554
+ def describe_dataset_export_job: (
555
+ dataset_export_job_arn: ::String
556
+ ) -> _DescribeDatasetExportJobResponseSuccess
557
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatasetExportJobResponseSuccess
558
+
559
+ interface _DescribeDatasetGroupResponseSuccess
560
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatasetGroupResponse]
561
+ def dataset_group: () -> Types::DatasetGroup
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_dataset_group-instance_method
564
+ def describe_dataset_group: (
565
+ dataset_group_arn: ::String
566
+ ) -> _DescribeDatasetGroupResponseSuccess
567
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatasetGroupResponseSuccess
568
+
569
+ interface _DescribeDatasetImportJobResponseSuccess
570
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatasetImportJobResponse]
571
+ def dataset_import_job: () -> Types::DatasetImportJob
572
+ end
573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_dataset_import_job-instance_method
574
+ def describe_dataset_import_job: (
575
+ dataset_import_job_arn: ::String
576
+ ) -> _DescribeDatasetImportJobResponseSuccess
577
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatasetImportJobResponseSuccess
578
+
579
+ interface _DescribeEventTrackerResponseSuccess
580
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventTrackerResponse]
581
+ def event_tracker: () -> Types::EventTracker
582
+ end
583
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_event_tracker-instance_method
584
+ def describe_event_tracker: (
585
+ event_tracker_arn: ::String
586
+ ) -> _DescribeEventTrackerResponseSuccess
587
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventTrackerResponseSuccess
588
+
589
+ interface _DescribeFeatureTransformationResponseSuccess
590
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFeatureTransformationResponse]
591
+ def feature_transformation: () -> Types::FeatureTransformation
592
+ end
593
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_feature_transformation-instance_method
594
+ def describe_feature_transformation: (
595
+ feature_transformation_arn: ::String
596
+ ) -> _DescribeFeatureTransformationResponseSuccess
597
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFeatureTransformationResponseSuccess
598
+
599
+ interface _DescribeFilterResponseSuccess
600
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFilterResponse]
601
+ def filter: () -> Types::Filter
602
+ end
603
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_filter-instance_method
604
+ def describe_filter: (
605
+ filter_arn: ::String
606
+ ) -> _DescribeFilterResponseSuccess
607
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFilterResponseSuccess
608
+
609
+ interface _DescribeMetricAttributionResponseSuccess
610
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMetricAttributionResponse]
611
+ def metric_attribution: () -> Types::MetricAttribution
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_metric_attribution-instance_method
614
+ def describe_metric_attribution: (
615
+ metric_attribution_arn: ::String
616
+ ) -> _DescribeMetricAttributionResponseSuccess
617
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMetricAttributionResponseSuccess
618
+
619
+ interface _DescribeRecipeResponseSuccess
620
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRecipeResponse]
621
+ def recipe: () -> Types::Recipe
622
+ end
623
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_recipe-instance_method
624
+ def describe_recipe: (
625
+ recipe_arn: ::String
626
+ ) -> _DescribeRecipeResponseSuccess
627
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRecipeResponseSuccess
628
+
629
+ interface _DescribeRecommenderResponseSuccess
630
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRecommenderResponse]
631
+ def recommender: () -> Types::Recommender
632
+ end
633
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_recommender-instance_method
634
+ def describe_recommender: (
635
+ recommender_arn: ::String
636
+ ) -> _DescribeRecommenderResponseSuccess
637
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRecommenderResponseSuccess
638
+
639
+ interface _DescribeSchemaResponseSuccess
640
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSchemaResponse]
641
+ def schema: () -> Types::DatasetSchema
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_schema-instance_method
644
+ def describe_schema: (
645
+ schema_arn: ::String
646
+ ) -> _DescribeSchemaResponseSuccess
647
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSchemaResponseSuccess
648
+
649
+ interface _DescribeSolutionResponseSuccess
650
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSolutionResponse]
651
+ def solution: () -> Types::Solution
652
+ end
653
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_solution-instance_method
654
+ def describe_solution: (
655
+ solution_arn: ::String
656
+ ) -> _DescribeSolutionResponseSuccess
657
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSolutionResponseSuccess
658
+
659
+ interface _DescribeSolutionVersionResponseSuccess
660
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSolutionVersionResponse]
661
+ def solution_version: () -> Types::SolutionVersion
662
+ end
663
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#describe_solution_version-instance_method
664
+ def describe_solution_version: (
665
+ solution_version_arn: ::String
666
+ ) -> _DescribeSolutionVersionResponseSuccess
667
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSolutionVersionResponseSuccess
668
+
669
+ interface _GetSolutionMetricsResponseSuccess
670
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSolutionMetricsResponse]
671
+ def solution_version_arn: () -> ::String
672
+ def metrics: () -> ::Hash[::String, ::Float]
673
+ end
674
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#get_solution_metrics-instance_method
675
+ def get_solution_metrics: (
676
+ solution_version_arn: ::String
677
+ ) -> _GetSolutionMetricsResponseSuccess
678
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSolutionMetricsResponseSuccess
679
+
680
+ interface _ListBatchInferenceJobsResponseSuccess
681
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBatchInferenceJobsResponse]
682
+ def batch_inference_jobs: () -> ::Array[Types::BatchInferenceJobSummary]
683
+ def next_token: () -> ::String
684
+ end
685
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_batch_inference_jobs-instance_method
686
+ def list_batch_inference_jobs: (
687
+ ?solution_version_arn: ::String,
688
+ ?next_token: ::String,
689
+ ?max_results: ::Integer
690
+ ) -> _ListBatchInferenceJobsResponseSuccess
691
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBatchInferenceJobsResponseSuccess
692
+
693
+ interface _ListBatchSegmentJobsResponseSuccess
694
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBatchSegmentJobsResponse]
695
+ def batch_segment_jobs: () -> ::Array[Types::BatchSegmentJobSummary]
696
+ def next_token: () -> ::String
697
+ end
698
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_batch_segment_jobs-instance_method
699
+ def list_batch_segment_jobs: (
700
+ ?solution_version_arn: ::String,
701
+ ?next_token: ::String,
702
+ ?max_results: ::Integer
703
+ ) -> _ListBatchSegmentJobsResponseSuccess
704
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBatchSegmentJobsResponseSuccess
705
+
706
+ interface _ListCampaignsResponseSuccess
707
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCampaignsResponse]
708
+ def campaigns: () -> ::Array[Types::CampaignSummary]
709
+ def next_token: () -> ::String
710
+ end
711
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_campaigns-instance_method
712
+ def list_campaigns: (
713
+ ?solution_arn: ::String,
714
+ ?next_token: ::String,
715
+ ?max_results: ::Integer
716
+ ) -> _ListCampaignsResponseSuccess
717
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCampaignsResponseSuccess
718
+
719
+ interface _ListDatasetExportJobsResponseSuccess
720
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetExportJobsResponse]
721
+ def dataset_export_jobs: () -> ::Array[Types::DatasetExportJobSummary]
722
+ def next_token: () -> ::String
723
+ end
724
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_dataset_export_jobs-instance_method
725
+ def list_dataset_export_jobs: (
726
+ ?dataset_arn: ::String,
727
+ ?next_token: ::String,
728
+ ?max_results: ::Integer
729
+ ) -> _ListDatasetExportJobsResponseSuccess
730
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetExportJobsResponseSuccess
731
+
732
+ interface _ListDatasetGroupsResponseSuccess
733
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetGroupsResponse]
734
+ def dataset_groups: () -> ::Array[Types::DatasetGroupSummary]
735
+ def next_token: () -> ::String
736
+ end
737
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_dataset_groups-instance_method
738
+ def list_dataset_groups: (
739
+ ?next_token: ::String,
740
+ ?max_results: ::Integer
741
+ ) -> _ListDatasetGroupsResponseSuccess
742
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetGroupsResponseSuccess
743
+
744
+ interface _ListDatasetImportJobsResponseSuccess
745
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetImportJobsResponse]
746
+ def dataset_import_jobs: () -> ::Array[Types::DatasetImportJobSummary]
747
+ def next_token: () -> ::String
748
+ end
749
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_dataset_import_jobs-instance_method
750
+ def list_dataset_import_jobs: (
751
+ ?dataset_arn: ::String,
752
+ ?next_token: ::String,
753
+ ?max_results: ::Integer
754
+ ) -> _ListDatasetImportJobsResponseSuccess
755
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetImportJobsResponseSuccess
756
+
757
+ interface _ListDatasetsResponseSuccess
758
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetsResponse]
759
+ def datasets: () -> ::Array[Types::DatasetSummary]
760
+ def next_token: () -> ::String
761
+ end
762
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_datasets-instance_method
763
+ def list_datasets: (
764
+ ?dataset_group_arn: ::String,
765
+ ?next_token: ::String,
766
+ ?max_results: ::Integer
767
+ ) -> _ListDatasetsResponseSuccess
768
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetsResponseSuccess
769
+
770
+ interface _ListEventTrackersResponseSuccess
771
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventTrackersResponse]
772
+ def event_trackers: () -> ::Array[Types::EventTrackerSummary]
773
+ def next_token: () -> ::String
774
+ end
775
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_event_trackers-instance_method
776
+ def list_event_trackers: (
777
+ ?dataset_group_arn: ::String,
778
+ ?next_token: ::String,
779
+ ?max_results: ::Integer
780
+ ) -> _ListEventTrackersResponseSuccess
781
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventTrackersResponseSuccess
782
+
783
+ interface _ListFiltersResponseSuccess
784
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFiltersResponse]
785
+ def filters: () -> ::Array[Types::FilterSummary]
786
+ def next_token: () -> ::String
787
+ end
788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_filters-instance_method
789
+ def list_filters: (
790
+ ?dataset_group_arn: ::String,
791
+ ?next_token: ::String,
792
+ ?max_results: ::Integer
793
+ ) -> _ListFiltersResponseSuccess
794
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFiltersResponseSuccess
795
+
796
+ interface _ListMetricAttributionMetricsResponseSuccess
797
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMetricAttributionMetricsResponse]
798
+ def metrics: () -> ::Array[Types::MetricAttribute]
799
+ def next_token: () -> ::String
800
+ end
801
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_metric_attribution_metrics-instance_method
802
+ def list_metric_attribution_metrics: (
803
+ ?metric_attribution_arn: ::String,
804
+ ?next_token: ::String,
805
+ ?max_results: ::Integer
806
+ ) -> _ListMetricAttributionMetricsResponseSuccess
807
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMetricAttributionMetricsResponseSuccess
808
+
809
+ interface _ListMetricAttributionsResponseSuccess
810
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMetricAttributionsResponse]
811
+ def metric_attributions: () -> ::Array[Types::MetricAttributionSummary]
812
+ def next_token: () -> ::String
813
+ end
814
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_metric_attributions-instance_method
815
+ def list_metric_attributions: (
816
+ ?dataset_group_arn: ::String,
817
+ ?next_token: ::String,
818
+ ?max_results: ::Integer
819
+ ) -> _ListMetricAttributionsResponseSuccess
820
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMetricAttributionsResponseSuccess
821
+
822
+ interface _ListRecipesResponseSuccess
823
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecipesResponse]
824
+ def recipes: () -> ::Array[Types::RecipeSummary]
825
+ def next_token: () -> ::String
826
+ end
827
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_recipes-instance_method
828
+ def list_recipes: (
829
+ ?recipe_provider: ("SERVICE"),
830
+ ?next_token: ::String,
831
+ ?max_results: ::Integer,
832
+ ?domain: ("ECOMMERCE" | "VIDEO_ON_DEMAND")
833
+ ) -> _ListRecipesResponseSuccess
834
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecipesResponseSuccess
835
+
836
+ interface _ListRecommendersResponseSuccess
837
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRecommendersResponse]
838
+ def recommenders: () -> ::Array[Types::RecommenderSummary]
839
+ def next_token: () -> ::String
840
+ end
841
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_recommenders-instance_method
842
+ def list_recommenders: (
843
+ ?dataset_group_arn: ::String,
844
+ ?next_token: ::String,
845
+ ?max_results: ::Integer
846
+ ) -> _ListRecommendersResponseSuccess
847
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecommendersResponseSuccess
848
+
849
+ interface _ListSchemasResponseSuccess
850
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSchemasResponse]
851
+ def schemas: () -> ::Array[Types::DatasetSchemaSummary]
852
+ def next_token: () -> ::String
853
+ end
854
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_schemas-instance_method
855
+ def list_schemas: (
856
+ ?next_token: ::String,
857
+ ?max_results: ::Integer
858
+ ) -> _ListSchemasResponseSuccess
859
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSchemasResponseSuccess
860
+
861
+ interface _ListSolutionVersionsResponseSuccess
862
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSolutionVersionsResponse]
863
+ def solution_versions: () -> ::Array[Types::SolutionVersionSummary]
864
+ def next_token: () -> ::String
865
+ end
866
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_solution_versions-instance_method
867
+ def list_solution_versions: (
868
+ ?solution_arn: ::String,
869
+ ?next_token: ::String,
870
+ ?max_results: ::Integer
871
+ ) -> _ListSolutionVersionsResponseSuccess
872
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSolutionVersionsResponseSuccess
873
+
874
+ interface _ListSolutionsResponseSuccess
875
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSolutionsResponse]
876
+ def solutions: () -> ::Array[Types::SolutionSummary]
877
+ def next_token: () -> ::String
878
+ end
879
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_solutions-instance_method
880
+ def list_solutions: (
881
+ ?dataset_group_arn: ::String,
882
+ ?next_token: ::String,
883
+ ?max_results: ::Integer
884
+ ) -> _ListSolutionsResponseSuccess
885
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSolutionsResponseSuccess
886
+
887
+ interface _ListTagsForResourceResponseSuccess
888
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
889
+ def tags: () -> ::Array[Types::Tag]
890
+ end
891
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#list_tags_for_resource-instance_method
892
+ def list_tags_for_resource: (
893
+ resource_arn: ::String
894
+ ) -> _ListTagsForResourceResponseSuccess
895
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
896
+
897
+ interface _StartRecommenderResponseSuccess
898
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRecommenderResponse]
899
+ def recommender_arn: () -> ::String
900
+ end
901
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#start_recommender-instance_method
902
+ def start_recommender: (
903
+ recommender_arn: ::String
904
+ ) -> _StartRecommenderResponseSuccess
905
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRecommenderResponseSuccess
906
+
907
+ interface _StopRecommenderResponseSuccess
908
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopRecommenderResponse]
909
+ def recommender_arn: () -> ::String
910
+ end
911
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#stop_recommender-instance_method
912
+ def stop_recommender: (
913
+ recommender_arn: ::String
914
+ ) -> _StopRecommenderResponseSuccess
915
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopRecommenderResponseSuccess
916
+
917
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#stop_solution_version_creation-instance_method
918
+ def stop_solution_version_creation: (
919
+ solution_version_arn: ::String
920
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
921
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
922
+
923
+ interface _TagResourceResponseSuccess
924
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
925
+ end
926
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#tag_resource-instance_method
927
+ def tag_resource: (
928
+ resource_arn: ::String,
929
+ tags: Array[
930
+ {
931
+ tag_key: ::String,
932
+ tag_value: ::String
933
+ },
934
+ ]
935
+ ) -> _TagResourceResponseSuccess
936
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
937
+
938
+ interface _UntagResourceResponseSuccess
939
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
940
+ end
941
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#untag_resource-instance_method
942
+ def untag_resource: (
943
+ resource_arn: ::String,
944
+ tag_keys: Array[::String]
945
+ ) -> _UntagResourceResponseSuccess
946
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
947
+
948
+ interface _UpdateCampaignResponseSuccess
949
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCampaignResponse]
950
+ def campaign_arn: () -> ::String
951
+ end
952
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#update_campaign-instance_method
953
+ def update_campaign: (
954
+ campaign_arn: ::String,
955
+ ?solution_version_arn: ::String,
956
+ ?min_provisioned_tps: ::Integer,
957
+ ?campaign_config: {
958
+ item_exploration_config: Hash[::String, ::String]?,
959
+ enable_metadata_with_recommendations: bool?
960
+ }
961
+ ) -> _UpdateCampaignResponseSuccess
962
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCampaignResponseSuccess
963
+
964
+ interface _UpdateDatasetResponseSuccess
965
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetResponse]
966
+ def dataset_arn: () -> ::String
967
+ end
968
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#update_dataset-instance_method
969
+ def update_dataset: (
970
+ dataset_arn: ::String,
971
+ schema_arn: ::String
972
+ ) -> _UpdateDatasetResponseSuccess
973
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetResponseSuccess
974
+
975
+ interface _UpdateMetricAttributionResponseSuccess
976
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMetricAttributionResponse]
977
+ def metric_attribution_arn: () -> ::String
978
+ end
979
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#update_metric_attribution-instance_method
980
+ def update_metric_attribution: (
981
+ ?add_metrics: Array[
982
+ {
983
+ event_type: ::String,
984
+ metric_name: ::String,
985
+ expression: ::String
986
+ },
987
+ ],
988
+ ?remove_metrics: Array[::String],
989
+ ?metrics_output_config: {
990
+ s3_data_destination: {
991
+ path: ::String,
992
+ kms_key_arn: ::String?
993
+ }?,
994
+ role_arn: ::String
995
+ },
996
+ ?metric_attribution_arn: ::String
997
+ ) -> _UpdateMetricAttributionResponseSuccess
998
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMetricAttributionResponseSuccess
999
+
1000
+ interface _UpdateRecommenderResponseSuccess
1001
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecommenderResponse]
1002
+ def recommender_arn: () -> ::String
1003
+ end
1004
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Personalize/Client.html#update_recommender-instance_method
1005
+ def update_recommender: (
1006
+ recommender_arn: ::String,
1007
+ recommender_config: {
1008
+ item_exploration_config: Hash[::String, ::String]?,
1009
+ min_recommendation_requests_per_second: ::Integer?,
1010
+ training_data_config: {
1011
+ excluded_dataset_columns: Hash[::String, Array[::String]]?
1012
+ }?,
1013
+ enable_metadata_with_recommendations: bool?
1014
+ }
1015
+ ) -> _UpdateRecommenderResponseSuccess
1016
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecommenderResponseSuccess
1017
+ end
1018
+ end
1019
+ end
1020
+