aws-sdk-cleanroomsml 1.26.0 → 1.28.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanroomsml/client.rb +217 -2
- data/lib/aws-sdk-cleanroomsml/client_api.rb +130 -0
- data/lib/aws-sdk-cleanroomsml/errors.rb +42 -0
- data/lib/aws-sdk-cleanroomsml/types.rb +442 -22
- data/lib/aws-sdk-cleanroomsml.rb +1 -1
- data/sig/client.rbs +55 -9
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +76 -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: {
|
@@ -232,7 +237,8 @@ module Aws
|
|
232
237
|
type: ("CR.1X" | "CR.4X")?,
|
233
238
|
number: ::Integer?
|
234
239
|
}?
|
235
|
-
}
|
240
|
+
}?,
|
241
|
+
result_format: ("CSV" | "PARQUET")?
|
236
242
|
}?
|
237
243
|
},
|
238
244
|
role_arn: ::String
|
@@ -248,6 +254,7 @@ module Aws
|
|
248
254
|
interface _CreateTrainedModelResponseSuccess
|
249
255
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrainedModelResponse]
|
250
256
|
def trained_model_arn: () -> ::String
|
257
|
+
def version_identifier: () -> ::String
|
251
258
|
end
|
252
259
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_trained_model-instance_method
|
253
260
|
def create_trained_model: (
|
@@ -264,12 +271,21 @@ module Aws
|
|
264
271
|
?stopping_condition: {
|
265
272
|
max_runtime_in_seconds: ::Integer?
|
266
273
|
},
|
274
|
+
?incremental_training_data_channels: Array[
|
275
|
+
{
|
276
|
+
trained_model_arn: ::String,
|
277
|
+
version_identifier: ::String?,
|
278
|
+
channel_name: ::String
|
279
|
+
},
|
280
|
+
],
|
267
281
|
data_channels: Array[
|
268
282
|
{
|
269
283
|
ml_input_channel_arn: ::String,
|
270
|
-
channel_name: ::String
|
284
|
+
channel_name: ::String,
|
285
|
+
s3_data_distribution_type: ("FullyReplicated" | "ShardedByS3Key")?
|
271
286
|
},
|
272
287
|
],
|
288
|
+
?training_input_mode: ("File" | "FastFile" | "Pipe"),
|
273
289
|
?description: ::String,
|
274
290
|
?kms_key_arn: ::String,
|
275
291
|
?tags: Hash[::String, ::String]
|
@@ -362,7 +378,8 @@ module Aws
|
|
362
378
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_trained_model_output-instance_method
|
363
379
|
def delete_trained_model_output: (
|
364
380
|
trained_model_arn: ::String,
|
365
|
-
membership_identifier: ::String
|
381
|
+
membership_identifier: ::String,
|
382
|
+
?version_identifier: ::String
|
366
383
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
367
384
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
368
385
|
|
@@ -465,12 +482,15 @@ module Aws
|
|
465
482
|
def membership_identifier: () -> ::String
|
466
483
|
def collaboration_identifier: () -> ::String
|
467
484
|
def trained_model_arn: () -> ::String
|
485
|
+
def version_identifier: () -> ::String
|
486
|
+
def incremental_training_data_channels: () -> ::Array[Types::IncrementalTrainingDataChannelOutput]
|
468
487
|
def name: () -> ::String
|
469
488
|
def description: () -> ::String
|
470
489
|
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
490
|
def status_details: () -> Types::StatusDetails
|
472
491
|
def configured_model_algorithm_association_arn: () -> ::String
|
473
492
|
def resource_config: () -> Types::ResourceConfig
|
493
|
+
def training_input_mode: () -> ("File" | "FastFile" | "Pipe")
|
474
494
|
def stopping_condition: () -> Types::StoppingCondition
|
475
495
|
def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
476
496
|
def metrics_status_details: () -> ::String
|
@@ -484,7 +504,8 @@ module Aws
|
|
484
504
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_collaboration_trained_model-instance_method
|
485
505
|
def get_collaboration_trained_model: (
|
486
506
|
trained_model_arn: ::String,
|
487
|
-
collaboration_identifier: ::String
|
507
|
+
collaboration_identifier: ::String,
|
508
|
+
?version_identifier: ::String
|
488
509
|
) -> _GetCollaborationTrainedModelResponseSuccess
|
489
510
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCollaborationTrainedModelResponseSuccess
|
490
511
|
|
@@ -607,12 +628,15 @@ module Aws
|
|
607
628
|
def membership_identifier: () -> ::String
|
608
629
|
def collaboration_identifier: () -> ::String
|
609
630
|
def trained_model_arn: () -> ::String
|
631
|
+
def version_identifier: () -> ::String
|
632
|
+
def incremental_training_data_channels: () -> ::Array[Types::IncrementalTrainingDataChannelOutput]
|
610
633
|
def name: () -> ::String
|
611
634
|
def description: () -> ::String
|
612
635
|
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
636
|
def status_details: () -> Types::StatusDetails
|
614
637
|
def configured_model_algorithm_association_arn: () -> ::String
|
615
638
|
def resource_config: () -> Types::ResourceConfig
|
639
|
+
def training_input_mode: () -> ("File" | "FastFile" | "Pipe")
|
616
640
|
def stopping_condition: () -> Types::StoppingCondition
|
617
641
|
def metrics_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
618
642
|
def metrics_status_details: () -> ::String
|
@@ -630,7 +654,8 @@ module Aws
|
|
630
654
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_trained_model-instance_method
|
631
655
|
def get_trained_model: (
|
632
656
|
trained_model_arn: ::String,
|
633
|
-
membership_identifier: ::String
|
657
|
+
membership_identifier: ::String,
|
658
|
+
?version_identifier: ::String
|
634
659
|
) -> _GetTrainedModelResponseSuccess
|
635
660
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrainedModelResponseSuccess
|
636
661
|
|
@@ -643,6 +668,7 @@ module Aws
|
|
643
668
|
def name: () -> ::String
|
644
669
|
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
645
670
|
def trained_model_arn: () -> ::String
|
671
|
+
def trained_model_version_identifier: () -> ::String
|
646
672
|
def resource_config: () -> Types::InferenceResourceConfig
|
647
673
|
def output_configuration: () -> Types::InferenceOutputConfiguration
|
648
674
|
def membership_identifier: () -> ::String
|
@@ -759,7 +785,8 @@ module Aws
|
|
759
785
|
?next_token: ::String,
|
760
786
|
?max_results: ::Integer,
|
761
787
|
collaboration_identifier: ::String,
|
762
|
-
trained_model_arn: ::String
|
788
|
+
trained_model_arn: ::String,
|
789
|
+
?trained_model_version_identifier: ::String
|
763
790
|
) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
|
764
791
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelExportJobsResponseSuccess
|
765
792
|
|
@@ -773,7 +800,8 @@ module Aws
|
|
773
800
|
?next_token: ::String,
|
774
801
|
?max_results: ::Integer,
|
775
802
|
collaboration_identifier: ::String,
|
776
|
-
?trained_model_arn: ::String
|
803
|
+
?trained_model_arn: ::String,
|
804
|
+
?trained_model_version_identifier: ::String
|
777
805
|
) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
|
778
806
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCollaborationTrainedModelInferenceJobsResponseSuccess
|
779
807
|
|
@@ -860,10 +888,26 @@ module Aws
|
|
860
888
|
?next_token: ::String,
|
861
889
|
?max_results: ::Integer,
|
862
890
|
membership_identifier: ::String,
|
863
|
-
?trained_model_arn: ::String
|
891
|
+
?trained_model_arn: ::String,
|
892
|
+
?trained_model_version_identifier: ::String
|
864
893
|
) -> _ListTrainedModelInferenceJobsResponseSuccess
|
865
894
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelInferenceJobsResponseSuccess
|
866
895
|
|
896
|
+
interface _ListTrainedModelVersionsResponseSuccess
|
897
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelVersionsResponse]
|
898
|
+
def next_token: () -> ::String
|
899
|
+
def trained_models: () -> ::Array[Types::TrainedModelSummary]
|
900
|
+
end
|
901
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_trained_model_versions-instance_method
|
902
|
+
def list_trained_model_versions: (
|
903
|
+
?next_token: ::String,
|
904
|
+
?max_results: ::Integer,
|
905
|
+
membership_identifier: ::String,
|
906
|
+
trained_model_arn: ::String,
|
907
|
+
?status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
908
|
+
) -> _ListTrainedModelVersionsResponseSuccess
|
909
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainedModelVersionsResponseSuccess
|
910
|
+
|
867
911
|
interface _ListTrainedModelsResponseSuccess
|
868
912
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainedModelsResponse]
|
869
913
|
def next_token: () -> ::String
|
@@ -965,6 +1009,7 @@ module Aws
|
|
965
1009
|
def start_trained_model_export_job: (
|
966
1010
|
name: ::String,
|
967
1011
|
trained_model_arn: ::String,
|
1012
|
+
?trained_model_version_identifier: ::String,
|
968
1013
|
membership_identifier: ::String,
|
969
1014
|
output_configuration: {
|
970
1015
|
members: Array[
|
@@ -986,6 +1031,7 @@ module Aws
|
|
986
1031
|
membership_identifier: ::String,
|
987
1032
|
name: ::String,
|
988
1033
|
trained_model_arn: ::String,
|
1034
|
+
?trained_model_version_identifier: ::String,
|
989
1035
|
?configured_model_algorithm_association_arn: ::String,
|
990
1036
|
resource_config: {
|
991
1037
|
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
|
|
@@ -1060,6 +1116,7 @@ module Aws::CleanRoomsML
|
|
1060
1116
|
class ProtectedQueryInputParameters
|
1061
1117
|
attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
|
1062
1118
|
attr_accessor compute_configuration: Types::ComputeConfiguration
|
1119
|
+
attr_accessor result_format: ("CSV" | "PARQUET")
|
1063
1120
|
SENSITIVE: [:sql_parameters]
|
1064
1121
|
end
|
1065
1122
|
|
@@ -1115,6 +1172,8 @@ module Aws::CleanRoomsML
|
|
1115
1172
|
|
1116
1173
|
class ServiceQuotaExceededException
|
1117
1174
|
attr_accessor message: ::String
|
1175
|
+
attr_accessor quota_name: ::String
|
1176
|
+
attr_accessor quota_value: ::Float
|
1118
1177
|
SENSITIVE: []
|
1119
1178
|
end
|
1120
1179
|
|
@@ -1145,6 +1204,7 @@ module Aws::CleanRoomsML
|
|
1145
1204
|
class StartTrainedModelExportJobRequest
|
1146
1205
|
attr_accessor name: ::String
|
1147
1206
|
attr_accessor trained_model_arn: ::String
|
1207
|
+
attr_accessor trained_model_version_identifier: ::String
|
1148
1208
|
attr_accessor membership_identifier: ::String
|
1149
1209
|
attr_accessor output_configuration: Types::TrainedModelExportOutputConfiguration
|
1150
1210
|
attr_accessor description: ::String
|
@@ -1155,6 +1215,7 @@ module Aws::CleanRoomsML
|
|
1155
1215
|
attr_accessor membership_identifier: ::String
|
1156
1216
|
attr_accessor name: ::String
|
1157
1217
|
attr_accessor trained_model_arn: ::String
|
1218
|
+
attr_accessor trained_model_version_identifier: ::String
|
1158
1219
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
1159
1220
|
attr_accessor resource_config: Types::InferenceResourceConfig
|
1160
1221
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -1192,6 +1253,17 @@ module Aws::CleanRoomsML
|
|
1192
1253
|
class TagResourceResponse < Aws::EmptyStructure
|
1193
1254
|
end
|
1194
1255
|
|
1256
|
+
class ThrottlingException
|
1257
|
+
attr_accessor message: ::String
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class TrainedModelArtifactMaxSize
|
1262
|
+
attr_accessor unit: ("GB")
|
1263
|
+
attr_accessor value: ::Float
|
1264
|
+
SENSITIVE: []
|
1265
|
+
end
|
1266
|
+
|
1195
1267
|
class TrainedModelExportOutputConfiguration
|
1196
1268
|
attr_accessor members: ::Array[Types::TrainedModelExportReceiverMember]
|
1197
1269
|
SENSITIVE: []
|
@@ -1219,6 +1291,7 @@ module Aws::CleanRoomsML
|
|
1219
1291
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
1220
1292
|
attr_accessor membership_identifier: ::String
|
1221
1293
|
attr_accessor trained_model_arn: ::String
|
1294
|
+
attr_accessor trained_model_version_identifier: ::String
|
1222
1295
|
attr_accessor collaboration_identifier: ::String
|
1223
1296
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED" | "INACTIVE")
|
1224
1297
|
attr_accessor output_configuration: Types::InferenceOutputConfiguration
|
@@ -1249,6 +1322,8 @@ module Aws::CleanRoomsML
|
|
1249
1322
|
attr_accessor create_time: ::Time
|
1250
1323
|
attr_accessor update_time: ::Time
|
1251
1324
|
attr_accessor trained_model_arn: ::String
|
1325
|
+
attr_accessor version_identifier: ::String
|
1326
|
+
attr_accessor incremental_training_data_channels: ::Array[Types::IncrementalTrainingDataChannelOutput]
|
1252
1327
|
attr_accessor name: ::String
|
1253
1328
|
attr_accessor description: ::String
|
1254
1329
|
attr_accessor membership_identifier: ::String
|
@@ -1261,6 +1336,7 @@ module Aws::CleanRoomsML
|
|
1261
1336
|
class TrainedModelsConfigurationPolicy
|
1262
1337
|
attr_accessor container_logs: ::Array[Types::LogsConfigurationPolicy]
|
1263
1338
|
attr_accessor container_metrics: Types::MetricsConfigurationPolicy
|
1339
|
+
attr_accessor max_artifact_size: Types::TrainedModelArtifactMaxSize
|
1264
1340
|
SENSITIVE: []
|
1265
1341
|
end
|
1266
1342
|
|