aws-sdk-cleanroomsml 1.17.0 → 1.19.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.
data/sig/client.rbs CHANGED
@@ -75,6 +75,20 @@ module Aws
75
75
  | (?Hash[Symbol, untyped]) -> instance
76
76
 
77
77
 
78
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#cancel_trained_model-instance_method
79
+ def cancel_trained_model: (
80
+ membership_identifier: ::String,
81
+ trained_model_arn: ::String
82
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
83
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
84
+
85
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#cancel_trained_model_inference_job-instance_method
86
+ def cancel_trained_model_inference_job: (
87
+ membership_identifier: ::String,
88
+ trained_model_inference_job_arn: ::String
89
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
90
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
91
+
78
92
  interface _CreateAudienceModelResponseSuccess
79
93
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateAudienceModelResponse]
80
94
  def audience_model_arn: () -> ::String
@@ -119,6 +133,147 @@ module Aws
119
133
  ) -> _CreateConfiguredAudienceModelResponseSuccess
120
134
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredAudienceModelResponseSuccess
121
135
 
136
+ interface _CreateConfiguredModelAlgorithmResponseSuccess
137
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredModelAlgorithmResponse]
138
+ def configured_model_algorithm_arn: () -> ::String
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_configured_model_algorithm-instance_method
141
+ def create_configured_model_algorithm: (
142
+ name: ::String,
143
+ ?description: ::String,
144
+ role_arn: ::String,
145
+ ?training_container_config: {
146
+ image_uri: ::String,
147
+ entrypoint: Array[::String]?,
148
+ arguments: Array[::String]?,
149
+ metric_definitions: Array[
150
+ {
151
+ name: ::String,
152
+ regex: ::String
153
+ },
154
+ ]?
155
+ },
156
+ ?inference_container_config: {
157
+ image_uri: ::String
158
+ },
159
+ ?tags: Hash[::String, ::String],
160
+ ?kms_key_arn: ::String
161
+ ) -> _CreateConfiguredModelAlgorithmResponseSuccess
162
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredModelAlgorithmResponseSuccess
163
+
164
+ interface _CreateConfiguredModelAlgorithmAssociationResponseSuccess
165
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredModelAlgorithmAssociationResponse]
166
+ def configured_model_algorithm_association_arn: () -> ::String
167
+ end
168
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_configured_model_algorithm_association-instance_method
169
+ def create_configured_model_algorithm_association: (
170
+ membership_identifier: ::String,
171
+ configured_model_algorithm_arn: ::String,
172
+ name: ::String,
173
+ ?description: ::String,
174
+ ?privacy_configuration: {
175
+ policies: {
176
+ trained_models: {
177
+ container_logs: Array[
178
+ {
179
+ allowed_account_ids: Array[::String],
180
+ filter_pattern: ::String?
181
+ },
182
+ ]?,
183
+ container_metrics: {
184
+ noise_level: ("HIGH" | "MEDIUM" | "LOW" | "NONE")
185
+ }?
186
+ }?,
187
+ trained_model_exports: {
188
+ max_size: {
189
+ unit: ("GB"),
190
+ value: ::Float
191
+ },
192
+ files_to_export: Array[("MODEL" | "OUTPUT")]
193
+ }?,
194
+ trained_model_inference_jobs: {
195
+ container_logs: Array[
196
+ {
197
+ allowed_account_ids: Array[::String],
198
+ filter_pattern: ::String?
199
+ },
200
+ ]?,
201
+ max_output_size: {
202
+ unit: ("GB"),
203
+ value: ::Float
204
+ }?
205
+ }?
206
+ }
207
+ },
208
+ ?tags: Hash[::String, ::String]
209
+ ) -> _CreateConfiguredModelAlgorithmAssociationResponseSuccess
210
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredModelAlgorithmAssociationResponseSuccess
211
+
212
+ interface _CreateMLInputChannelResponseSuccess
213
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMLInputChannelResponse]
214
+ def ml_input_channel_arn: () -> ::String
215
+ end
216
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_ml_input_channel-instance_method
217
+ def create_ml_input_channel: (
218
+ membership_identifier: ::String,
219
+ configured_model_algorithm_associations: Array[::String],
220
+ input_channel: {
221
+ data_source: {
222
+ protected_query_input_parameters: {
223
+ sql_parameters: {
224
+ query_string: ::String?,
225
+ analysis_template_arn: ::String?,
226
+ parameters: Hash[::String, ::String]?
227
+ },
228
+ compute_configuration: {
229
+ worker: {
230
+ type: ("CR.1X" | "CR.4X")?,
231
+ number: ::Integer?
232
+ }?
233
+ }?
234
+ }?
235
+ },
236
+ role_arn: ::String
237
+ },
238
+ name: ::String,
239
+ retention_in_days: ::Integer,
240
+ ?description: ::String,
241
+ ?kms_key_arn: ::String,
242
+ ?tags: Hash[::String, ::String]
243
+ ) -> _CreateMLInputChannelResponseSuccess
244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMLInputChannelResponseSuccess
245
+
246
+ interface _CreateTrainedModelResponseSuccess
247
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrainedModelResponse]
248
+ def trained_model_arn: () -> ::String
249
+ end
250
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_trained_model-instance_method
251
+ def create_trained_model: (
252
+ membership_identifier: ::String,
253
+ name: ::String,
254
+ configured_model_algorithm_association_arn: ::String,
255
+ ?hyperparameters: Hash[::String, ::String],
256
+ ?environment: Hash[::String, ::String],
257
+ resource_config: {
258
+ instance_count: ::Integer?,
259
+ instance_type: ("ml.m4.xlarge" | "ml.m4.2xlarge" | "ml.m4.4xlarge" | "ml.m4.10xlarge" | "ml.m4.16xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.12xlarge" | "ml.m5.24xlarge" | "ml.c4.xlarge" | "ml.c4.2xlarge" | "ml.c4.4xlarge" | "ml.c4.8xlarge" | "ml.p2.xlarge" | "ml.p2.8xlarge" | "ml.p2.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.18xlarge" | "ml.c5n.xlarge" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.16xlarge" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.8xlarge" | "ml.c6i.4xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.r5d.large" | "ml.r5d.xlarge" | "ml.r5d.2xlarge" | "ml.r5d.4xlarge" | "ml.r5d.8xlarge" | "ml.r5d.12xlarge" | "ml.r5d.16xlarge" | "ml.r5d.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge"),
260
+ volume_size_in_gb: ::Integer
261
+ },
262
+ ?stopping_condition: {
263
+ max_runtime_in_seconds: ::Integer?
264
+ },
265
+ data_channels: Array[
266
+ {
267
+ ml_input_channel_arn: ::String,
268
+ channel_name: ::String
269
+ },
270
+ ],
271
+ ?description: ::String,
272
+ ?kms_key_arn: ::String,
273
+ ?tags: Hash[::String, ::String]
274
+ ) -> _CreateTrainedModelResponseSuccess
275
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrainedModelResponseSuccess
276
+
122
277
  interface _CreateTrainingDatasetResponseSuccess
123
278
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrainingDatasetResponse]
124
279
  def training_dataset_arn: () -> ::String
@@ -176,6 +331,39 @@ module Aws
176
331
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
177
332
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
178
333
 
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_configured_model_algorithm-instance_method
335
+ def delete_configured_model_algorithm: (
336
+ configured_model_algorithm_arn: ::String
337
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
339
+
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_configured_model_algorithm_association-instance_method
341
+ def delete_configured_model_algorithm_association: (
342
+ configured_model_algorithm_association_arn: ::String,
343
+ membership_identifier: ::String
344
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
345
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
346
+
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_ml_configuration-instance_method
348
+ def delete_ml_configuration: (
349
+ membership_identifier: ::String
350
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
352
+
353
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_ml_input_channel_data-instance_method
354
+ def delete_ml_input_channel_data: (
355
+ ml_input_channel_arn: ::String,
356
+ membership_identifier: ::String
357
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
358
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
359
+
360
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_trained_model_output-instance_method
361
+ def delete_trained_model_output: (
362
+ trained_model_arn: ::String,
363
+ membership_identifier: ::String
364
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
365
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
366
+
179
367
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_training_dataset-instance_method
180
368
  def delete_training_dataset: (
181
369
  training_dataset_arn: ::String
@@ -227,6 +415,77 @@ module Aws
227
415
  ) -> _GetAudienceModelResponseSuccess
228
416
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAudienceModelResponseSuccess
229
417
 
418
+ interface _GetCollaborationConfiguredModelAlgorithmAssociationResponseSuccess
419
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationConfiguredModelAlgorithmAssociationResponse]
420
+ def create_time: () -> ::Time
421
+ def update_time: () -> ::Time
422
+ def configured_model_algorithm_association_arn: () -> ::String
423
+ def membership_identifier: () -> ::String
424
+ def collaboration_identifier: () -> ::String
425
+ def configured_model_algorithm_arn: () -> ::String
426
+ def name: () -> ::String
427
+ def description: () -> ::String
428
+ def creator_account_id: () -> ::String
429
+ def privacy_configuration: () -> Types::PrivacyConfiguration
430
+ end
431
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_collaboration_configured_model_algorithm_association-instance_method
432
+ def get_collaboration_configured_model_algorithm_association: (
433
+ configured_model_algorithm_association_arn: ::String,
434
+ collaboration_identifier: ::String
435
+ ) -> _GetCollaborationConfiguredModelAlgorithmAssociationResponseSuccess
436
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationConfiguredModelAlgorithmAssociationResponseSuccess
437
+
438
+ interface _GetCollaborationMLInputChannelResponseSuccess
439
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationMLInputChannelResponse]
440
+ def create_time: () -> ::Time
441
+ def update_time: () -> ::Time
442
+ def creator_account_id: () -> ::String
443
+ def membership_identifier: () -> ::String
444
+ def collaboration_identifier: () -> ::String
445
+ def ml_input_channel_arn: () -> ::String
446
+ def name: () -> ::String
447
+ def configured_model_algorithm_associations: () -> ::Array[::String]
448
+ def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
449
+ def status_details: () -> Types::StatusDetails
450
+ def retention_in_days: () -> ::Integer
451
+ def number_of_records: () -> ::Integer
452
+ def description: () -> ::String
453
+ end
454
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_collaboration_ml_input_channel-instance_method
455
+ def get_collaboration_ml_input_channel: (
456
+ ml_input_channel_arn: ::String,
457
+ collaboration_identifier: ::String
458
+ ) -> _GetCollaborationMLInputChannelResponseSuccess
459
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationMLInputChannelResponseSuccess
460
+
461
+ interface _GetCollaborationTrainedModelResponseSuccess
462
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCollaborationTrainedModelResponse]
463
+ def membership_identifier: () -> ::String
464
+ def collaboration_identifier: () -> ::String
465
+ def trained_model_arn: () -> ::String
466
+ def name: () -> ::String
467
+ def description: () -> ::String
468
+ def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
469
+ def status_details: () -> Types::StatusDetails
470
+ def configured_model_algorithm_association_arn: () -> ::String
471
+ def resource_config: () -> Types::ResourceConfig
472
+ def stopping_condition: () -> Types::StoppingCondition
473
+ def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
474
+ def metrics_status_details: () -> ::String
475
+ def logs_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
476
+ def logs_status_details: () -> ::String
477
+ def training_container_image_digest: () -> ::String
478
+ def create_time: () -> ::Time
479
+ def update_time: () -> ::Time
480
+ def creator_account_id: () -> ::String
481
+ end
482
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_collaboration_trained_model-instance_method
483
+ def get_collaboration_trained_model: (
484
+ trained_model_arn: ::String,
485
+ collaboration_identifier: ::String
486
+ ) -> _GetCollaborationTrainedModelResponseSuccess
487
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationTrainedModelResponseSuccess
488
+
230
489
  interface _GetConfiguredAudienceModelResponseSuccess
231
490
  include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredAudienceModelResponse]
232
491
  def create_time: () -> ::Time
@@ -261,6 +520,150 @@ module Aws
261
520
  ) -> _GetConfiguredAudienceModelPolicyResponseSuccess
262
521
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredAudienceModelPolicyResponseSuccess
263
522
 
523
+ interface _GetConfiguredModelAlgorithmResponseSuccess
524
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredModelAlgorithmResponse]
525
+ def create_time: () -> ::Time
526
+ def update_time: () -> ::Time
527
+ def configured_model_algorithm_arn: () -> ::String
528
+ def name: () -> ::String
529
+ def training_container_config: () -> Types::ContainerConfig
530
+ def inference_container_config: () -> Types::InferenceContainerConfig
531
+ def role_arn: () -> ::String
532
+ def description: () -> ::String
533
+ def tags: () -> ::Hash[::String, ::String]
534
+ def kms_key_arn: () -> ::String
535
+ end
536
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_configured_model_algorithm-instance_method
537
+ def get_configured_model_algorithm: (
538
+ configured_model_algorithm_arn: ::String
539
+ ) -> _GetConfiguredModelAlgorithmResponseSuccess
540
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredModelAlgorithmResponseSuccess
541
+
542
+ interface _GetConfiguredModelAlgorithmAssociationResponseSuccess
543
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredModelAlgorithmAssociationResponse]
544
+ def create_time: () -> ::Time
545
+ def update_time: () -> ::Time
546
+ def configured_model_algorithm_association_arn: () -> ::String
547
+ def membership_identifier: () -> ::String
548
+ def collaboration_identifier: () -> ::String
549
+ def configured_model_algorithm_arn: () -> ::String
550
+ def name: () -> ::String
551
+ def privacy_configuration: () -> Types::PrivacyConfiguration
552
+ def description: () -> ::String
553
+ def tags: () -> ::Hash[::String, ::String]
554
+ end
555
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_configured_model_algorithm_association-instance_method
556
+ def get_configured_model_algorithm_association: (
557
+ configured_model_algorithm_association_arn: ::String,
558
+ membership_identifier: ::String
559
+ ) -> _GetConfiguredModelAlgorithmAssociationResponseSuccess
560
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredModelAlgorithmAssociationResponseSuccess
561
+
562
+ interface _GetMLConfigurationResponseSuccess
563
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMLConfigurationResponse]
564
+ def membership_identifier: () -> ::String
565
+ def default_output_location: () -> Types::MLOutputConfiguration
566
+ def create_time: () -> ::Time
567
+ def update_time: () -> ::Time
568
+ end
569
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_ml_configuration-instance_method
570
+ def get_ml_configuration: (
571
+ membership_identifier: ::String
572
+ ) -> _GetMLConfigurationResponseSuccess
573
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMLConfigurationResponseSuccess
574
+
575
+ interface _GetMLInputChannelResponseSuccess
576
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMLInputChannelResponse]
577
+ def create_time: () -> ::Time
578
+ def update_time: () -> ::Time
579
+ def membership_identifier: () -> ::String
580
+ def collaboration_identifier: () -> ::String
581
+ def input_channel: () -> Types::InputChannel
582
+ def protected_query_identifier: () -> ::String
583
+ def ml_input_channel_arn: () -> ::String
584
+ def name: () -> ::String
585
+ def configured_model_algorithm_associations: () -> ::Array[::String]
586
+ def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
587
+ def status_details: () -> Types::StatusDetails
588
+ def retention_in_days: () -> ::Integer
589
+ def number_of_records: () -> ::Integer
590
+ def number_of_files: () -> ::Float
591
+ def size_in_gb: () -> ::Float
592
+ def description: () -> ::String
593
+ def kms_key_arn: () -> ::String
594
+ def tags: () -> ::Hash[::String, ::String]
595
+ end
596
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_ml_input_channel-instance_method
597
+ def get_ml_input_channel: (
598
+ ml_input_channel_arn: ::String,
599
+ membership_identifier: ::String
600
+ ) -> _GetMLInputChannelResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMLInputChannelResponseSuccess
602
+
603
+ interface _GetTrainedModelResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTrainedModelResponse]
605
+ def membership_identifier: () -> ::String
606
+ def collaboration_identifier: () -> ::String
607
+ def trained_model_arn: () -> ::String
608
+ def name: () -> ::String
609
+ def description: () -> ::String
610
+ def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
611
+ def status_details: () -> Types::StatusDetails
612
+ def configured_model_algorithm_association_arn: () -> ::String
613
+ def resource_config: () -> Types::ResourceConfig
614
+ def stopping_condition: () -> Types::StoppingCondition
615
+ def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
616
+ def metrics_status_details: () -> ::String
617
+ def logs_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
618
+ def logs_status_details: () -> ::String
619
+ def training_container_image_digest: () -> ::String
620
+ def create_time: () -> ::Time
621
+ def update_time: () -> ::Time
622
+ def hyperparameters: () -> ::Hash[::String, ::String]
623
+ def environment: () -> ::Hash[::String, ::String]
624
+ def kms_key_arn: () -> ::String
625
+ def tags: () -> ::Hash[::String, ::String]
626
+ def data_channels: () -> ::Array[Types::ModelTrainingDataChannel]
627
+ end
628
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_trained_model-instance_method
629
+ def get_trained_model: (
630
+ trained_model_arn: ::String,
631
+ membership_identifier: ::String
632
+ ) -> _GetTrainedModelResponseSuccess
633
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrainedModelResponseSuccess
634
+
635
+ interface _GetTrainedModelInferenceJobResponseSuccess
636
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTrainedModelInferenceJobResponse]
637
+ def create_time: () -> ::Time
638
+ def update_time: () -> ::Time
639
+ def trained_model_inference_job_arn: () -> ::String
640
+ def configured_model_algorithm_association_arn: () -> ::String
641
+ def name: () -> ::String
642
+ def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
643
+ def trained_model_arn: () -> ::String
644
+ def resource_config: () -> Types::InferenceResourceConfig
645
+ def output_configuration: () -> Types::InferenceOutputConfiguration
646
+ def membership_identifier: () -> ::String
647
+ def data_source: () -> Types::ModelInferenceDataSource
648
+ def container_execution_parameters: () -> Types::InferenceContainerExecutionParameters
649
+ def status_details: () -> Types::StatusDetails
650
+ def description: () -> ::String
651
+ def inference_container_image_digest: () -> ::String
652
+ def environment: () -> ::Hash[::String, ::String]
653
+ def kms_key_arn: () -> ::String
654
+ def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
655
+ def metrics_status_details: () -> ::String
656
+ def logs_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
657
+ def logs_status_details: () -> ::String
658
+ def tags: () -> ::Hash[::String, ::String]
659
+ end
660
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_trained_model_inference_job-instance_method
661
+ def get_trained_model_inference_job: (
662
+ membership_identifier: ::String,
663
+ trained_model_inference_job_arn: ::String
664
+ ) -> _GetTrainedModelInferenceJobResponseSuccess
665
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrainedModelInferenceJobResponseSuccess
666
+
264
667
  interface _GetTrainingDatasetResponseSuccess
265
668
  include ::Seahorse::Client::_ResponseSuccess[Types::GetTrainingDatasetResponse]
266
669
  def create_time: () -> ::Time
@@ -318,6 +721,73 @@ module Aws
318
721
  ) -> _ListAudienceModelsResponseSuccess
319
722
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAudienceModelsResponseSuccess
320
723
 
724
+ interface _ListCollaborationConfiguredModelAlgorithmAssociationsResponseSuccess
725
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationConfiguredModelAlgorithmAssociationsResponse]
726
+ def next_token: () -> ::String
727
+ def collaboration_configured_model_algorithm_associations: () -> ::Array[Types::CollaborationConfiguredModelAlgorithmAssociationSummary]
728
+ end
729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_collaboration_configured_model_algorithm_associations-instance_method
730
+ def list_collaboration_configured_model_algorithm_associations: (
731
+ ?next_token: ::String,
732
+ ?max_results: ::Integer,
733
+ collaboration_identifier: ::String
734
+ ) -> _ListCollaborationConfiguredModelAlgorithmAssociationsResponseSuccess
735
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationConfiguredModelAlgorithmAssociationsResponseSuccess
736
+
737
+ interface _ListCollaborationMLInputChannelsResponseSuccess
738
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationMLInputChannelsResponse]
739
+ def next_token: () -> ::String
740
+ def collaboration_ml_input_channels_list: () -> ::Array[Types::CollaborationMLInputChannelSummary]
741
+ end
742
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_collaboration_ml_input_channels-instance_method
743
+ def list_collaboration_ml_input_channels: (
744
+ ?next_token: ::String,
745
+ ?max_results: ::Integer,
746
+ collaboration_identifier: ::String
747
+ ) -> _ListCollaborationMLInputChannelsResponseSuccess
748
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationMLInputChannelsResponseSuccess
749
+
750
+ interface _ListCollaborationTrainedModelExportJobsResponseSuccess
751
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationTrainedModelExportJobsResponse]
752
+ def next_token: () -> ::String
753
+ def collaboration_trained_model_export_jobs: () -> ::Array[Types::CollaborationTrainedModelExportJobSummary]
754
+ end
755
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_collaboration_trained_model_export_jobs-instance_method
756
+ def list_collaboration_trained_model_export_jobs: (
757
+ ?next_token: ::String,
758
+ ?max_results: ::Integer,
759
+ collaboration_identifier: ::String,
760
+ trained_model_arn: ::String
761
+ ) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
762
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
763
+
764
+ interface _ListCollaborationTrainedModelInferenceJobsResponseSuccess
765
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationTrainedModelInferenceJobsResponse]
766
+ def next_token: () -> ::String
767
+ def collaboration_trained_model_inference_jobs: () -> ::Array[Types::CollaborationTrainedModelInferenceJobSummary]
768
+ end
769
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_collaboration_trained_model_inference_jobs-instance_method
770
+ def list_collaboration_trained_model_inference_jobs: (
771
+ ?next_token: ::String,
772
+ ?max_results: ::Integer,
773
+ collaboration_identifier: ::String,
774
+ ?trained_model_arn: ::String
775
+ ) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
776
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
777
+
778
+ interface _ListCollaborationTrainedModelsResponseSuccess
779
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCollaborationTrainedModelsResponse]
780
+ def next_token: () -> ::String
781
+ def collaboration_trained_models: () -> ::Array[Types::CollaborationTrainedModelSummary]
782
+ end
783
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_collaboration_trained_models-instance_method
784
+ def list_collaboration_trained_models: (
785
+ ?next_token: ::String,
786
+ ?max_results: ::Integer,
787
+ collaboration_identifier: ::String
788
+ ) -> _ListCollaborationTrainedModelsResponseSuccess
789
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelsResponseSuccess
790
+
321
791
  interface _ListConfiguredAudienceModelsResponseSuccess
322
792
  include ::Seahorse::Client::_ResponseSuccess[Types::ListConfiguredAudienceModelsResponse]
323
793
  def next_token: () -> ::String
@@ -330,6 +800,44 @@ module Aws
330
800
  ) -> _ListConfiguredAudienceModelsResponseSuccess
331
801
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfiguredAudienceModelsResponseSuccess
332
802
 
803
+ interface _ListConfiguredModelAlgorithmAssociationsResponseSuccess
804
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfiguredModelAlgorithmAssociationsResponse]
805
+ def next_token: () -> ::String
806
+ def configured_model_algorithm_associations: () -> ::Array[Types::ConfiguredModelAlgorithmAssociationSummary]
807
+ end
808
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_configured_model_algorithm_associations-instance_method
809
+ def list_configured_model_algorithm_associations: (
810
+ ?next_token: ::String,
811
+ ?max_results: ::Integer,
812
+ membership_identifier: ::String
813
+ ) -> _ListConfiguredModelAlgorithmAssociationsResponseSuccess
814
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfiguredModelAlgorithmAssociationsResponseSuccess
815
+
816
+ interface _ListConfiguredModelAlgorithmsResponseSuccess
817
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfiguredModelAlgorithmsResponse]
818
+ def next_token: () -> ::String
819
+ def configured_model_algorithms: () -> ::Array[Types::ConfiguredModelAlgorithmSummary]
820
+ end
821
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_configured_model_algorithms-instance_method
822
+ def list_configured_model_algorithms: (
823
+ ?next_token: ::String,
824
+ ?max_results: ::Integer
825
+ ) -> _ListConfiguredModelAlgorithmsResponseSuccess
826
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfiguredModelAlgorithmsResponseSuccess
827
+
828
+ interface _ListMLInputChannelsResponseSuccess
829
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMLInputChannelsResponse]
830
+ def next_token: () -> ::String
831
+ def ml_input_channels_list: () -> ::Array[Types::MLInputChannelSummary]
832
+ end
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_ml_input_channels-instance_method
834
+ def list_ml_input_channels: (
835
+ ?next_token: ::String,
836
+ ?max_results: ::Integer,
837
+ membership_identifier: ::String
838
+ ) -> _ListMLInputChannelsResponseSuccess
839
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMLInputChannelsResponseSuccess
840
+
333
841
  interface _ListTagsForResourceResponseSuccess
334
842
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
335
843
  def tags: () -> ::Hash[::String, ::String]
@@ -340,6 +848,33 @@ module Aws
340
848
  ) -> _ListTagsForResourceResponseSuccess
341
849
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
342
850
 
851
+ interface _ListTrainedModelInferenceJobsResponseSuccess
852
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelInferenceJobsResponse]
853
+ def next_token: () -> ::String
854
+ def trained_model_inference_jobs: () -> ::Array[Types::TrainedModelInferenceJobSummary]
855
+ end
856
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_trained_model_inference_jobs-instance_method
857
+ def list_trained_model_inference_jobs: (
858
+ ?next_token: ::String,
859
+ ?max_results: ::Integer,
860
+ membership_identifier: ::String,
861
+ ?trained_model_arn: ::String
862
+ ) -> _ListTrainedModelInferenceJobsResponseSuccess
863
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelInferenceJobsResponseSuccess
864
+
865
+ interface _ListTrainedModelsResponseSuccess
866
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelsResponse]
867
+ def next_token: () -> ::String
868
+ def trained_models: () -> ::Array[Types::TrainedModelSummary]
869
+ end
870
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_trained_models-instance_method
871
+ def list_trained_models: (
872
+ ?next_token: ::String,
873
+ ?max_results: ::Integer,
874
+ membership_identifier: ::String
875
+ ) -> _ListTrainedModelsResponseSuccess
876
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelsResponseSuccess
877
+
343
878
  interface _ListTrainingDatasetsResponseSuccess
344
879
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainingDatasetsResponse]
345
880
  def next_token: () -> ::String
@@ -366,6 +901,20 @@ module Aws
366
901
  ) -> _PutConfiguredAudienceModelPolicyResponseSuccess
367
902
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfiguredAudienceModelPolicyResponseSuccess
368
903
 
904
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#put_ml_configuration-instance_method
905
+ def put_ml_configuration: (
906
+ membership_identifier: ::String,
907
+ default_output_location: {
908
+ destination: {
909
+ s3_destination: {
910
+ s3_uri: ::String
911
+ }
912
+ }?,
913
+ role_arn: ::String
914
+ }
915
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
916
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
917
+
369
918
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#start_audience_export_job-instance_method
370
919
  def start_audience_export_job: (
371
920
  name: ::String,
@@ -404,6 +953,57 @@ module Aws
404
953
  ) -> _StartAudienceGenerationJobResponseSuccess
405
954
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAudienceGenerationJobResponseSuccess
406
955
 
956
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#start_trained_model_export_job-instance_method
957
+ def start_trained_model_export_job: (
958
+ name: ::String,
959
+ trained_model_arn: ::String,
960
+ membership_identifier: ::String,
961
+ output_configuration: {
962
+ members: Array[
963
+ {
964
+ account_id: ::String
965
+ },
966
+ ]
967
+ },
968
+ ?description: ::String
969
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
970
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
971
+
972
+ interface _StartTrainedModelInferenceJobResponseSuccess
973
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartTrainedModelInferenceJobResponse]
974
+ def trained_model_inference_job_arn: () -> ::String
975
+ end
976
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#start_trained_model_inference_job-instance_method
977
+ def start_trained_model_inference_job: (
978
+ membership_identifier: ::String,
979
+ name: ::String,
980
+ trained_model_arn: ::String,
981
+ ?configured_model_algorithm_association_arn: ::String,
982
+ resource_config: {
983
+ instance_type: ("ml.r7i.48xlarge" | "ml.r6i.16xlarge" | "ml.m6i.xlarge" | "ml.m5.4xlarge" | "ml.p2.xlarge" | "ml.m4.16xlarge" | "ml.r7i.16xlarge" | "ml.m7i.xlarge" | "ml.m6i.12xlarge" | "ml.r7i.8xlarge" | "ml.r7i.large" | "ml.m7i.12xlarge" | "ml.m6i.24xlarge" | "ml.m7i.24xlarge" | "ml.r6i.8xlarge" | "ml.r6i.large" | "ml.g5.2xlarge" | "ml.m5.large" | "ml.p3.16xlarge" | "ml.m7i.48xlarge" | "ml.m6i.16xlarge" | "ml.p2.16xlarge" | "ml.g5.4xlarge" | "ml.m7i.16xlarge" | "ml.c4.2xlarge" | "ml.c5.2xlarge" | "ml.c6i.32xlarge" | "ml.c4.4xlarge" | "ml.g5.8xlarge" | "ml.c6i.xlarge" | "ml.c5.4xlarge" | "ml.g4dn.xlarge" | "ml.c7i.xlarge" | "ml.c6i.12xlarge" | "ml.g4dn.12xlarge" | "ml.c7i.12xlarge" | "ml.c6i.24xlarge" | "ml.g4dn.2xlarge" | "ml.c7i.24xlarge" | "ml.c7i.2xlarge" | "ml.c4.8xlarge" | "ml.c6i.2xlarge" | "ml.g4dn.4xlarge" | "ml.c7i.48xlarge" | "ml.c7i.4xlarge" | "ml.c6i.16xlarge" | "ml.c5.9xlarge" | "ml.g4dn.16xlarge" | "ml.c7i.16xlarge" | "ml.c6i.4xlarge" | "ml.c5.xlarge" | "ml.c4.xlarge" | "ml.g4dn.8xlarge" | "ml.c7i.8xlarge" | "ml.c7i.large" | "ml.g5.xlarge" | "ml.c6i.8xlarge" | "ml.c6i.large" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.m7i.2xlarge" | "ml.c5.18xlarge" | "ml.g5.48xlarge" | "ml.m6i.2xlarge" | "ml.g5.16xlarge" | "ml.m7i.4xlarge" | "ml.p3.2xlarge" | "ml.r6i.32xlarge" | "ml.m6i.4xlarge" | "ml.m5.xlarge" | "ml.m4.10xlarge" | "ml.r6i.xlarge" | "ml.m5.12xlarge" | "ml.m4.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.xlarge" | "ml.r6i.12xlarge" | "ml.m5.24xlarge" | "ml.r7i.12xlarge" | "ml.m7i.8xlarge" | "ml.m7i.large" | "ml.r6i.24xlarge" | "ml.r6i.2xlarge" | "ml.m4.2xlarge" | "ml.r7i.24xlarge" | "ml.r7i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.large" | "ml.m5.2xlarge" | "ml.p2.8xlarge" | "ml.r6i.4xlarge" | "ml.m6i.32xlarge" | "ml.p3.8xlarge" | "ml.m4.4xlarge"),
984
+ instance_count: ::Integer?
985
+ },
986
+ output_configuration: {
987
+ accept: ::String?,
988
+ members: Array[
989
+ {
990
+ account_id: ::String
991
+ },
992
+ ]
993
+ },
994
+ data_source: {
995
+ ml_input_channel_arn: ::String
996
+ },
997
+ ?description: ::String,
998
+ ?container_execution_parameters: {
999
+ max_payload_in_mb: ::Integer?
1000
+ },
1001
+ ?environment: Hash[::String, ::String],
1002
+ ?kms_key_arn: ::String,
1003
+ ?tags: Hash[::String, ::String]
1004
+ ) -> _StartTrainedModelInferenceJobResponseSuccess
1005
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTrainedModelInferenceJobResponseSuccess
1006
+
407
1007
  interface _TagResourceResponseSuccess
408
1008
  include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
409
1009
  end