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