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