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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e70b9d78a71cb91772585044e9aa7e481a1180a36d0b62017207547773815c2c
|
4
|
+
data.tar.gz: 16cedaafc1c2cc9372f8584ddddf30129b079d82efe2b50614b3a72cdc01998b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c36816a101a67187597f85e41a5e26e1c89062e557810243386444de1af01880caa9c4667f3255bea33e752cf74909bd93a890dce29c5e1c0cf68747a80bdb4
|
7
|
+
data.tar.gz: 35a70dfe0ef568d1affc39630a8511fa3c9d8b666a7b4f0bcaf5bad354b230743ba4c25b372ca6eecde7756bafefd956d66d333e87e6911ea76c10412190c860
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2025-07-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces support for incremental training and distributed training for custom models in AWS Clean Rooms ML.
|
8
|
+
|
4
9
|
1.26.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
@@ -478,6 +478,14 @@ module Aws::CleanRoomsML
|
|
478
478
|
# The Amazon Resource Name (ARN) of the trained model job that you want
|
479
479
|
# to cancel.
|
480
480
|
#
|
481
|
+
# @option params [String] :version_identifier
|
482
|
+
# The version identifier of the trained model to cancel. This parameter
|
483
|
+
# allows you to specify which version of the trained model you want to
|
484
|
+
# cancel when multiple versions exist.
|
485
|
+
#
|
486
|
+
# If `versionIdentifier` is not specified, the base model will be
|
487
|
+
# cancelled.
|
488
|
+
#
|
481
489
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
482
490
|
#
|
483
491
|
# @example Request syntax with placeholder values
|
@@ -485,6 +493,7 @@ module Aws::CleanRoomsML
|
|
485
493
|
# resp = client.cancel_trained_model({
|
486
494
|
# membership_identifier: "UUID", # required
|
487
495
|
# trained_model_arn: "TrainedModelArn", # required
|
496
|
+
# version_identifier: "UUID",
|
488
497
|
# })
|
489
498
|
#
|
490
499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CancelTrainedModel AWS API Documentation
|
@@ -918,6 +927,10 @@ module Aws::CleanRoomsML
|
|
918
927
|
# container_metrics: {
|
919
928
|
# noise_level: "HIGH", # required, accepts HIGH, MEDIUM, LOW, NONE
|
920
929
|
# },
|
930
|
+
# max_artifact_size: {
|
931
|
+
# unit: "GB", # required, accepts GB
|
932
|
+
# value: 1.0, # required
|
933
|
+
# },
|
921
934
|
# },
|
922
935
|
# trained_model_exports: {
|
923
936
|
# max_size: { # required
|
@@ -1092,10 +1105,41 @@ module Aws::CleanRoomsML
|
|
1092
1105
|
# @option params [Types::StoppingCondition] :stopping_condition
|
1093
1106
|
# The criteria that is used to stop model training.
|
1094
1107
|
#
|
1108
|
+
# @option params [Array<Types::IncrementalTrainingDataChannel>] :incremental_training_data_channels
|
1109
|
+
# Specifies the incremental training data channels for the trained
|
1110
|
+
# model.
|
1111
|
+
#
|
1112
|
+
# Incremental training allows you to create a new trained model with
|
1113
|
+
# updates without retraining from scratch. You can specify up to one
|
1114
|
+
# incremental training data channel that references a previously trained
|
1115
|
+
# model and its version.
|
1116
|
+
#
|
1117
|
+
# Limit: Maximum of 20 channels total (including both
|
1118
|
+
# `incrementalTrainingDataChannels` and `dataChannels`).
|
1119
|
+
#
|
1095
1120
|
# @option params [required, Array<Types::ModelTrainingDataChannel>] :data_channels
|
1096
1121
|
# Defines the data channels that are used as input for the trained model
|
1097
1122
|
# request.
|
1098
1123
|
#
|
1124
|
+
# Limit: Maximum of 20 channels total (including both `dataChannels` and
|
1125
|
+
# `incrementalTrainingDataChannels`).
|
1126
|
+
#
|
1127
|
+
# @option params [String] :training_input_mode
|
1128
|
+
# The input mode for accessing the training data. This parameter
|
1129
|
+
# determines how the training data is made available to the training
|
1130
|
+
# algorithm. Valid values are:
|
1131
|
+
#
|
1132
|
+
# * `File` - The training data is downloaded to the training instance
|
1133
|
+
# and made available as files.
|
1134
|
+
#
|
1135
|
+
# * `FastFile` - The training data is streamed directly from Amazon S3
|
1136
|
+
# to the training algorithm, providing faster access for large
|
1137
|
+
# datasets.
|
1138
|
+
#
|
1139
|
+
# * `Pipe` - The training data is streamed to the training algorithm
|
1140
|
+
# using named pipes, which can improve performance for certain
|
1141
|
+
# algorithms.
|
1142
|
+
#
|
1099
1143
|
# @option params [String] :description
|
1100
1144
|
# The description of the trained model.
|
1101
1145
|
#
|
@@ -1139,6 +1183,7 @@ module Aws::CleanRoomsML
|
|
1139
1183
|
# @return [Types::CreateTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1140
1184
|
#
|
1141
1185
|
# * {Types::CreateTrainedModelResponse#trained_model_arn #trained_model_arn} => String
|
1186
|
+
# * {Types::CreateTrainedModelResponse#version_identifier #version_identifier} => String
|
1142
1187
|
#
|
1143
1188
|
# @example Request syntax with placeholder values
|
1144
1189
|
#
|
@@ -1160,12 +1205,21 @@ module Aws::CleanRoomsML
|
|
1160
1205
|
# stopping_condition: {
|
1161
1206
|
# max_runtime_in_seconds: 1,
|
1162
1207
|
# },
|
1208
|
+
# incremental_training_data_channels: [
|
1209
|
+
# {
|
1210
|
+
# trained_model_arn: "TrainedModelArn", # required
|
1211
|
+
# version_identifier: "UUID",
|
1212
|
+
# channel_name: "ModelTrainingDataChannelName", # required
|
1213
|
+
# },
|
1214
|
+
# ],
|
1163
1215
|
# data_channels: [ # required
|
1164
1216
|
# {
|
1165
1217
|
# ml_input_channel_arn: "MLInputChannelArn", # required
|
1166
1218
|
# channel_name: "ModelTrainingDataChannelName", # required
|
1219
|
+
# s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
|
1167
1220
|
# },
|
1168
1221
|
# ],
|
1222
|
+
# training_input_mode: "File", # accepts File, FastFile, Pipe
|
1169
1223
|
# description: "ResourceDescription",
|
1170
1224
|
# kms_key_arn: "KmsKeyArn",
|
1171
1225
|
# tags: {
|
@@ -1176,6 +1230,7 @@ module Aws::CleanRoomsML
|
|
1176
1230
|
# @example Response structure
|
1177
1231
|
#
|
1178
1232
|
# resp.trained_model_arn #=> String
|
1233
|
+
# resp.version_identifier #=> String
|
1179
1234
|
#
|
1180
1235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateTrainedModel AWS API Documentation
|
1181
1236
|
#
|
@@ -1490,7 +1545,7 @@ module Aws::CleanRoomsML
|
|
1490
1545
|
req.send_request(options)
|
1491
1546
|
end
|
1492
1547
|
|
1493
|
-
# Deletes the
|
1548
|
+
# Deletes the model artifacts stored by the service.
|
1494
1549
|
#
|
1495
1550
|
# @option params [required, String] :trained_model_arn
|
1496
1551
|
# The Amazon Resource Name (ARN) of the trained model whose output you
|
@@ -1500,6 +1555,11 @@ module Aws::CleanRoomsML
|
|
1500
1555
|
# The membership ID of the member that is deleting the trained model
|
1501
1556
|
# output.
|
1502
1557
|
#
|
1558
|
+
# @option params [String] :version_identifier
|
1559
|
+
# The version identifier of the trained model to delete. If not
|
1560
|
+
# specified, the operation will delete the base version of the trained
|
1561
|
+
# model. When specified, only the particular version will be deleted.
|
1562
|
+
#
|
1503
1563
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1504
1564
|
#
|
1505
1565
|
# @example Request syntax with placeholder values
|
@@ -1507,6 +1567,7 @@ module Aws::CleanRoomsML
|
|
1507
1567
|
# resp = client.delete_trained_model_output({
|
1508
1568
|
# trained_model_arn: "TrainedModelArn", # required
|
1509
1569
|
# membership_identifier: "UUID", # required
|
1570
|
+
# version_identifier: "UUID",
|
1510
1571
|
# })
|
1511
1572
|
#
|
1512
1573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteTrainedModelOutput AWS API Documentation
|
@@ -1716,6 +1777,8 @@ module Aws::CleanRoomsML
|
|
1716
1777
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids[0] #=> String
|
1717
1778
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].filter_pattern #=> String
|
1718
1779
|
# resp.privacy_configuration.policies.trained_models.container_metrics.noise_level #=> String, one of "HIGH", "MEDIUM", "LOW", "NONE"
|
1780
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.unit #=> String, one of "GB"
|
1781
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.value #=> Float
|
1719
1782
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.unit #=> String, one of "GB"
|
1720
1783
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.value #=> Float
|
1721
1784
|
# resp.privacy_configuration.policies.trained_model_exports.files_to_export #=> Array
|
@@ -1807,17 +1870,25 @@ module Aws::CleanRoomsML
|
|
1807
1870
|
# The collaboration ID that contains the trained model that you want to
|
1808
1871
|
# return information about.
|
1809
1872
|
#
|
1873
|
+
# @option params [String] :version_identifier
|
1874
|
+
# The version identifier of the trained model to retrieve. If not
|
1875
|
+
# specified, the operation returns information about the latest version
|
1876
|
+
# of the trained model.
|
1877
|
+
#
|
1810
1878
|
# @return [Types::GetCollaborationTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1811
1879
|
#
|
1812
1880
|
# * {Types::GetCollaborationTrainedModelResponse#membership_identifier #membership_identifier} => String
|
1813
1881
|
# * {Types::GetCollaborationTrainedModelResponse#collaboration_identifier #collaboration_identifier} => String
|
1814
1882
|
# * {Types::GetCollaborationTrainedModelResponse#trained_model_arn #trained_model_arn} => String
|
1883
|
+
# * {Types::GetCollaborationTrainedModelResponse#version_identifier #version_identifier} => String
|
1884
|
+
# * {Types::GetCollaborationTrainedModelResponse#incremental_training_data_channels #incremental_training_data_channels} => Array<Types::IncrementalTrainingDataChannelOutput>
|
1815
1885
|
# * {Types::GetCollaborationTrainedModelResponse#name #name} => String
|
1816
1886
|
# * {Types::GetCollaborationTrainedModelResponse#description #description} => String
|
1817
1887
|
# * {Types::GetCollaborationTrainedModelResponse#status #status} => String
|
1818
1888
|
# * {Types::GetCollaborationTrainedModelResponse#status_details #status_details} => Types::StatusDetails
|
1819
1889
|
# * {Types::GetCollaborationTrainedModelResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
|
1820
1890
|
# * {Types::GetCollaborationTrainedModelResponse#resource_config #resource_config} => Types::ResourceConfig
|
1891
|
+
# * {Types::GetCollaborationTrainedModelResponse#training_input_mode #training_input_mode} => String
|
1821
1892
|
# * {Types::GetCollaborationTrainedModelResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
|
1822
1893
|
# * {Types::GetCollaborationTrainedModelResponse#metrics_status #metrics_status} => String
|
1823
1894
|
# * {Types::GetCollaborationTrainedModelResponse#metrics_status_details #metrics_status_details} => String
|
@@ -1833,6 +1904,7 @@ module Aws::CleanRoomsML
|
|
1833
1904
|
# resp = client.get_collaboration_trained_model({
|
1834
1905
|
# trained_model_arn: "TrainedModelArn", # required
|
1835
1906
|
# collaboration_identifier: "UUID", # required
|
1907
|
+
# version_identifier: "UUID",
|
1836
1908
|
# })
|
1837
1909
|
#
|
1838
1910
|
# @example Response structure
|
@@ -1840,6 +1912,11 @@ module Aws::CleanRoomsML
|
|
1840
1912
|
# resp.membership_identifier #=> String
|
1841
1913
|
# resp.collaboration_identifier #=> String
|
1842
1914
|
# resp.trained_model_arn #=> String
|
1915
|
+
# resp.version_identifier #=> String
|
1916
|
+
# resp.incremental_training_data_channels #=> Array
|
1917
|
+
# resp.incremental_training_data_channels[0].channel_name #=> String
|
1918
|
+
# resp.incremental_training_data_channels[0].version_identifier #=> String
|
1919
|
+
# resp.incremental_training_data_channels[0].model_name #=> String
|
1843
1920
|
# resp.name #=> String
|
1844
1921
|
# resp.description #=> String
|
1845
1922
|
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED"
|
@@ -1849,6 +1926,7 @@ module Aws::CleanRoomsML
|
|
1849
1926
|
# resp.resource_config.instance_count #=> Integer
|
1850
1927
|
# resp.resource_config.instance_type #=> String, one of "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"
|
1851
1928
|
# resp.resource_config.volume_size_in_gb #=> Integer
|
1929
|
+
# resp.training_input_mode #=> String, one of "File", "FastFile", "Pipe"
|
1852
1930
|
# resp.stopping_condition.max_runtime_in_seconds #=> Integer
|
1853
1931
|
# resp.metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
1854
1932
|
# resp.metrics_status_details #=> String
|
@@ -2058,6 +2136,8 @@ module Aws::CleanRoomsML
|
|
2058
2136
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids[0] #=> String
|
2059
2137
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].filter_pattern #=> String
|
2060
2138
|
# resp.privacy_configuration.policies.trained_models.container_metrics.noise_level #=> String, one of "HIGH", "MEDIUM", "LOW", "NONE"
|
2139
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.unit #=> String, one of "GB"
|
2140
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.value #=> Float
|
2061
2141
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.unit #=> String, one of "GB"
|
2062
2142
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.value #=> Float
|
2063
2143
|
# resp.privacy_configuration.policies.trained_model_exports.files_to_export #=> Array
|
@@ -2204,17 +2284,25 @@ module Aws::CleanRoomsML
|
|
2204
2284
|
# The membership ID of the member that created the trained model that
|
2205
2285
|
# you are interested in.
|
2206
2286
|
#
|
2287
|
+
# @option params [String] :version_identifier
|
2288
|
+
# The version identifier of the trained model to retrieve. If not
|
2289
|
+
# specified, the operation returns information about the latest version
|
2290
|
+
# of the trained model.
|
2291
|
+
#
|
2207
2292
|
# @return [Types::GetTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2208
2293
|
#
|
2209
2294
|
# * {Types::GetTrainedModelResponse#membership_identifier #membership_identifier} => String
|
2210
2295
|
# * {Types::GetTrainedModelResponse#collaboration_identifier #collaboration_identifier} => String
|
2211
2296
|
# * {Types::GetTrainedModelResponse#trained_model_arn #trained_model_arn} => String
|
2297
|
+
# * {Types::GetTrainedModelResponse#version_identifier #version_identifier} => String
|
2298
|
+
# * {Types::GetTrainedModelResponse#incremental_training_data_channels #incremental_training_data_channels} => Array<Types::IncrementalTrainingDataChannelOutput>
|
2212
2299
|
# * {Types::GetTrainedModelResponse#name #name} => String
|
2213
2300
|
# * {Types::GetTrainedModelResponse#description #description} => String
|
2214
2301
|
# * {Types::GetTrainedModelResponse#status #status} => String
|
2215
2302
|
# * {Types::GetTrainedModelResponse#status_details #status_details} => Types::StatusDetails
|
2216
2303
|
# * {Types::GetTrainedModelResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
|
2217
2304
|
# * {Types::GetTrainedModelResponse#resource_config #resource_config} => Types::ResourceConfig
|
2305
|
+
# * {Types::GetTrainedModelResponse#training_input_mode #training_input_mode} => String
|
2218
2306
|
# * {Types::GetTrainedModelResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
|
2219
2307
|
# * {Types::GetTrainedModelResponse#metrics_status #metrics_status} => String
|
2220
2308
|
# * {Types::GetTrainedModelResponse#metrics_status_details #metrics_status_details} => String
|
@@ -2234,6 +2322,7 @@ module Aws::CleanRoomsML
|
|
2234
2322
|
# resp = client.get_trained_model({
|
2235
2323
|
# trained_model_arn: "TrainedModelArn", # required
|
2236
2324
|
# membership_identifier: "UUID", # required
|
2325
|
+
# version_identifier: "UUID",
|
2237
2326
|
# })
|
2238
2327
|
#
|
2239
2328
|
# @example Response structure
|
@@ -2241,6 +2330,11 @@ module Aws::CleanRoomsML
|
|
2241
2330
|
# resp.membership_identifier #=> String
|
2242
2331
|
# resp.collaboration_identifier #=> String
|
2243
2332
|
# resp.trained_model_arn #=> String
|
2333
|
+
# resp.version_identifier #=> String
|
2334
|
+
# resp.incremental_training_data_channels #=> Array
|
2335
|
+
# resp.incremental_training_data_channels[0].channel_name #=> String
|
2336
|
+
# resp.incremental_training_data_channels[0].version_identifier #=> String
|
2337
|
+
# resp.incremental_training_data_channels[0].model_name #=> String
|
2244
2338
|
# resp.name #=> String
|
2245
2339
|
# resp.description #=> String
|
2246
2340
|
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED"
|
@@ -2250,6 +2344,7 @@ module Aws::CleanRoomsML
|
|
2250
2344
|
# resp.resource_config.instance_count #=> Integer
|
2251
2345
|
# resp.resource_config.instance_type #=> String, one of "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"
|
2252
2346
|
# resp.resource_config.volume_size_in_gb #=> Integer
|
2347
|
+
# resp.training_input_mode #=> String, one of "File", "FastFile", "Pipe"
|
2253
2348
|
# resp.stopping_condition.max_runtime_in_seconds #=> Integer
|
2254
2349
|
# resp.metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
2255
2350
|
# resp.metrics_status_details #=> String
|
@@ -2268,6 +2363,7 @@ module Aws::CleanRoomsML
|
|
2268
2363
|
# resp.data_channels #=> Array
|
2269
2364
|
# resp.data_channels[0].ml_input_channel_arn #=> String
|
2270
2365
|
# resp.data_channels[0].channel_name #=> String
|
2366
|
+
# resp.data_channels[0].s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
2271
2367
|
#
|
2272
2368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainedModel AWS API Documentation
|
2273
2369
|
#
|
@@ -2297,6 +2393,7 @@ module Aws::CleanRoomsML
|
|
2297
2393
|
# * {Types::GetTrainedModelInferenceJobResponse#name #name} => String
|
2298
2394
|
# * {Types::GetTrainedModelInferenceJobResponse#status #status} => String
|
2299
2395
|
# * {Types::GetTrainedModelInferenceJobResponse#trained_model_arn #trained_model_arn} => String
|
2396
|
+
# * {Types::GetTrainedModelInferenceJobResponse#trained_model_version_identifier #trained_model_version_identifier} => String
|
2300
2397
|
# * {Types::GetTrainedModelInferenceJobResponse#resource_config #resource_config} => Types::InferenceResourceConfig
|
2301
2398
|
# * {Types::GetTrainedModelInferenceJobResponse#output_configuration #output_configuration} => Types::InferenceOutputConfiguration
|
2302
2399
|
# * {Types::GetTrainedModelInferenceJobResponse#membership_identifier #membership_identifier} => String
|
@@ -2329,6 +2426,7 @@ module Aws::CleanRoomsML
|
|
2329
2426
|
# resp.name #=> String
|
2330
2427
|
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED", "INACTIVE"
|
2331
2428
|
# resp.trained_model_arn #=> String
|
2429
|
+
# resp.trained_model_version_identifier #=> String
|
2332
2430
|
# resp.resource_config.instance_type #=> String, one of "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"
|
2333
2431
|
# resp.resource_config.instance_count #=> Integer
|
2334
2432
|
# resp.output_configuration.accept #=> String
|
@@ -2690,6 +2788,11 @@ module Aws::CleanRoomsML
|
|
2690
2788
|
# The Amazon Resource Name (ARN) of the trained model that was used to
|
2691
2789
|
# create the export jobs that you are interested in.
|
2692
2790
|
#
|
2791
|
+
# @option params [String] :trained_model_version_identifier
|
2792
|
+
# The version identifier of the trained model to filter export jobs by.
|
2793
|
+
# When specified, only export jobs for this specific version of the
|
2794
|
+
# trained model are returned.
|
2795
|
+
#
|
2693
2796
|
# @return [Types::ListCollaborationTrainedModelExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2694
2797
|
#
|
2695
2798
|
# * {Types::ListCollaborationTrainedModelExportJobsResponse#next_token #next_token} => String
|
@@ -2704,6 +2807,7 @@ module Aws::CleanRoomsML
|
|
2704
2807
|
# max_results: 1,
|
2705
2808
|
# collaboration_identifier: "UUID", # required
|
2706
2809
|
# trained_model_arn: "TrainedModelArn", # required
|
2810
|
+
# trained_model_version_identifier: "UUID",
|
2707
2811
|
# })
|
2708
2812
|
#
|
2709
2813
|
# @example Response structure
|
@@ -2721,6 +2825,7 @@ module Aws::CleanRoomsML
|
|
2721
2825
|
# resp.collaboration_trained_model_export_jobs[0].description #=> String
|
2722
2826
|
# resp.collaboration_trained_model_export_jobs[0].creator_account_id #=> String
|
2723
2827
|
# resp.collaboration_trained_model_export_jobs[0].trained_model_arn #=> String
|
2828
|
+
# resp.collaboration_trained_model_export_jobs[0].trained_model_version_identifier #=> String
|
2724
2829
|
# resp.collaboration_trained_model_export_jobs[0].membership_identifier #=> String
|
2725
2830
|
# resp.collaboration_trained_model_export_jobs[0].collaboration_identifier #=> String
|
2726
2831
|
#
|
@@ -2751,6 +2856,11 @@ module Aws::CleanRoomsML
|
|
2751
2856
|
# The Amazon Resource Name (ARN) of the trained model that was used to
|
2752
2857
|
# create the trained model inference jobs that you are interested in.
|
2753
2858
|
#
|
2859
|
+
# @option params [String] :trained_model_version_identifier
|
2860
|
+
# The version identifier of the trained model to filter inference jobs
|
2861
|
+
# by. When specified, only inference jobs that used this specific
|
2862
|
+
# version of the trained model are returned.
|
2863
|
+
#
|
2754
2864
|
# @return [Types::ListCollaborationTrainedModelInferenceJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2755
2865
|
#
|
2756
2866
|
# * {Types::ListCollaborationTrainedModelInferenceJobsResponse#next_token #next_token} => String
|
@@ -2765,6 +2875,7 @@ module Aws::CleanRoomsML
|
|
2765
2875
|
# max_results: 1,
|
2766
2876
|
# collaboration_identifier: "UUID", # required
|
2767
2877
|
# trained_model_arn: "TrainedModelArn",
|
2878
|
+
# trained_model_version_identifier: "UUID",
|
2768
2879
|
# })
|
2769
2880
|
#
|
2770
2881
|
# @example Response structure
|
@@ -2775,6 +2886,7 @@ module Aws::CleanRoomsML
|
|
2775
2886
|
# resp.collaboration_trained_model_inference_jobs[0].configured_model_algorithm_association_arn #=> String
|
2776
2887
|
# resp.collaboration_trained_model_inference_jobs[0].membership_identifier #=> String
|
2777
2888
|
# resp.collaboration_trained_model_inference_jobs[0].trained_model_arn #=> String
|
2889
|
+
# resp.collaboration_trained_model_inference_jobs[0].trained_model_version_identifier #=> String
|
2778
2890
|
# resp.collaboration_trained_model_inference_jobs[0].collaboration_identifier #=> String
|
2779
2891
|
# resp.collaboration_trained_model_inference_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED", "INACTIVE"
|
2780
2892
|
# resp.collaboration_trained_model_inference_jobs[0].output_configuration.accept #=> String
|
@@ -2835,6 +2947,11 @@ module Aws::CleanRoomsML
|
|
2835
2947
|
# resp.collaboration_trained_models[0].update_time #=> Time
|
2836
2948
|
# resp.collaboration_trained_models[0].trained_model_arn #=> String
|
2837
2949
|
# resp.collaboration_trained_models[0].name #=> String
|
2950
|
+
# resp.collaboration_trained_models[0].version_identifier #=> String
|
2951
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels #=> Array
|
2952
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels[0].channel_name #=> String
|
2953
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels[0].version_identifier #=> String
|
2954
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels[0].model_name #=> String
|
2838
2955
|
# resp.collaboration_trained_models[0].description #=> String
|
2839
2956
|
# resp.collaboration_trained_models[0].membership_identifier #=> String
|
2840
2957
|
# resp.collaboration_trained_models[0].collaboration_identifier #=> String
|
@@ -3089,6 +3206,11 @@ module Aws::CleanRoomsML
|
|
3089
3206
|
# The Amazon Resource Name (ARN) of a trained model that was used to
|
3090
3207
|
# create the trained model inference jobs that you are interested in.
|
3091
3208
|
#
|
3209
|
+
# @option params [String] :trained_model_version_identifier
|
3210
|
+
# The version identifier of the trained model to filter inference jobs
|
3211
|
+
# by. When specified, only inference jobs that used this specific
|
3212
|
+
# version of the trained model are returned.
|
3213
|
+
#
|
3092
3214
|
# @return [Types::ListTrainedModelInferenceJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3093
3215
|
#
|
3094
3216
|
# * {Types::ListTrainedModelInferenceJobsResponse#next_token #next_token} => String
|
@@ -3103,6 +3225,7 @@ module Aws::CleanRoomsML
|
|
3103
3225
|
# max_results: 1,
|
3104
3226
|
# membership_identifier: "UUID", # required
|
3105
3227
|
# trained_model_arn: "TrainedModelArn",
|
3228
|
+
# trained_model_version_identifier: "UUID",
|
3106
3229
|
# })
|
3107
3230
|
#
|
3108
3231
|
# @example Response structure
|
@@ -3113,6 +3236,7 @@ module Aws::CleanRoomsML
|
|
3113
3236
|
# resp.trained_model_inference_jobs[0].configured_model_algorithm_association_arn #=> String
|
3114
3237
|
# resp.trained_model_inference_jobs[0].membership_identifier #=> String
|
3115
3238
|
# resp.trained_model_inference_jobs[0].trained_model_arn #=> String
|
3239
|
+
# resp.trained_model_inference_jobs[0].trained_model_version_identifier #=> String
|
3116
3240
|
# resp.trained_model_inference_jobs[0].collaboration_identifier #=> String
|
3117
3241
|
# resp.trained_model_inference_jobs[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED", "INACTIVE"
|
3118
3242
|
# resp.trained_model_inference_jobs[0].output_configuration.accept #=> String
|
@@ -3136,6 +3260,78 @@ module Aws::CleanRoomsML
|
|
3136
3260
|
req.send_request(options)
|
3137
3261
|
end
|
3138
3262
|
|
3263
|
+
# Returns a list of trained model versions for a specified trained
|
3264
|
+
# model. This operation allows you to view all versions of a trained
|
3265
|
+
# model, including information about their status and creation details.
|
3266
|
+
# You can use this to track the evolution of your trained models and
|
3267
|
+
# select specific versions for inference or further training.
|
3268
|
+
#
|
3269
|
+
# @option params [String] :next_token
|
3270
|
+
# The pagination token from a previous `ListTrainedModelVersions`
|
3271
|
+
# request. Use this token to retrieve the next page of results.
|
3272
|
+
#
|
3273
|
+
# @option params [Integer] :max_results
|
3274
|
+
# The maximum number of trained model versions to return in a single
|
3275
|
+
# page. The default value is 10, and the maximum value is 100.
|
3276
|
+
#
|
3277
|
+
# @option params [required, String] :membership_identifier
|
3278
|
+
# The membership identifier for the collaboration that contains the
|
3279
|
+
# trained model.
|
3280
|
+
#
|
3281
|
+
# @option params [required, String] :trained_model_arn
|
3282
|
+
# The Amazon Resource Name (ARN) of the trained model for which to list
|
3283
|
+
# versions.
|
3284
|
+
#
|
3285
|
+
# @option params [String] :status
|
3286
|
+
# Filter the results to only include trained model versions with the
|
3287
|
+
# specified status. Valid values include `CREATE_PENDING`,
|
3288
|
+
# `CREATE_IN_PROGRESS`, `ACTIVE`, `CREATE_FAILED`, and others.
|
3289
|
+
#
|
3290
|
+
# @return [Types::ListTrainedModelVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3291
|
+
#
|
3292
|
+
# * {Types::ListTrainedModelVersionsResponse#next_token #next_token} => String
|
3293
|
+
# * {Types::ListTrainedModelVersionsResponse#trained_models #trained_models} => Array<Types::TrainedModelSummary>
|
3294
|
+
#
|
3295
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3296
|
+
#
|
3297
|
+
# @example Request syntax with placeholder values
|
3298
|
+
#
|
3299
|
+
# resp = client.list_trained_model_versions({
|
3300
|
+
# next_token: "NextToken",
|
3301
|
+
# max_results: 1,
|
3302
|
+
# membership_identifier: "UUID", # required
|
3303
|
+
# trained_model_arn: "TrainedModelArn", # required
|
3304
|
+
# status: "CREATE_PENDING", # accepts CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED, ACTIVE, DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED, INACTIVE, CANCEL_PENDING, CANCEL_IN_PROGRESS, CANCEL_FAILED
|
3305
|
+
# })
|
3306
|
+
#
|
3307
|
+
# @example Response structure
|
3308
|
+
#
|
3309
|
+
# resp.next_token #=> String
|
3310
|
+
# resp.trained_models #=> Array
|
3311
|
+
# resp.trained_models[0].create_time #=> Time
|
3312
|
+
# resp.trained_models[0].update_time #=> Time
|
3313
|
+
# resp.trained_models[0].trained_model_arn #=> String
|
3314
|
+
# resp.trained_models[0].version_identifier #=> String
|
3315
|
+
# resp.trained_models[0].incremental_training_data_channels #=> Array
|
3316
|
+
# resp.trained_models[0].incremental_training_data_channels[0].channel_name #=> String
|
3317
|
+
# resp.trained_models[0].incremental_training_data_channels[0].version_identifier #=> String
|
3318
|
+
# resp.trained_models[0].incremental_training_data_channels[0].model_name #=> String
|
3319
|
+
# resp.trained_models[0].name #=> String
|
3320
|
+
# resp.trained_models[0].description #=> String
|
3321
|
+
# resp.trained_models[0].membership_identifier #=> String
|
3322
|
+
# resp.trained_models[0].collaboration_identifier #=> String
|
3323
|
+
# resp.trained_models[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED"
|
3324
|
+
# resp.trained_models[0].configured_model_algorithm_association_arn #=> String
|
3325
|
+
#
|
3326
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListTrainedModelVersions AWS API Documentation
|
3327
|
+
#
|
3328
|
+
# @overload list_trained_model_versions(params = {})
|
3329
|
+
# @param [Hash] params ({})
|
3330
|
+
def list_trained_model_versions(params = {}, options = {})
|
3331
|
+
req = build_request(:list_trained_model_versions, params)
|
3332
|
+
req.send_request(options)
|
3333
|
+
end
|
3334
|
+
|
3139
3335
|
# Returns a list of trained models.
|
3140
3336
|
#
|
3141
3337
|
# @option params [String] :next_token
|
@@ -3171,6 +3367,11 @@ module Aws::CleanRoomsML
|
|
3171
3367
|
# resp.trained_models[0].create_time #=> Time
|
3172
3368
|
# resp.trained_models[0].update_time #=> Time
|
3173
3369
|
# resp.trained_models[0].trained_model_arn #=> String
|
3370
|
+
# resp.trained_models[0].version_identifier #=> String
|
3371
|
+
# resp.trained_models[0].incremental_training_data_channels #=> Array
|
3372
|
+
# resp.trained_models[0].incremental_training_data_channels[0].channel_name #=> String
|
3373
|
+
# resp.trained_models[0].incremental_training_data_channels[0].version_identifier #=> String
|
3374
|
+
# resp.trained_models[0].incremental_training_data_channels[0].model_name #=> String
|
3174
3375
|
# resp.trained_models[0].name #=> String
|
3175
3376
|
# resp.trained_models[0].description #=> String
|
3176
3377
|
# resp.trained_models[0].membership_identifier #=> String
|
@@ -3462,6 +3663,11 @@ module Aws::CleanRoomsML
|
|
3462
3663
|
# The Amazon Resource Name (ARN) of the trained model that you want to
|
3463
3664
|
# export.
|
3464
3665
|
#
|
3666
|
+
# @option params [String] :trained_model_version_identifier
|
3667
|
+
# The version identifier of the trained model to export. This specifies
|
3668
|
+
# which version of the trained model should be exported to the specified
|
3669
|
+
# destination.
|
3670
|
+
#
|
3465
3671
|
# @option params [required, String] :membership_identifier
|
3466
3672
|
# The membership ID of the member that is receiving the exported trained
|
3467
3673
|
# model artifacts.
|
@@ -3479,6 +3685,7 @@ module Aws::CleanRoomsML
|
|
3479
3685
|
# resp = client.start_trained_model_export_job({
|
3480
3686
|
# name: "NameString", # required
|
3481
3687
|
# trained_model_arn: "TrainedModelArn", # required
|
3688
|
+
# trained_model_version_identifier: "UUID",
|
3482
3689
|
# membership_identifier: "UUID", # required
|
3483
3690
|
# output_configuration: { # required
|
3484
3691
|
# members: [ # required
|
@@ -3513,6 +3720,11 @@ module Aws::CleanRoomsML
|
|
3513
3720
|
# The Amazon Resource Name (ARN) of the trained model that is used for
|
3514
3721
|
# this trained model inference job.
|
3515
3722
|
#
|
3723
|
+
# @option params [String] :trained_model_version_identifier
|
3724
|
+
# The version identifier of the trained model to use for inference. This
|
3725
|
+
# specifies which version of the trained model should be used to
|
3726
|
+
# generate predictions on the input data.
|
3727
|
+
#
|
3516
3728
|
# @option params [String] :configured_model_algorithm_association_arn
|
3517
3729
|
# The Amazon Resource Name (ARN) of the configured model algorithm
|
3518
3730
|
# association that is used for this trained model inference job.
|
@@ -3585,6 +3797,7 @@ module Aws::CleanRoomsML
|
|
3585
3797
|
# membership_identifier: "UUID", # required
|
3586
3798
|
# name: "NameString", # required
|
3587
3799
|
# trained_model_arn: "TrainedModelArn", # required
|
3800
|
+
# trained_model_version_identifier: "UUID",
|
3588
3801
|
# configured_model_algorithm_association_arn: "ConfiguredModelAlgorithmAssociationArn",
|
3589
3802
|
# resource_config: { # required
|
3590
3803
|
# instance_type: "ml.r7i.48xlarge", # required, accepts 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
|
@@ -3797,7 +4010,7 @@ module Aws::CleanRoomsML
|
|
3797
4010
|
tracer: tracer
|
3798
4011
|
)
|
3799
4012
|
context[:gem_name] = 'aws-sdk-cleanroomsml'
|
3800
|
-
context[:gem_version] = '1.
|
4013
|
+
context[:gem_version] = '1.27.0'
|
3801
4014
|
Seahorse::Client::Request.new(handlers, context)
|
3802
4015
|
end
|
3803
4016
|
|