aws-sdk-cleanroomsml 1.26.0 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanroomsml/client.rb +215 -2
- data/lib/aws-sdk-cleanroomsml/client_api.rb +150 -22
- data/lib/aws-sdk-cleanroomsml/errors.rb +42 -0
- data/lib/aws-sdk-cleanroomsml/types.rb +435 -21
- data/lib/aws-sdk-cleanroomsml.rb +1 -1
- data/sig/client.rbs +53 -8
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +75 -0
- metadata +1 -1
data/lib/aws-sdk-cleanroomsml.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -80,7 +80,8 @@ module Aws
|
|
80
80
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#cancel_trained_model-instance_method
|
81
81
|
def cancel_trained_model: (
|
82
82
|
membership_identifier: ::String,
|
83
|
-
trained_model_arn: ::String
|
83
|
+
trained_model_arn: ::String,
|
84
|
+
?version_identifier: ::String
|
84
85
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
85
86
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
86
87
|
|
@@ -184,6 +185,10 @@ module Aws
|
|
184
185
|
]?,
|
185
186
|
container_metrics: {
|
186
187
|
noise_level: ("HIGH" | "MEDIUM" | "LOW" | "NONE")
|
188
|
+
}?,
|
189
|
+
max_artifact_size: {
|
190
|
+
unit: ("GB"),
|
191
|
+
value: ::Float
|
187
192
|
}?
|
188
193
|
}?,
|
189
194
|
trained_model_exports: {
|
@@ -248,6 +253,7 @@ module Aws
|
|
248
253
|
interface _CreateTrainedModelResponseSuccess
|
249
254
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrainedModelResponse]
|
250
255
|
def trained_model_arn: () -> ::String
|
256
|
+
def version_identifier: () -> ::String
|
251
257
|
end
|
252
258
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_trained_model-instance_method
|
253
259
|
def create_trained_model: (
|
@@ -264,12 +270,21 @@ module Aws
|
|
264
270
|
?stopping_condition: {
|
265
271
|
max_runtime_in_seconds: ::Integer?
|
266
272
|
},
|
273
|
+
?incremental_training_data_channels: Array[
|
274
|
+
{
|
275
|
+
trained_model_arn: ::String,
|
276
|
+
version_identifier: ::String?,
|
277
|
+
channel_name: ::String
|
278
|
+
},
|
279
|
+
],
|
267
280
|
data_channels: Array[
|
268
281
|
{
|
269
282
|
ml_input_channel_arn: ::String,
|
270
|
-
channel_name: ::String
|
283
|
+
channel_name: ::String,
|
284
|
+
s3_data_distribution_type: ("FullyReplicated" | "ShardedByS3Key")?
|
271
285
|
},
|
272
286
|
],
|
287
|
+
?training_input_mode: ("File" | "FastFile" | "Pipe"),
|
273
288
|
?description: ::String,
|
274
289
|
?kms_key_arn: ::String,
|
275
290
|
?tags: Hash[::String, ::String]
|
@@ -362,7 +377,8 @@ module Aws
|
|
362
377
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_trained_model_output-instance_method
|
363
378
|
def delete_trained_model_output: (
|
364
379
|
trained_model_arn: ::String,
|
365
|
-
membership_identifier: ::String
|
380
|
+
membership_identifier: ::String,
|
381
|
+
?version_identifier: ::String
|
366
382
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
367
383
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
368
384
|
|
@@ -465,12 +481,15 @@ module Aws
|
|
465
481
|
def membership_identifier: () -> ::String
|
466
482
|
def collaboration_identifier: () -> ::String
|
467
483
|
def trained_model_arn: () -> ::String
|
484
|
+
def version_identifier: () -> ::String
|
485
|
+
def incremental_training_data_channels: () -> ::Array[Types::IncrementalTrainingDataChannelOutput]
|
468
486
|
def name: () -> ::String
|
469
487
|
def description: () -> ::String
|
470
488
|
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")
|
471
489
|
def status_details: () -> Types::StatusDetails
|
472
490
|
def configured_model_algorithm_association_arn: () -> ::String
|
473
491
|
def resource_config: () -> Types::ResourceConfig
|
492
|
+
def training_input_mode: () -> ("File" | "FastFile" | "Pipe")
|
474
493
|
def stopping_condition: () -> Types::StoppingCondition
|
475
494
|
def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
476
495
|
def metrics_status_details: () -> ::String
|
@@ -484,7 +503,8 @@ module Aws
|
|
484
503
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_collaboration_trained_model-instance_method
|
485
504
|
def get_collaboration_trained_model: (
|
486
505
|
trained_model_arn: ::String,
|
487
|
-
collaboration_identifier: ::String
|
506
|
+
collaboration_identifier: ::String,
|
507
|
+
?version_identifier: ::String
|
488
508
|
) -> _GetCollaborationTrainedModelResponseSuccess
|
489
509
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationTrainedModelResponseSuccess
|
490
510
|
|
@@ -607,12 +627,15 @@ module Aws
|
|
607
627
|
def membership_identifier: () -> ::String
|
608
628
|
def collaboration_identifier: () -> ::String
|
609
629
|
def trained_model_arn: () -> ::String
|
630
|
+
def version_identifier: () -> ::String
|
631
|
+
def incremental_training_data_channels: () -> ::Array[Types::IncrementalTrainingDataChannelOutput]
|
610
632
|
def name: () -> ::String
|
611
633
|
def description: () -> ::String
|
612
634
|
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")
|
613
635
|
def status_details: () -> Types::StatusDetails
|
614
636
|
def configured_model_algorithm_association_arn: () -> ::String
|
615
637
|
def resource_config: () -> Types::ResourceConfig
|
638
|
+
def training_input_mode: () -> ("File" | "FastFile" | "Pipe")
|
616
639
|
def stopping_condition: () -> Types::StoppingCondition
|
617
640
|
def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
618
641
|
def metrics_status_details: () -> ::String
|
@@ -630,7 +653,8 @@ module Aws
|
|
630
653
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_trained_model-instance_method
|
631
654
|
def get_trained_model: (
|
632
655
|
trained_model_arn: ::String,
|
633
|
-
membership_identifier: ::String
|
656
|
+
membership_identifier: ::String,
|
657
|
+
?version_identifier: ::String
|
634
658
|
) -> _GetTrainedModelResponseSuccess
|
635
659
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrainedModelResponseSuccess
|
636
660
|
|
@@ -643,6 +667,7 @@ module Aws
|
|
643
667
|
def name: () -> ::String
|
644
668
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
645
669
|
def trained_model_arn: () -> ::String
|
670
|
+
def trained_model_version_identifier: () -> ::String
|
646
671
|
def resource_config: () -> Types::InferenceResourceConfig
|
647
672
|
def output_configuration: () -> Types::InferenceOutputConfiguration
|
648
673
|
def membership_identifier: () -> ::String
|
@@ -759,7 +784,8 @@ module Aws
|
|
759
784
|
?next_token: ::String,
|
760
785
|
?max_results: ::Integer,
|
761
786
|
collaboration_identifier: ::String,
|
762
|
-
trained_model_arn: ::String
|
787
|
+
trained_model_arn: ::String,
|
788
|
+
?trained_model_version_identifier: ::String
|
763
789
|
) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
|
764
790
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
|
765
791
|
|
@@ -773,7 +799,8 @@ module Aws
|
|
773
799
|
?next_token: ::String,
|
774
800
|
?max_results: ::Integer,
|
775
801
|
collaboration_identifier: ::String,
|
776
|
-
?trained_model_arn: ::String
|
802
|
+
?trained_model_arn: ::String,
|
803
|
+
?trained_model_version_identifier: ::String
|
777
804
|
) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
|
778
805
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
|
779
806
|
|
@@ -860,10 +887,26 @@ module Aws
|
|
860
887
|
?next_token: ::String,
|
861
888
|
?max_results: ::Integer,
|
862
889
|
membership_identifier: ::String,
|
863
|
-
?trained_model_arn: ::String
|
890
|
+
?trained_model_arn: ::String,
|
891
|
+
?trained_model_version_identifier: ::String
|
864
892
|
) -> _ListTrainedModelInferenceJobsResponseSuccess
|
865
893
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelInferenceJobsResponseSuccess
|
866
894
|
|
895
|
+
interface _ListTrainedModelVersionsResponseSuccess
|
896
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelVersionsResponse]
|
897
|
+
def next_token: () -> ::String
|
898
|
+
def trained_models: () -> ::Array[Types::TrainedModelSummary]
|
899
|
+
end
|
900
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_trained_model_versions-instance_method
|
901
|
+
def list_trained_model_versions: (
|
902
|
+
?next_token: ::String,
|
903
|
+
?max_results: ::Integer,
|
904
|
+
membership_identifier: ::String,
|
905
|
+
trained_model_arn: ::String,
|
906
|
+
?status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
907
|
+
) -> _ListTrainedModelVersionsResponseSuccess
|
908
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelVersionsResponseSuccess
|
909
|
+
|
867
910
|
interface _ListTrainedModelsResponseSuccess
|
868
911
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelsResponse]
|
869
912
|
def next_token: () -> ::String
|
@@ -965,6 +1008,7 @@ module Aws
|
|
965
1008
|
def start_trained_model_export_job: (
|
966
1009
|
name: ::String,
|
967
1010
|
trained_model_arn: ::String,
|
1011
|
+
?trained_model_version_identifier: ::String,
|
968
1012
|
membership_identifier: ::String,
|
969
1013
|
output_configuration: {
|
970
1014
|
members: Array[
|
@@ -986,6 +1030,7 @@ module Aws
|
|
986
1030
|
membership_identifier: ::String,
|
987
1031
|
name: ::String,
|
988
1032
|
trained_model_arn: ::String,
|
1033
|
+
?trained_model_version_identifier: ::String,
|
989
1034
|
?configured_model_algorithm_association_arn: ::String,
|
990
1035
|
resource_config: {
|
991
1036
|
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"),
|
data/sig/errors.rbs
CHANGED
@@ -17,11 +17,19 @@ module Aws
|
|
17
17
|
class ConflictException < ::Aws::Errors::ServiceError
|
18
18
|
def message: () -> ::String
|
19
19
|
end
|
20
|
+
class InternalServiceException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
20
23
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
21
24
|
def message: () -> ::String
|
22
25
|
end
|
23
26
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
24
27
|
def message: () -> ::String
|
28
|
+
def quota_name: () -> ::String
|
29
|
+
def quota_value: () -> ::String
|
30
|
+
end
|
31
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
32
|
+
def message: () -> ::String
|
25
33
|
end
|
26
34
|
class ValidationException < ::Aws::Errors::ServiceError
|
27
35
|
def message: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -90,6 +90,7 @@ module Aws::CleanRoomsML
|
|
90
90
|
class CancelTrainedModelRequest
|
91
91
|
attr_accessor membership_identifier: ::String
|
92
92
|
attr_accessor trained_model_arn: ::String
|
93
|
+
attr_accessor version_identifier: ::String
|
93
94
|
SENSITIVE: []
|
94
95
|
end
|
95
96
|
|
@@ -130,6 +131,7 @@ module Aws::CleanRoomsML
|
|
130
131
|
attr_accessor description: ::String
|
131
132
|
attr_accessor creator_account_id: ::String
|
132
133
|
attr_accessor trained_model_arn: ::String
|
134
|
+
attr_accessor trained_model_version_identifier: ::String
|
133
135
|
attr_accessor membership_identifier: ::String
|
134
136
|
attr_accessor collaboration_identifier: ::String
|
135
137
|
SENSITIVE: []
|
@@ -140,6 +142,7 @@ module Aws::CleanRoomsML
|
|
140
142
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
141
143
|
attr_accessor membership_identifier: ::String
|
142
144
|
attr_accessor trained_model_arn: ::String
|
145
|
+
attr_accessor trained_model_version_identifier: ::String
|
143
146
|
attr_accessor collaboration_identifier: ::String
|
144
147
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
145
148
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -160,6 +163,8 @@ module Aws::CleanRoomsML
|
|
160
163
|
attr_accessor update_time: ::Time
|
161
164
|
attr_accessor trained_model_arn: ::String
|
162
165
|
attr_accessor name: ::String
|
166
|
+
attr_accessor version_identifier: ::String
|
167
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
163
168
|
attr_accessor description: ::String
|
164
169
|
attr_accessor membership_identifier: ::String
|
165
170
|
attr_accessor collaboration_identifier: ::String
|
@@ -328,7 +333,9 @@ module Aws::CleanRoomsML
|
|
328
333
|
attr_accessor environment: ::Hash[::String, ::String]
|
329
334
|
attr_accessor resource_config: Types::ResourceConfig
|
330
335
|
attr_accessor stopping_condition: Types::StoppingCondition
|
336
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannel]
|
331
337
|
attr_accessor data_channels: ::Array[Types::ModelTrainingDataChannel]
|
338
|
+
attr_accessor training_input_mode: ("File" | "FastFile" | "Pipe")
|
332
339
|
attr_accessor description: ::String
|
333
340
|
attr_accessor kms_key_arn: ::String
|
334
341
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -337,6 +344,7 @@ module Aws::CleanRoomsML
|
|
337
344
|
|
338
345
|
class CreateTrainedModelResponse
|
339
346
|
attr_accessor trained_model_arn: ::String
|
347
|
+
attr_accessor version_identifier: ::String
|
340
348
|
SENSITIVE: []
|
341
349
|
end
|
342
350
|
|
@@ -416,6 +424,7 @@ module Aws::CleanRoomsML
|
|
416
424
|
class DeleteTrainedModelOutputRequest
|
417
425
|
attr_accessor trained_model_arn: ::String
|
418
426
|
attr_accessor membership_identifier: ::String
|
427
|
+
attr_accessor version_identifier: ::String
|
419
428
|
SENSITIVE: []
|
420
429
|
end
|
421
430
|
|
@@ -520,6 +529,7 @@ module Aws::CleanRoomsML
|
|
520
529
|
class GetCollaborationTrainedModelRequest
|
521
530
|
attr_accessor trained_model_arn: ::String
|
522
531
|
attr_accessor collaboration_identifier: ::String
|
532
|
+
attr_accessor version_identifier: ::String
|
523
533
|
SENSITIVE: []
|
524
534
|
end
|
525
535
|
|
@@ -527,12 +537,15 @@ module Aws::CleanRoomsML
|
|
527
537
|
attr_accessor membership_identifier: ::String
|
528
538
|
attr_accessor collaboration_identifier: ::String
|
529
539
|
attr_accessor trained_model_arn: ::String
|
540
|
+
attr_accessor version_identifier: ::String
|
541
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
530
542
|
attr_accessor name: ::String
|
531
543
|
attr_accessor description: ::String
|
532
544
|
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
545
|
attr_accessor status_details: Types::StatusDetails
|
534
546
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
535
547
|
attr_accessor resource_config: Types::ResourceConfig
|
548
|
+
attr_accessor training_input_mode: ("File" | "FastFile" | "Pipe")
|
536
549
|
attr_accessor stopping_condition: Types::StoppingCondition
|
537
550
|
attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
538
551
|
attr_accessor metrics_status_details: ::String
|
@@ -673,6 +686,7 @@ module Aws::CleanRoomsML
|
|
673
686
|
attr_accessor name: ::String
|
674
687
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
675
688
|
attr_accessor trained_model_arn: ::String
|
689
|
+
attr_accessor trained_model_version_identifier: ::String
|
676
690
|
attr_accessor resource_config: Types::InferenceResourceConfig
|
677
691
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
678
692
|
attr_accessor membership_identifier: ::String
|
@@ -694,6 +708,7 @@ module Aws::CleanRoomsML
|
|
694
708
|
class GetTrainedModelRequest
|
695
709
|
attr_accessor trained_model_arn: ::String
|
696
710
|
attr_accessor membership_identifier: ::String
|
711
|
+
attr_accessor version_identifier: ::String
|
697
712
|
SENSITIVE: []
|
698
713
|
end
|
699
714
|
|
@@ -701,12 +716,15 @@ module Aws::CleanRoomsML
|
|
701
716
|
attr_accessor membership_identifier: ::String
|
702
717
|
attr_accessor collaboration_identifier: ::String
|
703
718
|
attr_accessor trained_model_arn: ::String
|
719
|
+
attr_accessor version_identifier: ::String
|
720
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
704
721
|
attr_accessor name: ::String
|
705
722
|
attr_accessor description: ::String
|
706
723
|
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
724
|
attr_accessor status_details: Types::StatusDetails
|
708
725
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
709
726
|
attr_accessor resource_config: Types::ResourceConfig
|
727
|
+
attr_accessor training_input_mode: ("File" | "FastFile" | "Pipe")
|
710
728
|
attr_accessor stopping_condition: Types::StoppingCondition
|
711
729
|
attr_accessor metrics_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
712
730
|
attr_accessor metrics_status_details: ::String
|
@@ -748,6 +766,20 @@ module Aws::CleanRoomsML
|
|
748
766
|
SENSITIVE: []
|
749
767
|
end
|
750
768
|
|
769
|
+
class IncrementalTrainingDataChannel
|
770
|
+
attr_accessor trained_model_arn: ::String
|
771
|
+
attr_accessor version_identifier: ::String
|
772
|
+
attr_accessor channel_name: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class IncrementalTrainingDataChannelOutput
|
777
|
+
attr_accessor channel_name: ::String
|
778
|
+
attr_accessor version_identifier: ::String
|
779
|
+
attr_accessor model_name: ::String
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
751
783
|
class InferenceContainerConfig
|
752
784
|
attr_accessor image_uri: ::String
|
753
785
|
SENSITIVE: []
|
@@ -792,6 +824,11 @@ module Aws::CleanRoomsML
|
|
792
824
|
end
|
793
825
|
end
|
794
826
|
|
827
|
+
class InternalServiceException
|
828
|
+
attr_accessor message: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
795
832
|
class ListAudienceExportJobsRequest
|
796
833
|
attr_accessor next_token: ::String
|
797
834
|
attr_accessor max_results: ::Integer
|
@@ -862,6 +899,7 @@ module Aws::CleanRoomsML
|
|
862
899
|
attr_accessor max_results: ::Integer
|
863
900
|
attr_accessor collaboration_identifier: ::String
|
864
901
|
attr_accessor trained_model_arn: ::String
|
902
|
+
attr_accessor trained_model_version_identifier: ::String
|
865
903
|
SENSITIVE: []
|
866
904
|
end
|
867
905
|
|
@@ -876,6 +914,7 @@ module Aws::CleanRoomsML
|
|
876
914
|
attr_accessor max_results: ::Integer
|
877
915
|
attr_accessor collaboration_identifier: ::String
|
878
916
|
attr_accessor trained_model_arn: ::String
|
917
|
+
attr_accessor trained_model_version_identifier: ::String
|
879
918
|
SENSITIVE: []
|
880
919
|
end
|
881
920
|
|
@@ -963,6 +1002,7 @@ module Aws::CleanRoomsML
|
|
963
1002
|
attr_accessor max_results: ::Integer
|
964
1003
|
attr_accessor membership_identifier: ::String
|
965
1004
|
attr_accessor trained_model_arn: ::String
|
1005
|
+
attr_accessor trained_model_version_identifier: ::String
|
966
1006
|
SENSITIVE: []
|
967
1007
|
end
|
968
1008
|
|
@@ -972,6 +1012,21 @@ module Aws::CleanRoomsML
|
|
972
1012
|
SENSITIVE: []
|
973
1013
|
end
|
974
1014
|
|
1015
|
+
class ListTrainedModelVersionsRequest
|
1016
|
+
attr_accessor next_token: ::String
|
1017
|
+
attr_accessor max_results: ::Integer
|
1018
|
+
attr_accessor membership_identifier: ::String
|
1019
|
+
attr_accessor trained_model_arn: ::String
|
1020
|
+
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")
|
1021
|
+
SENSITIVE: []
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
class ListTrainedModelVersionsResponse
|
1025
|
+
attr_accessor next_token: ::String
|
1026
|
+
attr_accessor trained_models: ::Array[Types::TrainedModelSummary]
|
1027
|
+
SENSITIVE: []
|
1028
|
+
end
|
1029
|
+
|
975
1030
|
class ListTrainedModelsRequest
|
976
1031
|
attr_accessor next_token: ::String
|
977
1032
|
attr_accessor max_results: ::Integer
|
@@ -1042,6 +1097,7 @@ module Aws::CleanRoomsML
|
|
1042
1097
|
class ModelTrainingDataChannel
|
1043
1098
|
attr_accessor ml_input_channel_arn: ::String
|
1044
1099
|
attr_accessor channel_name: ::String
|
1100
|
+
attr_accessor s3_data_distribution_type: ("FullyReplicated" | "ShardedByS3Key")
|
1045
1101
|
SENSITIVE: []
|
1046
1102
|
end
|
1047
1103
|
|
@@ -1115,6 +1171,8 @@ module Aws::CleanRoomsML
|
|
1115
1171
|
|
1116
1172
|
class ServiceQuotaExceededException
|
1117
1173
|
attr_accessor message: ::String
|
1174
|
+
attr_accessor quota_name: ::String
|
1175
|
+
attr_accessor quota_value: ::Float
|
1118
1176
|
SENSITIVE: []
|
1119
1177
|
end
|
1120
1178
|
|
@@ -1145,6 +1203,7 @@ module Aws::CleanRoomsML
|
|
1145
1203
|
class StartTrainedModelExportJobRequest
|
1146
1204
|
attr_accessor name: ::String
|
1147
1205
|
attr_accessor trained_model_arn: ::String
|
1206
|
+
attr_accessor trained_model_version_identifier: ::String
|
1148
1207
|
attr_accessor membership_identifier: ::String
|
1149
1208
|
attr_accessor output_configuration: Types::TrainedModelExportOutputConfiguration
|
1150
1209
|
attr_accessor description: ::String
|
@@ -1155,6 +1214,7 @@ module Aws::CleanRoomsML
|
|
1155
1214
|
attr_accessor membership_identifier: ::String
|
1156
1215
|
attr_accessor name: ::String
|
1157
1216
|
attr_accessor trained_model_arn: ::String
|
1217
|
+
attr_accessor trained_model_version_identifier: ::String
|
1158
1218
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
1159
1219
|
attr_accessor resource_config: Types::InferenceResourceConfig
|
1160
1220
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -1192,6 +1252,17 @@ module Aws::CleanRoomsML
|
|
1192
1252
|
class TagResourceResponse < Aws::EmptyStructure
|
1193
1253
|
end
|
1194
1254
|
|
1255
|
+
class ThrottlingException
|
1256
|
+
attr_accessor message: ::String
|
1257
|
+
SENSITIVE: []
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
class TrainedModelArtifactMaxSize
|
1261
|
+
attr_accessor unit: ("GB")
|
1262
|
+
attr_accessor value: ::Float
|
1263
|
+
SENSITIVE: []
|
1264
|
+
end
|
1265
|
+
|
1195
1266
|
class TrainedModelExportOutputConfiguration
|
1196
1267
|
attr_accessor members: ::Array[Types::TrainedModelExportReceiverMember]
|
1197
1268
|
SENSITIVE: []
|
@@ -1219,6 +1290,7 @@ module Aws::CleanRoomsML
|
|
1219
1290
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
1220
1291
|
attr_accessor membership_identifier: ::String
|
1221
1292
|
attr_accessor trained_model_arn: ::String
|
1293
|
+
attr_accessor trained_model_version_identifier: ::String
|
1222
1294
|
attr_accessor collaboration_identifier: ::String
|
1223
1295
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
1224
1296
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -1249,6 +1321,8 @@ module Aws::CleanRoomsML
|
|
1249
1321
|
attr_accessor create_time: ::Time
|
1250
1322
|
attr_accessor update_time: ::Time
|
1251
1323
|
attr_accessor trained_model_arn: ::String
|
1324
|
+
attr_accessor version_identifier: ::String
|
1325
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
1252
1326
|
attr_accessor name: ::String
|
1253
1327
|
attr_accessor description: ::String
|
1254
1328
|
attr_accessor membership_identifier: ::String
|
@@ -1261,6 +1335,7 @@ module Aws::CleanRoomsML
|
|
1261
1335
|
class TrainedModelsConfigurationPolicy
|
1262
1336
|
attr_accessor container_logs: ::Array[Types::LogsConfigurationPolicy]
|
1263
1337
|
attr_accessor container_metrics: Types::MetricsConfigurationPolicy
|
1338
|
+
attr_accessor max_artifact_size: Types::TrainedModelArtifactMaxSize
|
1264
1339
|
SENSITIVE: []
|
1265
1340
|
end
|
1266
1341
|
|