aws-sdk-cleanroomsml 1.18.0 → 1.20.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/types.rbs CHANGED
@@ -35,6 +35,7 @@ module Aws::CleanRoomsML
35
35
  attr_accessor data_source: Types::S3ConfigMap
36
36
  attr_accessor role_arn: ::String
37
37
  attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
38
+ attr_accessor sql_compute_configuration: Types::ComputeConfiguration
38
39
  SENSITIVE: [:sql_parameters]
39
40
  end
40
41
 
@@ -80,12 +81,111 @@ module Aws::CleanRoomsML
80
81
  SENSITIVE: []
81
82
  end
82
83
 
84
+ class CancelTrainedModelInferenceJobRequest
85
+ attr_accessor membership_identifier: ::String
86
+ attr_accessor trained_model_inference_job_arn: ::String
87
+ SENSITIVE: []
88
+ end
89
+
90
+ class CancelTrainedModelRequest
91
+ attr_accessor membership_identifier: ::String
92
+ attr_accessor trained_model_arn: ::String
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class CollaborationConfiguredModelAlgorithmAssociationSummary
97
+ attr_accessor create_time: ::Time
98
+ attr_accessor update_time: ::Time
99
+ attr_accessor configured_model_algorithm_association_arn: ::String
100
+ attr_accessor name: ::String
101
+ attr_accessor description: ::String
102
+ attr_accessor membership_identifier: ::String
103
+ attr_accessor collaboration_identifier: ::String
104
+ attr_accessor configured_model_algorithm_arn: ::String
105
+ attr_accessor creator_account_id: ::String
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class CollaborationMLInputChannelSummary
110
+ attr_accessor create_time: ::Time
111
+ attr_accessor update_time: ::Time
112
+ attr_accessor membership_identifier: ::String
113
+ attr_accessor collaboration_identifier: ::String
114
+ attr_accessor name: ::String
115
+ attr_accessor configured_model_algorithm_associations: ::Array[::String]
116
+ attr_accessor ml_input_channel_arn: ::String
117
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
118
+ attr_accessor creator_account_id: ::String
119
+ attr_accessor description: ::String
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class CollaborationTrainedModelExportJobSummary
124
+ attr_accessor create_time: ::Time
125
+ attr_accessor update_time: ::Time
126
+ attr_accessor name: ::String
127
+ attr_accessor output_configuration: Types::TrainedModelExportOutputConfiguration
128
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE")
129
+ attr_accessor status_details: Types::StatusDetails
130
+ attr_accessor description: ::String
131
+ attr_accessor creator_account_id: ::String
132
+ attr_accessor trained_model_arn: ::String
133
+ attr_accessor membership_identifier: ::String
134
+ attr_accessor collaboration_identifier: ::String
135
+ SENSITIVE: []
136
+ end
137
+
138
+ class CollaborationTrainedModelInferenceJobSummary
139
+ attr_accessor trained_model_inference_job_arn: ::String
140
+ attr_accessor configured_model_algorithm_association_arn: ::String
141
+ attr_accessor membership_identifier: ::String
142
+ attr_accessor trained_model_arn: ::String
143
+ attr_accessor collaboration_identifier: ::String
144
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
145
+ attr_accessor output_configuration: Types::InferenceOutputConfiguration
146
+ attr_accessor name: ::String
147
+ attr_accessor description: ::String
148
+ attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
149
+ attr_accessor metrics_status_details: ::String
150
+ attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
151
+ attr_accessor logs_status_details: ::String
152
+ attr_accessor create_time: ::Time
153
+ attr_accessor update_time: ::Time
154
+ attr_accessor creator_account_id: ::String
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class CollaborationTrainedModelSummary
159
+ attr_accessor create_time: ::Time
160
+ attr_accessor update_time: ::Time
161
+ attr_accessor trained_model_arn: ::String
162
+ attr_accessor name: ::String
163
+ attr_accessor description: ::String
164
+ attr_accessor membership_identifier: ::String
165
+ attr_accessor collaboration_identifier: ::String
166
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
167
+ attr_accessor configured_model_algorithm_association_arn: ::String
168
+ attr_accessor creator_account_id: ::String
169
+ SENSITIVE: []
170
+ end
171
+
83
172
  class ColumnSchema
84
173
  attr_accessor column_name: ::String
85
174
  attr_accessor column_types: ::Array[("USER_ID" | "ITEM_ID" | "TIMESTAMP" | "CATEGORICAL_FEATURE" | "NUMERICAL_FEATURE")]
86
175
  SENSITIVE: []
87
176
  end
88
177
 
178
+ class ComputeConfiguration
179
+ attr_accessor worker: Types::WorkerComputeConfiguration
180
+ attr_accessor unknown: untyped
181
+ SENSITIVE: []
182
+
183
+ class Worker < ComputeConfiguration
184
+ end
185
+ class Unknown < ComputeConfiguration
186
+ end
187
+ end
188
+
89
189
  class ConfiguredAudienceModelOutputConfig
90
190
  attr_accessor destination: Types::AudienceDestination
91
191
  attr_accessor role_arn: ::String
@@ -104,11 +204,40 @@ module Aws::CleanRoomsML
104
204
  SENSITIVE: []
105
205
  end
106
206
 
207
+ class ConfiguredModelAlgorithmAssociationSummary
208
+ attr_accessor create_time: ::Time
209
+ attr_accessor update_time: ::Time
210
+ attr_accessor configured_model_algorithm_association_arn: ::String
211
+ attr_accessor configured_model_algorithm_arn: ::String
212
+ attr_accessor name: ::String
213
+ attr_accessor description: ::String
214
+ attr_accessor membership_identifier: ::String
215
+ attr_accessor collaboration_identifier: ::String
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class ConfiguredModelAlgorithmSummary
220
+ attr_accessor create_time: ::Time
221
+ attr_accessor update_time: ::Time
222
+ attr_accessor configured_model_algorithm_arn: ::String
223
+ attr_accessor name: ::String
224
+ attr_accessor description: ::String
225
+ SENSITIVE: []
226
+ end
227
+
107
228
  class ConflictException
108
229
  attr_accessor message: ::String
109
230
  SENSITIVE: []
110
231
  end
111
232
 
233
+ class ContainerConfig
234
+ attr_accessor image_uri: ::String
235
+ attr_accessor entrypoint: ::Array[::String]
236
+ attr_accessor arguments: ::Array[::String]
237
+ attr_accessor metric_definitions: ::Array[Types::MetricDefinition]
238
+ SENSITIVE: []
239
+ end
240
+
112
241
  class CreateAudienceModelRequest
113
242
  attr_accessor training_data_start_time: ::Time
114
243
  attr_accessor training_data_end_time: ::Time
@@ -143,6 +272,74 @@ module Aws::CleanRoomsML
143
272
  SENSITIVE: []
144
273
  end
145
274
 
275
+ class CreateConfiguredModelAlgorithmAssociationRequest
276
+ attr_accessor membership_identifier: ::String
277
+ attr_accessor configured_model_algorithm_arn: ::String
278
+ attr_accessor name: ::String
279
+ attr_accessor description: ::String
280
+ attr_accessor privacy_configuration: Types::PrivacyConfiguration
281
+ attr_accessor tags: ::Hash[::String, ::String]
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class CreateConfiguredModelAlgorithmAssociationResponse
286
+ attr_accessor configured_model_algorithm_association_arn: ::String
287
+ SENSITIVE: []
288
+ end
289
+
290
+ class CreateConfiguredModelAlgorithmRequest
291
+ attr_accessor name: ::String
292
+ attr_accessor description: ::String
293
+ attr_accessor role_arn: ::String
294
+ attr_accessor training_container_config: Types::ContainerConfig
295
+ attr_accessor inference_container_config: Types::InferenceContainerConfig
296
+ attr_accessor tags: ::Hash[::String, ::String]
297
+ attr_accessor kms_key_arn: ::String
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class CreateConfiguredModelAlgorithmResponse
302
+ attr_accessor configured_model_algorithm_arn: ::String
303
+ SENSITIVE: []
304
+ end
305
+
306
+ class CreateMLInputChannelRequest
307
+ attr_accessor membership_identifier: ::String
308
+ attr_accessor configured_model_algorithm_associations: ::Array[::String]
309
+ attr_accessor input_channel: Types::InputChannel
310
+ attr_accessor name: ::String
311
+ attr_accessor retention_in_days: ::Integer
312
+ attr_accessor description: ::String
313
+ attr_accessor kms_key_arn: ::String
314
+ attr_accessor tags: ::Hash[::String, ::String]
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class CreateMLInputChannelResponse
319
+ attr_accessor ml_input_channel_arn: ::String
320
+ SENSITIVE: []
321
+ end
322
+
323
+ class CreateTrainedModelRequest
324
+ attr_accessor membership_identifier: ::String
325
+ attr_accessor name: ::String
326
+ attr_accessor configured_model_algorithm_association_arn: ::String
327
+ attr_accessor hyperparameters: ::Hash[::String, ::String]
328
+ attr_accessor environment: ::Hash[::String, ::String]
329
+ attr_accessor resource_config: Types::ResourceConfig
330
+ attr_accessor stopping_condition: Types::StoppingCondition
331
+ attr_accessor data_channels: ::Array[Types::ModelTrainingDataChannel]
332
+ attr_accessor description: ::String
333
+ attr_accessor kms_key_arn: ::String
334
+ attr_accessor tags: ::Hash[::String, ::String]
335
+ SENSITIVE: []
336
+ end
337
+
338
+ class CreateTrainedModelResponse
339
+ attr_accessor trained_model_arn: ::String
340
+ SENSITIVE: []
341
+ end
342
+
146
343
  class CreateTrainingDatasetRequest
147
344
  attr_accessor name: ::String
148
345
  attr_accessor role_arn: ::String
@@ -194,11 +391,44 @@ module Aws::CleanRoomsML
194
391
  SENSITIVE: []
195
392
  end
196
393
 
394
+ class DeleteConfiguredModelAlgorithmAssociationRequest
395
+ attr_accessor configured_model_algorithm_association_arn: ::String
396
+ attr_accessor membership_identifier: ::String
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class DeleteConfiguredModelAlgorithmRequest
401
+ attr_accessor configured_model_algorithm_arn: ::String
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class DeleteMLConfigurationRequest
406
+ attr_accessor membership_identifier: ::String
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class DeleteMLInputChannelDataRequest
411
+ attr_accessor ml_input_channel_arn: ::String
412
+ attr_accessor membership_identifier: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class DeleteTrainedModelOutputRequest
417
+ attr_accessor trained_model_arn: ::String
418
+ attr_accessor membership_identifier: ::String
419
+ SENSITIVE: []
420
+ end
421
+
197
422
  class DeleteTrainingDatasetRequest
198
423
  attr_accessor training_dataset_arn: ::String
199
424
  SENSITIVE: []
200
425
  end
201
426
 
427
+ class Destination
428
+ attr_accessor s3_destination: Types::S3ConfigMap
429
+ SENSITIVE: []
430
+ end
431
+
202
432
  class GetAudienceGenerationJobRequest
203
433
  attr_accessor audience_generation_job_arn: ::String
204
434
  SENSITIVE: []
@@ -244,6 +474,77 @@ module Aws::CleanRoomsML
244
474
  SENSITIVE: []
245
475
  end
246
476
 
477
+ class GetCollaborationConfiguredModelAlgorithmAssociationRequest
478
+ attr_accessor configured_model_algorithm_association_arn: ::String
479
+ attr_accessor collaboration_identifier: ::String
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class GetCollaborationConfiguredModelAlgorithmAssociationResponse
484
+ attr_accessor create_time: ::Time
485
+ attr_accessor update_time: ::Time
486
+ attr_accessor configured_model_algorithm_association_arn: ::String
487
+ attr_accessor membership_identifier: ::String
488
+ attr_accessor collaboration_identifier: ::String
489
+ attr_accessor configured_model_algorithm_arn: ::String
490
+ attr_accessor name: ::String
491
+ attr_accessor description: ::String
492
+ attr_accessor creator_account_id: ::String
493
+ attr_accessor privacy_configuration: Types::PrivacyConfiguration
494
+ SENSITIVE: []
495
+ end
496
+
497
+ class GetCollaborationMLInputChannelRequest
498
+ attr_accessor ml_input_channel_arn: ::String
499
+ attr_accessor collaboration_identifier: ::String
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class GetCollaborationMLInputChannelResponse
504
+ attr_accessor create_time: ::Time
505
+ attr_accessor update_time: ::Time
506
+ attr_accessor creator_account_id: ::String
507
+ attr_accessor membership_identifier: ::String
508
+ attr_accessor collaboration_identifier: ::String
509
+ attr_accessor ml_input_channel_arn: ::String
510
+ attr_accessor name: ::String
511
+ attr_accessor configured_model_algorithm_associations: ::Array[::String]
512
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
513
+ attr_accessor status_details: Types::StatusDetails
514
+ attr_accessor retention_in_days: ::Integer
515
+ attr_accessor number_of_records: ::Integer
516
+ attr_accessor description: ::String
517
+ SENSITIVE: []
518
+ end
519
+
520
+ class GetCollaborationTrainedModelRequest
521
+ attr_accessor trained_model_arn: ::String
522
+ attr_accessor collaboration_identifier: ::String
523
+ SENSITIVE: []
524
+ end
525
+
526
+ class GetCollaborationTrainedModelResponse
527
+ attr_accessor membership_identifier: ::String
528
+ attr_accessor collaboration_identifier: ::String
529
+ attr_accessor trained_model_arn: ::String
530
+ attr_accessor name: ::String
531
+ attr_accessor description: ::String
532
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
533
+ attr_accessor status_details: Types::StatusDetails
534
+ attr_accessor configured_model_algorithm_association_arn: ::String
535
+ attr_accessor resource_config: Types::ResourceConfig
536
+ attr_accessor stopping_condition: Types::StoppingCondition
537
+ attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
538
+ attr_accessor metrics_status_details: ::String
539
+ attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
540
+ attr_accessor logs_status_details: ::String
541
+ attr_accessor training_container_image_digest: ::String
542
+ attr_accessor create_time: ::Time
543
+ attr_accessor update_time: ::Time
544
+ attr_accessor creator_account_id: ::String
545
+ SENSITIVE: []
546
+ end
547
+
247
548
  class GetConfiguredAudienceModelPolicyRequest
248
549
  attr_accessor configured_audience_model_arn: ::String
249
550
  SENSITIVE: []
@@ -278,6 +579,150 @@ module Aws::CleanRoomsML
278
579
  SENSITIVE: []
279
580
  end
280
581
 
582
+ class GetConfiguredModelAlgorithmAssociationRequest
583
+ attr_accessor configured_model_algorithm_association_arn: ::String
584
+ attr_accessor membership_identifier: ::String
585
+ SENSITIVE: []
586
+ end
587
+
588
+ class GetConfiguredModelAlgorithmAssociationResponse
589
+ attr_accessor create_time: ::Time
590
+ attr_accessor update_time: ::Time
591
+ attr_accessor configured_model_algorithm_association_arn: ::String
592
+ attr_accessor membership_identifier: ::String
593
+ attr_accessor collaboration_identifier: ::String
594
+ attr_accessor configured_model_algorithm_arn: ::String
595
+ attr_accessor name: ::String
596
+ attr_accessor privacy_configuration: Types::PrivacyConfiguration
597
+ attr_accessor description: ::String
598
+ attr_accessor tags: ::Hash[::String, ::String]
599
+ SENSITIVE: []
600
+ end
601
+
602
+ class GetConfiguredModelAlgorithmRequest
603
+ attr_accessor configured_model_algorithm_arn: ::String
604
+ SENSITIVE: []
605
+ end
606
+
607
+ class GetConfiguredModelAlgorithmResponse
608
+ attr_accessor create_time: ::Time
609
+ attr_accessor update_time: ::Time
610
+ attr_accessor configured_model_algorithm_arn: ::String
611
+ attr_accessor name: ::String
612
+ attr_accessor training_container_config: Types::ContainerConfig
613
+ attr_accessor inference_container_config: Types::InferenceContainerConfig
614
+ attr_accessor role_arn: ::String
615
+ attr_accessor description: ::String
616
+ attr_accessor tags: ::Hash[::String, ::String]
617
+ attr_accessor kms_key_arn: ::String
618
+ SENSITIVE: []
619
+ end
620
+
621
+ class GetMLConfigurationRequest
622
+ attr_accessor membership_identifier: ::String
623
+ SENSITIVE: []
624
+ end
625
+
626
+ class GetMLConfigurationResponse
627
+ attr_accessor membership_identifier: ::String
628
+ attr_accessor default_output_location: Types::MLOutputConfiguration
629
+ attr_accessor create_time: ::Time
630
+ attr_accessor update_time: ::Time
631
+ SENSITIVE: []
632
+ end
633
+
634
+ class GetMLInputChannelRequest
635
+ attr_accessor ml_input_channel_arn: ::String
636
+ attr_accessor membership_identifier: ::String
637
+ SENSITIVE: []
638
+ end
639
+
640
+ class GetMLInputChannelResponse
641
+ attr_accessor create_time: ::Time
642
+ attr_accessor update_time: ::Time
643
+ attr_accessor membership_identifier: ::String
644
+ attr_accessor collaboration_identifier: ::String
645
+ attr_accessor input_channel: Types::InputChannel
646
+ attr_accessor protected_query_identifier: ::String
647
+ attr_accessor ml_input_channel_arn: ::String
648
+ attr_accessor name: ::String
649
+ attr_accessor configured_model_algorithm_associations: ::Array[::String]
650
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
651
+ attr_accessor status_details: Types::StatusDetails
652
+ attr_accessor retention_in_days: ::Integer
653
+ attr_accessor number_of_records: ::Integer
654
+ attr_accessor number_of_files: ::Float
655
+ attr_accessor size_in_gb: ::Float
656
+ attr_accessor description: ::String
657
+ attr_accessor kms_key_arn: ::String
658
+ attr_accessor tags: ::Hash[::String, ::String]
659
+ SENSITIVE: []
660
+ end
661
+
662
+ class GetTrainedModelInferenceJobRequest
663
+ attr_accessor membership_identifier: ::String
664
+ attr_accessor trained_model_inference_job_arn: ::String
665
+ SENSITIVE: []
666
+ end
667
+
668
+ class GetTrainedModelInferenceJobResponse
669
+ attr_accessor create_time: ::Time
670
+ attr_accessor update_time: ::Time
671
+ attr_accessor trained_model_inference_job_arn: ::String
672
+ attr_accessor configured_model_algorithm_association_arn: ::String
673
+ attr_accessor name: ::String
674
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
675
+ attr_accessor trained_model_arn: ::String
676
+ attr_accessor resource_config: Types::InferenceResourceConfig
677
+ attr_accessor output_configuration: Types::InferenceOutputConfiguration
678
+ attr_accessor membership_identifier: ::String
679
+ attr_accessor data_source: Types::ModelInferenceDataSource
680
+ attr_accessor container_execution_parameters: Types::InferenceContainerExecutionParameters
681
+ attr_accessor status_details: Types::StatusDetails
682
+ attr_accessor description: ::String
683
+ attr_accessor inference_container_image_digest: ::String
684
+ attr_accessor environment: ::Hash[::String, ::String]
685
+ attr_accessor kms_key_arn: ::String
686
+ attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
687
+ attr_accessor metrics_status_details: ::String
688
+ attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
689
+ attr_accessor logs_status_details: ::String
690
+ attr_accessor tags: ::Hash[::String, ::String]
691
+ SENSITIVE: []
692
+ end
693
+
694
+ class GetTrainedModelRequest
695
+ attr_accessor trained_model_arn: ::String
696
+ attr_accessor membership_identifier: ::String
697
+ SENSITIVE: []
698
+ end
699
+
700
+ class GetTrainedModelResponse
701
+ attr_accessor membership_identifier: ::String
702
+ attr_accessor collaboration_identifier: ::String
703
+ attr_accessor trained_model_arn: ::String
704
+ attr_accessor name: ::String
705
+ attr_accessor description: ::String
706
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
707
+ attr_accessor status_details: Types::StatusDetails
708
+ attr_accessor configured_model_algorithm_association_arn: ::String
709
+ attr_accessor resource_config: Types::ResourceConfig
710
+ attr_accessor stopping_condition: Types::StoppingCondition
711
+ attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
712
+ attr_accessor metrics_status_details: ::String
713
+ attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
714
+ attr_accessor logs_status_details: ::String
715
+ attr_accessor training_container_image_digest: ::String
716
+ attr_accessor create_time: ::Time
717
+ attr_accessor update_time: ::Time
718
+ attr_accessor hyperparameters: ::Hash[::String, ::String]
719
+ attr_accessor environment: ::Hash[::String, ::String]
720
+ attr_accessor kms_key_arn: ::String
721
+ attr_accessor tags: ::Hash[::String, ::String]
722
+ attr_accessor data_channels: ::Array[Types::ModelTrainingDataChannel]
723
+ SENSITIVE: []
724
+ end
725
+
281
726
  class GetTrainingDatasetRequest
282
727
  attr_accessor training_dataset_arn: ::String
283
728
  SENSITIVE: []
@@ -303,6 +748,50 @@ module Aws::CleanRoomsML
303
748
  SENSITIVE: []
304
749
  end
305
750
 
751
+ class InferenceContainerConfig
752
+ attr_accessor image_uri: ::String
753
+ SENSITIVE: []
754
+ end
755
+
756
+ class InferenceContainerExecutionParameters
757
+ attr_accessor max_payload_in_mb: ::Integer
758
+ SENSITIVE: []
759
+ end
760
+
761
+ class InferenceOutputConfiguration
762
+ attr_accessor accept: ::String
763
+ attr_accessor members: ::Array[Types::InferenceReceiverMember]
764
+ SENSITIVE: []
765
+ end
766
+
767
+ class InferenceReceiverMember
768
+ attr_accessor account_id: ::String
769
+ SENSITIVE: []
770
+ end
771
+
772
+ class InferenceResourceConfig
773
+ attr_accessor 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")
774
+ attr_accessor instance_count: ::Integer
775
+ SENSITIVE: []
776
+ end
777
+
778
+ class InputChannel
779
+ attr_accessor data_source: Types::InputChannelDataSource
780
+ attr_accessor role_arn: ::String
781
+ SENSITIVE: []
782
+ end
783
+
784
+ class InputChannelDataSource
785
+ attr_accessor protected_query_input_parameters: Types::ProtectedQueryInputParameters
786
+ attr_accessor unknown: untyped
787
+ SENSITIVE: []
788
+
789
+ class ProtectedQueryInputParameters < InputChannelDataSource
790
+ end
791
+ class Unknown < InputChannelDataSource
792
+ end
793
+ end
794
+
306
795
  class ListAudienceExportJobsRequest
307
796
  attr_accessor next_token: ::String
308
797
  attr_accessor max_results: ::Integer
@@ -342,6 +831,73 @@ module Aws::CleanRoomsML
342
831
  SENSITIVE: []
343
832
  end
344
833
 
834
+ class ListCollaborationConfiguredModelAlgorithmAssociationsRequest
835
+ attr_accessor next_token: ::String
836
+ attr_accessor max_results: ::Integer
837
+ attr_accessor collaboration_identifier: ::String
838
+ SENSITIVE: []
839
+ end
840
+
841
+ class ListCollaborationConfiguredModelAlgorithmAssociationsResponse
842
+ attr_accessor next_token: ::String
843
+ attr_accessor collaboration_configured_model_algorithm_associations: ::Array[Types::CollaborationConfiguredModelAlgorithmAssociationSummary]
844
+ SENSITIVE: []
845
+ end
846
+
847
+ class ListCollaborationMLInputChannelsRequest
848
+ attr_accessor next_token: ::String
849
+ attr_accessor max_results: ::Integer
850
+ attr_accessor collaboration_identifier: ::String
851
+ SENSITIVE: []
852
+ end
853
+
854
+ class ListCollaborationMLInputChannelsResponse
855
+ attr_accessor next_token: ::String
856
+ attr_accessor collaboration_ml_input_channels_list: ::Array[Types::CollaborationMLInputChannelSummary]
857
+ SENSITIVE: []
858
+ end
859
+
860
+ class ListCollaborationTrainedModelExportJobsRequest
861
+ attr_accessor next_token: ::String
862
+ attr_accessor max_results: ::Integer
863
+ attr_accessor collaboration_identifier: ::String
864
+ attr_accessor trained_model_arn: ::String
865
+ SENSITIVE: []
866
+ end
867
+
868
+ class ListCollaborationTrainedModelExportJobsResponse
869
+ attr_accessor next_token: ::String
870
+ attr_accessor collaboration_trained_model_export_jobs: ::Array[Types::CollaborationTrainedModelExportJobSummary]
871
+ SENSITIVE: []
872
+ end
873
+
874
+ class ListCollaborationTrainedModelInferenceJobsRequest
875
+ attr_accessor next_token: ::String
876
+ attr_accessor max_results: ::Integer
877
+ attr_accessor collaboration_identifier: ::String
878
+ attr_accessor trained_model_arn: ::String
879
+ SENSITIVE: []
880
+ end
881
+
882
+ class ListCollaborationTrainedModelInferenceJobsResponse
883
+ attr_accessor next_token: ::String
884
+ attr_accessor collaboration_trained_model_inference_jobs: ::Array[Types::CollaborationTrainedModelInferenceJobSummary]
885
+ SENSITIVE: []
886
+ end
887
+
888
+ class ListCollaborationTrainedModelsRequest
889
+ attr_accessor next_token: ::String
890
+ attr_accessor max_results: ::Integer
891
+ attr_accessor collaboration_identifier: ::String
892
+ SENSITIVE: []
893
+ end
894
+
895
+ class ListCollaborationTrainedModelsResponse
896
+ attr_accessor next_token: ::String
897
+ attr_accessor collaboration_trained_models: ::Array[Types::CollaborationTrainedModelSummary]
898
+ SENSITIVE: []
899
+ end
900
+
345
901
  class ListConfiguredAudienceModelsRequest
346
902
  attr_accessor next_token: ::String
347
903
  attr_accessor max_results: ::Integer
@@ -354,6 +910,44 @@ module Aws::CleanRoomsML
354
910
  SENSITIVE: []
355
911
  end
356
912
 
913
+ class ListConfiguredModelAlgorithmAssociationsRequest
914
+ attr_accessor next_token: ::String
915
+ attr_accessor max_results: ::Integer
916
+ attr_accessor membership_identifier: ::String
917
+ SENSITIVE: []
918
+ end
919
+
920
+ class ListConfiguredModelAlgorithmAssociationsResponse
921
+ attr_accessor next_token: ::String
922
+ attr_accessor configured_model_algorithm_associations: ::Array[Types::ConfiguredModelAlgorithmAssociationSummary]
923
+ SENSITIVE: []
924
+ end
925
+
926
+ class ListConfiguredModelAlgorithmsRequest
927
+ attr_accessor next_token: ::String
928
+ attr_accessor max_results: ::Integer
929
+ SENSITIVE: []
930
+ end
931
+
932
+ class ListConfiguredModelAlgorithmsResponse
933
+ attr_accessor next_token: ::String
934
+ attr_accessor configured_model_algorithms: ::Array[Types::ConfiguredModelAlgorithmSummary]
935
+ SENSITIVE: []
936
+ end
937
+
938
+ class ListMLInputChannelsRequest
939
+ attr_accessor next_token: ::String
940
+ attr_accessor max_results: ::Integer
941
+ attr_accessor membership_identifier: ::String
942
+ SENSITIVE: []
943
+ end
944
+
945
+ class ListMLInputChannelsResponse
946
+ attr_accessor next_token: ::String
947
+ attr_accessor ml_input_channels_list: ::Array[Types::MLInputChannelSummary]
948
+ SENSITIVE: []
949
+ end
950
+
357
951
  class ListTagsForResourceRequest
358
952
  attr_accessor resource_arn: ::String
359
953
  SENSITIVE: []
@@ -364,6 +958,33 @@ module Aws::CleanRoomsML
364
958
  SENSITIVE: []
365
959
  end
366
960
 
961
+ class ListTrainedModelInferenceJobsRequest
962
+ attr_accessor next_token: ::String
963
+ attr_accessor max_results: ::Integer
964
+ attr_accessor membership_identifier: ::String
965
+ attr_accessor trained_model_arn: ::String
966
+ SENSITIVE: []
967
+ end
968
+
969
+ class ListTrainedModelInferenceJobsResponse
970
+ attr_accessor next_token: ::String
971
+ attr_accessor trained_model_inference_jobs: ::Array[Types::TrainedModelInferenceJobSummary]
972
+ SENSITIVE: []
973
+ end
974
+
975
+ class ListTrainedModelsRequest
976
+ attr_accessor next_token: ::String
977
+ attr_accessor max_results: ::Integer
978
+ attr_accessor membership_identifier: ::String
979
+ SENSITIVE: []
980
+ end
981
+
982
+ class ListTrainedModelsResponse
983
+ attr_accessor next_token: ::String
984
+ attr_accessor trained_models: ::Array[Types::TrainedModelSummary]
985
+ SENSITIVE: []
986
+ end
987
+
367
988
  class ListTrainingDatasetsRequest
368
989
  attr_accessor next_token: ::String
369
990
  attr_accessor max_results: ::Integer
@@ -376,6 +997,72 @@ module Aws::CleanRoomsML
376
997
  SENSITIVE: []
377
998
  end
378
999
 
1000
+ class LogsConfigurationPolicy
1001
+ attr_accessor allowed_account_ids: ::Array[::String]
1002
+ attr_accessor filter_pattern: ::String
1003
+ SENSITIVE: []
1004
+ end
1005
+
1006
+ class MLInputChannelSummary
1007
+ attr_accessor create_time: ::Time
1008
+ attr_accessor update_time: ::Time
1009
+ attr_accessor membership_identifier: ::String
1010
+ attr_accessor collaboration_identifier: ::String
1011
+ attr_accessor name: ::String
1012
+ attr_accessor configured_model_algorithm_associations: ::Array[::String]
1013
+ attr_accessor protected_query_identifier: ::String
1014
+ attr_accessor ml_input_channel_arn: ::String
1015
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
1016
+ attr_accessor description: ::String
1017
+ SENSITIVE: []
1018
+ end
1019
+
1020
+ class MLOutputConfiguration
1021
+ attr_accessor destination: Types::Destination
1022
+ attr_accessor role_arn: ::String
1023
+ SENSITIVE: []
1024
+ end
1025
+
1026
+ class MetricDefinition
1027
+ attr_accessor name: ::String
1028
+ attr_accessor regex: ::String
1029
+ SENSITIVE: []
1030
+ end
1031
+
1032
+ class MetricsConfigurationPolicy
1033
+ attr_accessor noise_level: ("HIGH" | "MEDIUM" | "LOW" | "NONE")
1034
+ SENSITIVE: []
1035
+ end
1036
+
1037
+ class ModelInferenceDataSource
1038
+ attr_accessor ml_input_channel_arn: ::String
1039
+ SENSITIVE: []
1040
+ end
1041
+
1042
+ class ModelTrainingDataChannel
1043
+ attr_accessor ml_input_channel_arn: ::String
1044
+ attr_accessor channel_name: ::String
1045
+ SENSITIVE: []
1046
+ end
1047
+
1048
+ class PrivacyConfiguration
1049
+ attr_accessor policies: Types::PrivacyConfigurationPolicies
1050
+ SENSITIVE: []
1051
+ end
1052
+
1053
+ class PrivacyConfigurationPolicies
1054
+ attr_accessor trained_models: Types::TrainedModelsConfigurationPolicy
1055
+ attr_accessor trained_model_exports: Types::TrainedModelExportsConfigurationPolicy
1056
+ attr_accessor trained_model_inference_jobs: Types::TrainedModelInferenceJobsConfigurationPolicy
1057
+ SENSITIVE: []
1058
+ end
1059
+
1060
+ class ProtectedQueryInputParameters
1061
+ attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
1062
+ attr_accessor compute_configuration: Types::ComputeConfiguration
1063
+ SENSITIVE: [:sql_parameters]
1064
+ end
1065
+
379
1066
  class ProtectedQuerySQLParameters
380
1067
  attr_accessor query_string: ::String
381
1068
  attr_accessor analysis_template_arn: ::String
@@ -397,12 +1084,25 @@ module Aws::CleanRoomsML
397
1084
  SENSITIVE: []
398
1085
  end
399
1086
 
1087
+ class PutMLConfigurationRequest
1088
+ attr_accessor membership_identifier: ::String
1089
+ attr_accessor default_output_location: Types::MLOutputConfiguration
1090
+ SENSITIVE: []
1091
+ end
1092
+
400
1093
  class RelevanceMetric
401
1094
  attr_accessor audience_size: Types::AudienceSize
402
1095
  attr_accessor score: ::Float
403
1096
  SENSITIVE: []
404
1097
  end
405
1098
 
1099
+ class ResourceConfig
1100
+ attr_accessor instance_count: ::Integer
1101
+ attr_accessor 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")
1102
+ attr_accessor volume_size_in_gb: ::Integer
1103
+ SENSITIVE: []
1104
+ end
1105
+
406
1106
  class ResourceNotFoundException
407
1107
  attr_accessor message: ::String
408
1108
  SENSITIVE: []
@@ -442,12 +1142,47 @@ module Aws::CleanRoomsML
442
1142
  SENSITIVE: []
443
1143
  end
444
1144
 
1145
+ class StartTrainedModelExportJobRequest
1146
+ attr_accessor name: ::String
1147
+ attr_accessor trained_model_arn: ::String
1148
+ attr_accessor membership_identifier: ::String
1149
+ attr_accessor output_configuration: Types::TrainedModelExportOutputConfiguration
1150
+ attr_accessor description: ::String
1151
+ SENSITIVE: []
1152
+ end
1153
+
1154
+ class StartTrainedModelInferenceJobRequest
1155
+ attr_accessor membership_identifier: ::String
1156
+ attr_accessor name: ::String
1157
+ attr_accessor trained_model_arn: ::String
1158
+ attr_accessor configured_model_algorithm_association_arn: ::String
1159
+ attr_accessor resource_config: Types::InferenceResourceConfig
1160
+ attr_accessor output_configuration: Types::InferenceOutputConfiguration
1161
+ attr_accessor data_source: Types::ModelInferenceDataSource
1162
+ attr_accessor description: ::String
1163
+ attr_accessor container_execution_parameters: Types::InferenceContainerExecutionParameters
1164
+ attr_accessor environment: ::Hash[::String, ::String]
1165
+ attr_accessor kms_key_arn: ::String
1166
+ attr_accessor tags: ::Hash[::String, ::String]
1167
+ SENSITIVE: []
1168
+ end
1169
+
1170
+ class StartTrainedModelInferenceJobResponse
1171
+ attr_accessor trained_model_inference_job_arn: ::String
1172
+ SENSITIVE: []
1173
+ end
1174
+
445
1175
  class StatusDetails
446
1176
  attr_accessor status_code: ::String
447
1177
  attr_accessor message: ::String
448
1178
  SENSITIVE: []
449
1179
  end
450
1180
 
1181
+ class StoppingCondition
1182
+ attr_accessor max_runtime_in_seconds: ::Integer
1183
+ SENSITIVE: []
1184
+ end
1185
+
451
1186
  class TagResourceRequest
452
1187
  attr_accessor resource_arn: ::String
453
1188
  attr_accessor tags: ::Hash[::String, ::String]
@@ -457,6 +1192,78 @@ module Aws::CleanRoomsML
457
1192
  class TagResourceResponse < Aws::EmptyStructure
458
1193
  end
459
1194
 
1195
+ class TrainedModelExportOutputConfiguration
1196
+ attr_accessor members: ::Array[Types::TrainedModelExportReceiverMember]
1197
+ SENSITIVE: []
1198
+ end
1199
+
1200
+ class TrainedModelExportReceiverMember
1201
+ attr_accessor account_id: ::String
1202
+ SENSITIVE: []
1203
+ end
1204
+
1205
+ class TrainedModelExportsConfigurationPolicy
1206
+ attr_accessor max_size: Types::TrainedModelExportsMaxSize
1207
+ attr_accessor files_to_export: ::Array[("MODEL" | "OUTPUT")]
1208
+ SENSITIVE: []
1209
+ end
1210
+
1211
+ class TrainedModelExportsMaxSize
1212
+ attr_accessor unit: ("GB")
1213
+ attr_accessor value: ::Float
1214
+ SENSITIVE: []
1215
+ end
1216
+
1217
+ class TrainedModelInferenceJobSummary
1218
+ attr_accessor trained_model_inference_job_arn: ::String
1219
+ attr_accessor configured_model_algorithm_association_arn: ::String
1220
+ attr_accessor membership_identifier: ::String
1221
+ attr_accessor trained_model_arn: ::String
1222
+ attr_accessor collaboration_identifier: ::String
1223
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
1224
+ attr_accessor output_configuration: Types::InferenceOutputConfiguration
1225
+ attr_accessor name: ::String
1226
+ attr_accessor description: ::String
1227
+ attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
1228
+ attr_accessor metrics_status_details: ::String
1229
+ attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
1230
+ attr_accessor logs_status_details: ::String
1231
+ attr_accessor create_time: ::Time
1232
+ attr_accessor update_time: ::Time
1233
+ SENSITIVE: []
1234
+ end
1235
+
1236
+ class TrainedModelInferenceJobsConfigurationPolicy
1237
+ attr_accessor container_logs: ::Array[Types::LogsConfigurationPolicy]
1238
+ attr_accessor max_output_size: Types::TrainedModelInferenceMaxOutputSize
1239
+ SENSITIVE: []
1240
+ end
1241
+
1242
+ class TrainedModelInferenceMaxOutputSize
1243
+ attr_accessor unit: ("GB")
1244
+ attr_accessor value: ::Float
1245
+ SENSITIVE: []
1246
+ end
1247
+
1248
+ class TrainedModelSummary
1249
+ attr_accessor create_time: ::Time
1250
+ attr_accessor update_time: ::Time
1251
+ attr_accessor trained_model_arn: ::String
1252
+ attr_accessor name: ::String
1253
+ attr_accessor description: ::String
1254
+ attr_accessor membership_identifier: ::String
1255
+ attr_accessor collaboration_identifier: ::String
1256
+ attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
1257
+ attr_accessor configured_model_algorithm_association_arn: ::String
1258
+ SENSITIVE: []
1259
+ end
1260
+
1261
+ class TrainedModelsConfigurationPolicy
1262
+ attr_accessor container_logs: ::Array[Types::LogsConfigurationPolicy]
1263
+ attr_accessor container_metrics: Types::MetricsConfigurationPolicy
1264
+ SENSITIVE: []
1265
+ end
1266
+
460
1267
  class TrainingDatasetSummary
461
1268
  attr_accessor create_time: ::Time
462
1269
  attr_accessor update_time: ::Time
@@ -496,5 +1303,11 @@ module Aws::CleanRoomsML
496
1303
  attr_accessor message: ::String
497
1304
  SENSITIVE: []
498
1305
  end
1306
+
1307
+ class WorkerComputeConfiguration
1308
+ attr_accessor type: ("CR.1X" | "CR.4X")
1309
+ attr_accessor number: ::Integer
1310
+ SENSITIVE: []
1311
+ end
499
1312
  end
500
1313
  end