aws-sdk-cleanroomsml 1.25.0 → 1.30.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanroomsml/client.rb +235 -10
- 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 +56 -9
- data/sig/errors.rbs +8 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +76 -0
- metadata +4 -4
@@ -95,7 +95,7 @@ module Aws::CleanRoomsML
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::CleanRoomsML
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::CleanRoomsML
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::CleanRoomsML
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::CleanRoomsML
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -478,6 +488,14 @@ module Aws::CleanRoomsML
|
|
478
488
|
# The Amazon Resource Name (ARN) of the trained model job that you want
|
479
489
|
# to cancel.
|
480
490
|
#
|
491
|
+
# @option params [String] :version_identifier
|
492
|
+
# The version identifier of the trained model to cancel. This parameter
|
493
|
+
# allows you to specify which version of the trained model you want to
|
494
|
+
# cancel when multiple versions exist.
|
495
|
+
#
|
496
|
+
# If `versionIdentifier` is not specified, the base model will be
|
497
|
+
# cancelled.
|
498
|
+
#
|
481
499
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
482
500
|
#
|
483
501
|
# @example Request syntax with placeholder values
|
@@ -485,6 +503,7 @@ module Aws::CleanRoomsML
|
|
485
503
|
# resp = client.cancel_trained_model({
|
486
504
|
# membership_identifier: "UUID", # required
|
487
505
|
# trained_model_arn: "TrainedModelArn", # required
|
506
|
+
# version_identifier: "UUID",
|
488
507
|
# })
|
489
508
|
#
|
490
509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CancelTrainedModel AWS API Documentation
|
@@ -918,6 +937,10 @@ module Aws::CleanRoomsML
|
|
918
937
|
# container_metrics: {
|
919
938
|
# noise_level: "HIGH", # required, accepts HIGH, MEDIUM, LOW, NONE
|
920
939
|
# },
|
940
|
+
# max_artifact_size: {
|
941
|
+
# unit: "GB", # required, accepts GB
|
942
|
+
# value: 1.0, # required
|
943
|
+
# },
|
921
944
|
# },
|
922
945
|
# trained_model_exports: {
|
923
946
|
# max_size: { # required
|
@@ -1041,6 +1064,7 @@ module Aws::CleanRoomsML
|
|
1041
1064
|
# number: 1,
|
1042
1065
|
# },
|
1043
1066
|
# },
|
1067
|
+
# result_format: "CSV", # accepts CSV, PARQUET
|
1044
1068
|
# },
|
1045
1069
|
# },
|
1046
1070
|
# role_arn: "IamRoleArn", # required
|
@@ -1092,10 +1116,41 @@ module Aws::CleanRoomsML
|
|
1092
1116
|
# @option params [Types::StoppingCondition] :stopping_condition
|
1093
1117
|
# The criteria that is used to stop model training.
|
1094
1118
|
#
|
1119
|
+
# @option params [Array<Types::IncrementalTrainingDataChannel>] :incremental_training_data_channels
|
1120
|
+
# Specifies the incremental training data channels for the trained
|
1121
|
+
# model.
|
1122
|
+
#
|
1123
|
+
# Incremental training allows you to create a new trained model with
|
1124
|
+
# updates without retraining from scratch. You can specify up to one
|
1125
|
+
# incremental training data channel that references a previously trained
|
1126
|
+
# model and its version.
|
1127
|
+
#
|
1128
|
+
# Limit: Maximum of 20 channels total (including both
|
1129
|
+
# `incrementalTrainingDataChannels` and `dataChannels`).
|
1130
|
+
#
|
1095
1131
|
# @option params [required, Array<Types::ModelTrainingDataChannel>] :data_channels
|
1096
1132
|
# Defines the data channels that are used as input for the trained model
|
1097
1133
|
# request.
|
1098
1134
|
#
|
1135
|
+
# Limit: Maximum of 20 channels total (including both `dataChannels` and
|
1136
|
+
# `incrementalTrainingDataChannels`).
|
1137
|
+
#
|
1138
|
+
# @option params [String] :training_input_mode
|
1139
|
+
# The input mode for accessing the training data. This parameter
|
1140
|
+
# determines how the training data is made available to the training
|
1141
|
+
# algorithm. Valid values are:
|
1142
|
+
#
|
1143
|
+
# * `File` - The training data is downloaded to the training instance
|
1144
|
+
# and made available as files.
|
1145
|
+
#
|
1146
|
+
# * `FastFile` - The training data is streamed directly from Amazon S3
|
1147
|
+
# to the training algorithm, providing faster access for large
|
1148
|
+
# datasets.
|
1149
|
+
#
|
1150
|
+
# * `Pipe` - The training data is streamed to the training algorithm
|
1151
|
+
# using named pipes, which can improve performance for certain
|
1152
|
+
# algorithms.
|
1153
|
+
#
|
1099
1154
|
# @option params [String] :description
|
1100
1155
|
# The description of the trained model.
|
1101
1156
|
#
|
@@ -1139,6 +1194,7 @@ module Aws::CleanRoomsML
|
|
1139
1194
|
# @return [Types::CreateTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1140
1195
|
#
|
1141
1196
|
# * {Types::CreateTrainedModelResponse#trained_model_arn #trained_model_arn} => String
|
1197
|
+
# * {Types::CreateTrainedModelResponse#version_identifier #version_identifier} => String
|
1142
1198
|
#
|
1143
1199
|
# @example Request syntax with placeholder values
|
1144
1200
|
#
|
@@ -1160,12 +1216,21 @@ module Aws::CleanRoomsML
|
|
1160
1216
|
# stopping_condition: {
|
1161
1217
|
# max_runtime_in_seconds: 1,
|
1162
1218
|
# },
|
1219
|
+
# incremental_training_data_channels: [
|
1220
|
+
# {
|
1221
|
+
# trained_model_arn: "TrainedModelArn", # required
|
1222
|
+
# version_identifier: "UUID",
|
1223
|
+
# channel_name: "ModelTrainingDataChannelName", # required
|
1224
|
+
# },
|
1225
|
+
# ],
|
1163
1226
|
# data_channels: [ # required
|
1164
1227
|
# {
|
1165
1228
|
# ml_input_channel_arn: "MLInputChannelArn", # required
|
1166
1229
|
# channel_name: "ModelTrainingDataChannelName", # required
|
1230
|
+
# s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
|
1167
1231
|
# },
|
1168
1232
|
# ],
|
1233
|
+
# training_input_mode: "File", # accepts File, FastFile, Pipe
|
1169
1234
|
# description: "ResourceDescription",
|
1170
1235
|
# kms_key_arn: "KmsKeyArn",
|
1171
1236
|
# tags: {
|
@@ -1176,6 +1241,7 @@ module Aws::CleanRoomsML
|
|
1176
1241
|
# @example Response structure
|
1177
1242
|
#
|
1178
1243
|
# resp.trained_model_arn #=> String
|
1244
|
+
# resp.version_identifier #=> String
|
1179
1245
|
#
|
1180
1246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateTrainedModel AWS API Documentation
|
1181
1247
|
#
|
@@ -1490,7 +1556,7 @@ module Aws::CleanRoomsML
|
|
1490
1556
|
req.send_request(options)
|
1491
1557
|
end
|
1492
1558
|
|
1493
|
-
# Deletes the
|
1559
|
+
# Deletes the model artifacts stored by the service.
|
1494
1560
|
#
|
1495
1561
|
# @option params [required, String] :trained_model_arn
|
1496
1562
|
# The Amazon Resource Name (ARN) of the trained model whose output you
|
@@ -1500,6 +1566,11 @@ module Aws::CleanRoomsML
|
|
1500
1566
|
# The membership ID of the member that is deleting the trained model
|
1501
1567
|
# output.
|
1502
1568
|
#
|
1569
|
+
# @option params [String] :version_identifier
|
1570
|
+
# The version identifier of the trained model to delete. If not
|
1571
|
+
# specified, the operation will delete the base version of the trained
|
1572
|
+
# model. When specified, only the particular version will be deleted.
|
1573
|
+
#
|
1503
1574
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1504
1575
|
#
|
1505
1576
|
# @example Request syntax with placeholder values
|
@@ -1507,6 +1578,7 @@ module Aws::CleanRoomsML
|
|
1507
1578
|
# resp = client.delete_trained_model_output({
|
1508
1579
|
# trained_model_arn: "TrainedModelArn", # required
|
1509
1580
|
# membership_identifier: "UUID", # required
|
1581
|
+
# version_identifier: "UUID",
|
1510
1582
|
# })
|
1511
1583
|
#
|
1512
1584
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/DeleteTrainedModelOutput AWS API Documentation
|
@@ -1716,6 +1788,8 @@ module Aws::CleanRoomsML
|
|
1716
1788
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids[0] #=> String
|
1717
1789
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].filter_pattern #=> String
|
1718
1790
|
# resp.privacy_configuration.policies.trained_models.container_metrics.noise_level #=> String, one of "HIGH", "MEDIUM", "LOW", "NONE"
|
1791
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.unit #=> String, one of "GB"
|
1792
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.value #=> Float
|
1719
1793
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.unit #=> String, one of "GB"
|
1720
1794
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.value #=> Float
|
1721
1795
|
# resp.privacy_configuration.policies.trained_model_exports.files_to_export #=> Array
|
@@ -1807,17 +1881,25 @@ module Aws::CleanRoomsML
|
|
1807
1881
|
# The collaboration ID that contains the trained model that you want to
|
1808
1882
|
# return information about.
|
1809
1883
|
#
|
1884
|
+
# @option params [String] :version_identifier
|
1885
|
+
# The version identifier of the trained model to retrieve. If not
|
1886
|
+
# specified, the operation returns information about the latest version
|
1887
|
+
# of the trained model.
|
1888
|
+
#
|
1810
1889
|
# @return [Types::GetCollaborationTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1811
1890
|
#
|
1812
1891
|
# * {Types::GetCollaborationTrainedModelResponse#membership_identifier #membership_identifier} => String
|
1813
1892
|
# * {Types::GetCollaborationTrainedModelResponse#collaboration_identifier #collaboration_identifier} => String
|
1814
1893
|
# * {Types::GetCollaborationTrainedModelResponse#trained_model_arn #trained_model_arn} => String
|
1894
|
+
# * {Types::GetCollaborationTrainedModelResponse#version_identifier #version_identifier} => String
|
1895
|
+
# * {Types::GetCollaborationTrainedModelResponse#incremental_training_data_channels #incremental_training_data_channels} => Array<Types::IncrementalTrainingDataChannelOutput>
|
1815
1896
|
# * {Types::GetCollaborationTrainedModelResponse#name #name} => String
|
1816
1897
|
# * {Types::GetCollaborationTrainedModelResponse#description #description} => String
|
1817
1898
|
# * {Types::GetCollaborationTrainedModelResponse#status #status} => String
|
1818
1899
|
# * {Types::GetCollaborationTrainedModelResponse#status_details #status_details} => Types::StatusDetails
|
1819
1900
|
# * {Types::GetCollaborationTrainedModelResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
|
1820
1901
|
# * {Types::GetCollaborationTrainedModelResponse#resource_config #resource_config} => Types::ResourceConfig
|
1902
|
+
# * {Types::GetCollaborationTrainedModelResponse#training_input_mode #training_input_mode} => String
|
1821
1903
|
# * {Types::GetCollaborationTrainedModelResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
|
1822
1904
|
# * {Types::GetCollaborationTrainedModelResponse#metrics_status #metrics_status} => String
|
1823
1905
|
# * {Types::GetCollaborationTrainedModelResponse#metrics_status_details #metrics_status_details} => String
|
@@ -1833,6 +1915,7 @@ module Aws::CleanRoomsML
|
|
1833
1915
|
# resp = client.get_collaboration_trained_model({
|
1834
1916
|
# trained_model_arn: "TrainedModelArn", # required
|
1835
1917
|
# collaboration_identifier: "UUID", # required
|
1918
|
+
# version_identifier: "UUID",
|
1836
1919
|
# })
|
1837
1920
|
#
|
1838
1921
|
# @example Response structure
|
@@ -1840,6 +1923,11 @@ module Aws::CleanRoomsML
|
|
1840
1923
|
# resp.membership_identifier #=> String
|
1841
1924
|
# resp.collaboration_identifier #=> String
|
1842
1925
|
# resp.trained_model_arn #=> String
|
1926
|
+
# resp.version_identifier #=> String
|
1927
|
+
# resp.incremental_training_data_channels #=> Array
|
1928
|
+
# resp.incremental_training_data_channels[0].channel_name #=> String
|
1929
|
+
# resp.incremental_training_data_channels[0].version_identifier #=> String
|
1930
|
+
# resp.incremental_training_data_channels[0].model_name #=> String
|
1843
1931
|
# resp.name #=> String
|
1844
1932
|
# resp.description #=> String
|
1845
1933
|
# 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 +1937,7 @@ module Aws::CleanRoomsML
|
|
1849
1937
|
# resp.resource_config.instance_count #=> Integer
|
1850
1938
|
# 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
1939
|
# resp.resource_config.volume_size_in_gb #=> Integer
|
1940
|
+
# resp.training_input_mode #=> String, one of "File", "FastFile", "Pipe"
|
1852
1941
|
# resp.stopping_condition.max_runtime_in_seconds #=> Integer
|
1853
1942
|
# resp.metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
1854
1943
|
# resp.metrics_status_details #=> String
|
@@ -2058,6 +2147,8 @@ module Aws::CleanRoomsML
|
|
2058
2147
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].allowed_account_ids[0] #=> String
|
2059
2148
|
# resp.privacy_configuration.policies.trained_models.container_logs[0].filter_pattern #=> String
|
2060
2149
|
# resp.privacy_configuration.policies.trained_models.container_metrics.noise_level #=> String, one of "HIGH", "MEDIUM", "LOW", "NONE"
|
2150
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.unit #=> String, one of "GB"
|
2151
|
+
# resp.privacy_configuration.policies.trained_models.max_artifact_size.value #=> Float
|
2061
2152
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.unit #=> String, one of "GB"
|
2062
2153
|
# resp.privacy_configuration.policies.trained_model_exports.max_size.value #=> Float
|
2063
2154
|
# resp.privacy_configuration.policies.trained_model_exports.files_to_export #=> Array
|
@@ -2167,6 +2258,7 @@ module Aws::CleanRoomsML
|
|
2167
2258
|
# resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.parameters["ParameterKey"] #=> String
|
2168
2259
|
# resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.type #=> String, one of "CR.1X", "CR.4X"
|
2169
2260
|
# resp.input_channel.data_source.protected_query_input_parameters.compute_configuration.worker.number #=> Integer
|
2261
|
+
# resp.input_channel.data_source.protected_query_input_parameters.result_format #=> String, one of "CSV", "PARQUET"
|
2170
2262
|
# resp.input_channel.role_arn #=> String
|
2171
2263
|
# resp.protected_query_identifier #=> String
|
2172
2264
|
# resp.ml_input_channel_arn #=> String
|
@@ -2204,17 +2296,25 @@ module Aws::CleanRoomsML
|
|
2204
2296
|
# The membership ID of the member that created the trained model that
|
2205
2297
|
# you are interested in.
|
2206
2298
|
#
|
2299
|
+
# @option params [String] :version_identifier
|
2300
|
+
# The version identifier of the trained model to retrieve. If not
|
2301
|
+
# specified, the operation returns information about the latest version
|
2302
|
+
# of the trained model.
|
2303
|
+
#
|
2207
2304
|
# @return [Types::GetTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2208
2305
|
#
|
2209
2306
|
# * {Types::GetTrainedModelResponse#membership_identifier #membership_identifier} => String
|
2210
2307
|
# * {Types::GetTrainedModelResponse#collaboration_identifier #collaboration_identifier} => String
|
2211
2308
|
# * {Types::GetTrainedModelResponse#trained_model_arn #trained_model_arn} => String
|
2309
|
+
# * {Types::GetTrainedModelResponse#version_identifier #version_identifier} => String
|
2310
|
+
# * {Types::GetTrainedModelResponse#incremental_training_data_channels #incremental_training_data_channels} => Array<Types::IncrementalTrainingDataChannelOutput>
|
2212
2311
|
# * {Types::GetTrainedModelResponse#name #name} => String
|
2213
2312
|
# * {Types::GetTrainedModelResponse#description #description} => String
|
2214
2313
|
# * {Types::GetTrainedModelResponse#status #status} => String
|
2215
2314
|
# * {Types::GetTrainedModelResponse#status_details #status_details} => Types::StatusDetails
|
2216
2315
|
# * {Types::GetTrainedModelResponse#configured_model_algorithm_association_arn #configured_model_algorithm_association_arn} => String
|
2217
2316
|
# * {Types::GetTrainedModelResponse#resource_config #resource_config} => Types::ResourceConfig
|
2317
|
+
# * {Types::GetTrainedModelResponse#training_input_mode #training_input_mode} => String
|
2218
2318
|
# * {Types::GetTrainedModelResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
|
2219
2319
|
# * {Types::GetTrainedModelResponse#metrics_status #metrics_status} => String
|
2220
2320
|
# * {Types::GetTrainedModelResponse#metrics_status_details #metrics_status_details} => String
|
@@ -2234,6 +2334,7 @@ module Aws::CleanRoomsML
|
|
2234
2334
|
# resp = client.get_trained_model({
|
2235
2335
|
# trained_model_arn: "TrainedModelArn", # required
|
2236
2336
|
# membership_identifier: "UUID", # required
|
2337
|
+
# version_identifier: "UUID",
|
2237
2338
|
# })
|
2238
2339
|
#
|
2239
2340
|
# @example Response structure
|
@@ -2241,6 +2342,11 @@ module Aws::CleanRoomsML
|
|
2241
2342
|
# resp.membership_identifier #=> String
|
2242
2343
|
# resp.collaboration_identifier #=> String
|
2243
2344
|
# resp.trained_model_arn #=> String
|
2345
|
+
# resp.version_identifier #=> String
|
2346
|
+
# resp.incremental_training_data_channels #=> Array
|
2347
|
+
# resp.incremental_training_data_channels[0].channel_name #=> String
|
2348
|
+
# resp.incremental_training_data_channels[0].version_identifier #=> String
|
2349
|
+
# resp.incremental_training_data_channels[0].model_name #=> String
|
2244
2350
|
# resp.name #=> String
|
2245
2351
|
# resp.description #=> String
|
2246
2352
|
# 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 +2356,7 @@ module Aws::CleanRoomsML
|
|
2250
2356
|
# resp.resource_config.instance_count #=> Integer
|
2251
2357
|
# 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
2358
|
# resp.resource_config.volume_size_in_gb #=> Integer
|
2359
|
+
# resp.training_input_mode #=> String, one of "File", "FastFile", "Pipe"
|
2253
2360
|
# resp.stopping_condition.max_runtime_in_seconds #=> Integer
|
2254
2361
|
# resp.metrics_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
2255
2362
|
# resp.metrics_status_details #=> String
|
@@ -2268,6 +2375,7 @@ module Aws::CleanRoomsML
|
|
2268
2375
|
# resp.data_channels #=> Array
|
2269
2376
|
# resp.data_channels[0].ml_input_channel_arn #=> String
|
2270
2377
|
# resp.data_channels[0].channel_name #=> String
|
2378
|
+
# resp.data_channels[0].s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
|
2271
2379
|
#
|
2272
2380
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainedModel AWS API Documentation
|
2273
2381
|
#
|
@@ -2297,6 +2405,7 @@ module Aws::CleanRoomsML
|
|
2297
2405
|
# * {Types::GetTrainedModelInferenceJobResponse#name #name} => String
|
2298
2406
|
# * {Types::GetTrainedModelInferenceJobResponse#status #status} => String
|
2299
2407
|
# * {Types::GetTrainedModelInferenceJobResponse#trained_model_arn #trained_model_arn} => String
|
2408
|
+
# * {Types::GetTrainedModelInferenceJobResponse#trained_model_version_identifier #trained_model_version_identifier} => String
|
2300
2409
|
# * {Types::GetTrainedModelInferenceJobResponse#resource_config #resource_config} => Types::InferenceResourceConfig
|
2301
2410
|
# * {Types::GetTrainedModelInferenceJobResponse#output_configuration #output_configuration} => Types::InferenceOutputConfiguration
|
2302
2411
|
# * {Types::GetTrainedModelInferenceJobResponse#membership_identifier #membership_identifier} => String
|
@@ -2329,6 +2438,7 @@ module Aws::CleanRoomsML
|
|
2329
2438
|
# resp.name #=> String
|
2330
2439
|
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "CANCEL_PENDING", "CANCEL_IN_PROGRESS", "CANCEL_FAILED", "INACTIVE"
|
2331
2440
|
# resp.trained_model_arn #=> String
|
2441
|
+
# resp.trained_model_version_identifier #=> String
|
2332
2442
|
# 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
2443
|
# resp.resource_config.instance_count #=> Integer
|
2334
2444
|
# resp.output_configuration.accept #=> String
|
@@ -2690,6 +2800,11 @@ module Aws::CleanRoomsML
|
|
2690
2800
|
# The Amazon Resource Name (ARN) of the trained model that was used to
|
2691
2801
|
# create the export jobs that you are interested in.
|
2692
2802
|
#
|
2803
|
+
# @option params [String] :trained_model_version_identifier
|
2804
|
+
# The version identifier of the trained model to filter export jobs by.
|
2805
|
+
# When specified, only export jobs for this specific version of the
|
2806
|
+
# trained model are returned.
|
2807
|
+
#
|
2693
2808
|
# @return [Types::ListCollaborationTrainedModelExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2694
2809
|
#
|
2695
2810
|
# * {Types::ListCollaborationTrainedModelExportJobsResponse#next_token #next_token} => String
|
@@ -2704,6 +2819,7 @@ module Aws::CleanRoomsML
|
|
2704
2819
|
# max_results: 1,
|
2705
2820
|
# collaboration_identifier: "UUID", # required
|
2706
2821
|
# trained_model_arn: "TrainedModelArn", # required
|
2822
|
+
# trained_model_version_identifier: "UUID",
|
2707
2823
|
# })
|
2708
2824
|
#
|
2709
2825
|
# @example Response structure
|
@@ -2721,6 +2837,7 @@ module Aws::CleanRoomsML
|
|
2721
2837
|
# resp.collaboration_trained_model_export_jobs[0].description #=> String
|
2722
2838
|
# resp.collaboration_trained_model_export_jobs[0].creator_account_id #=> String
|
2723
2839
|
# resp.collaboration_trained_model_export_jobs[0].trained_model_arn #=> String
|
2840
|
+
# resp.collaboration_trained_model_export_jobs[0].trained_model_version_identifier #=> String
|
2724
2841
|
# resp.collaboration_trained_model_export_jobs[0].membership_identifier #=> String
|
2725
2842
|
# resp.collaboration_trained_model_export_jobs[0].collaboration_identifier #=> String
|
2726
2843
|
#
|
@@ -2751,6 +2868,11 @@ module Aws::CleanRoomsML
|
|
2751
2868
|
# The Amazon Resource Name (ARN) of the trained model that was used to
|
2752
2869
|
# create the trained model inference jobs that you are interested in.
|
2753
2870
|
#
|
2871
|
+
# @option params [String] :trained_model_version_identifier
|
2872
|
+
# The version identifier of the trained model to filter inference jobs
|
2873
|
+
# by. When specified, only inference jobs that used this specific
|
2874
|
+
# version of the trained model are returned.
|
2875
|
+
#
|
2754
2876
|
# @return [Types::ListCollaborationTrainedModelInferenceJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2755
2877
|
#
|
2756
2878
|
# * {Types::ListCollaborationTrainedModelInferenceJobsResponse#next_token #next_token} => String
|
@@ -2765,6 +2887,7 @@ module Aws::CleanRoomsML
|
|
2765
2887
|
# max_results: 1,
|
2766
2888
|
# collaboration_identifier: "UUID", # required
|
2767
2889
|
# trained_model_arn: "TrainedModelArn",
|
2890
|
+
# trained_model_version_identifier: "UUID",
|
2768
2891
|
# })
|
2769
2892
|
#
|
2770
2893
|
# @example Response structure
|
@@ -2775,6 +2898,7 @@ module Aws::CleanRoomsML
|
|
2775
2898
|
# resp.collaboration_trained_model_inference_jobs[0].configured_model_algorithm_association_arn #=> String
|
2776
2899
|
# resp.collaboration_trained_model_inference_jobs[0].membership_identifier #=> String
|
2777
2900
|
# resp.collaboration_trained_model_inference_jobs[0].trained_model_arn #=> String
|
2901
|
+
# resp.collaboration_trained_model_inference_jobs[0].trained_model_version_identifier #=> String
|
2778
2902
|
# resp.collaboration_trained_model_inference_jobs[0].collaboration_identifier #=> String
|
2779
2903
|
# 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
2904
|
# resp.collaboration_trained_model_inference_jobs[0].output_configuration.accept #=> String
|
@@ -2835,6 +2959,11 @@ module Aws::CleanRoomsML
|
|
2835
2959
|
# resp.collaboration_trained_models[0].update_time #=> Time
|
2836
2960
|
# resp.collaboration_trained_models[0].trained_model_arn #=> String
|
2837
2961
|
# resp.collaboration_trained_models[0].name #=> String
|
2962
|
+
# resp.collaboration_trained_models[0].version_identifier #=> String
|
2963
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels #=> Array
|
2964
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels[0].channel_name #=> String
|
2965
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels[0].version_identifier #=> String
|
2966
|
+
# resp.collaboration_trained_models[0].incremental_training_data_channels[0].model_name #=> String
|
2838
2967
|
# resp.collaboration_trained_models[0].description #=> String
|
2839
2968
|
# resp.collaboration_trained_models[0].membership_identifier #=> String
|
2840
2969
|
# resp.collaboration_trained_models[0].collaboration_identifier #=> String
|
@@ -3089,6 +3218,11 @@ module Aws::CleanRoomsML
|
|
3089
3218
|
# The Amazon Resource Name (ARN) of a trained model that was used to
|
3090
3219
|
# create the trained model inference jobs that you are interested in.
|
3091
3220
|
#
|
3221
|
+
# @option params [String] :trained_model_version_identifier
|
3222
|
+
# The version identifier of the trained model to filter inference jobs
|
3223
|
+
# by. When specified, only inference jobs that used this specific
|
3224
|
+
# version of the trained model are returned.
|
3225
|
+
#
|
3092
3226
|
# @return [Types::ListTrainedModelInferenceJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3093
3227
|
#
|
3094
3228
|
# * {Types::ListTrainedModelInferenceJobsResponse#next_token #next_token} => String
|
@@ -3103,6 +3237,7 @@ module Aws::CleanRoomsML
|
|
3103
3237
|
# max_results: 1,
|
3104
3238
|
# membership_identifier: "UUID", # required
|
3105
3239
|
# trained_model_arn: "TrainedModelArn",
|
3240
|
+
# trained_model_version_identifier: "UUID",
|
3106
3241
|
# })
|
3107
3242
|
#
|
3108
3243
|
# @example Response structure
|
@@ -3113,6 +3248,7 @@ module Aws::CleanRoomsML
|
|
3113
3248
|
# resp.trained_model_inference_jobs[0].configured_model_algorithm_association_arn #=> String
|
3114
3249
|
# resp.trained_model_inference_jobs[0].membership_identifier #=> String
|
3115
3250
|
# resp.trained_model_inference_jobs[0].trained_model_arn #=> String
|
3251
|
+
# resp.trained_model_inference_jobs[0].trained_model_version_identifier #=> String
|
3116
3252
|
# resp.trained_model_inference_jobs[0].collaboration_identifier #=> String
|
3117
3253
|
# 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
3254
|
# resp.trained_model_inference_jobs[0].output_configuration.accept #=> String
|
@@ -3136,6 +3272,78 @@ module Aws::CleanRoomsML
|
|
3136
3272
|
req.send_request(options)
|
3137
3273
|
end
|
3138
3274
|
|
3275
|
+
# Returns a list of trained model versions for a specified trained
|
3276
|
+
# model. This operation allows you to view all versions of a trained
|
3277
|
+
# model, including information about their status and creation details.
|
3278
|
+
# You can use this to track the evolution of your trained models and
|
3279
|
+
# select specific versions for inference or further training.
|
3280
|
+
#
|
3281
|
+
# @option params [String] :next_token
|
3282
|
+
# The pagination token from a previous `ListTrainedModelVersions`
|
3283
|
+
# request. Use this token to retrieve the next page of results.
|
3284
|
+
#
|
3285
|
+
# @option params [Integer] :max_results
|
3286
|
+
# The maximum number of trained model versions to return in a single
|
3287
|
+
# page. The default value is 10, and the maximum value is 100.
|
3288
|
+
#
|
3289
|
+
# @option params [required, String] :membership_identifier
|
3290
|
+
# The membership identifier for the collaboration that contains the
|
3291
|
+
# trained model.
|
3292
|
+
#
|
3293
|
+
# @option params [required, String] :trained_model_arn
|
3294
|
+
# The Amazon Resource Name (ARN) of the trained model for which to list
|
3295
|
+
# versions.
|
3296
|
+
#
|
3297
|
+
# @option params [String] :status
|
3298
|
+
# Filter the results to only include trained model versions with the
|
3299
|
+
# specified status. Valid values include `CREATE_PENDING`,
|
3300
|
+
# `CREATE_IN_PROGRESS`, `ACTIVE`, `CREATE_FAILED`, and others.
|
3301
|
+
#
|
3302
|
+
# @return [Types::ListTrainedModelVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3303
|
+
#
|
3304
|
+
# * {Types::ListTrainedModelVersionsResponse#next_token #next_token} => String
|
3305
|
+
# * {Types::ListTrainedModelVersionsResponse#trained_models #trained_models} => Array<Types::TrainedModelSummary>
|
3306
|
+
#
|
3307
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3308
|
+
#
|
3309
|
+
# @example Request syntax with placeholder values
|
3310
|
+
#
|
3311
|
+
# resp = client.list_trained_model_versions({
|
3312
|
+
# next_token: "NextToken",
|
3313
|
+
# max_results: 1,
|
3314
|
+
# membership_identifier: "UUID", # required
|
3315
|
+
# trained_model_arn: "TrainedModelArn", # required
|
3316
|
+
# 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
|
3317
|
+
# })
|
3318
|
+
#
|
3319
|
+
# @example Response structure
|
3320
|
+
#
|
3321
|
+
# resp.next_token #=> String
|
3322
|
+
# resp.trained_models #=> Array
|
3323
|
+
# resp.trained_models[0].create_time #=> Time
|
3324
|
+
# resp.trained_models[0].update_time #=> Time
|
3325
|
+
# resp.trained_models[0].trained_model_arn #=> String
|
3326
|
+
# resp.trained_models[0].version_identifier #=> String
|
3327
|
+
# resp.trained_models[0].incremental_training_data_channels #=> Array
|
3328
|
+
# resp.trained_models[0].incremental_training_data_channels[0].channel_name #=> String
|
3329
|
+
# resp.trained_models[0].incremental_training_data_channels[0].version_identifier #=> String
|
3330
|
+
# resp.trained_models[0].incremental_training_data_channels[0].model_name #=> String
|
3331
|
+
# resp.trained_models[0].name #=> String
|
3332
|
+
# resp.trained_models[0].description #=> String
|
3333
|
+
# resp.trained_models[0].membership_identifier #=> String
|
3334
|
+
# resp.trained_models[0].collaboration_identifier #=> String
|
3335
|
+
# 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"
|
3336
|
+
# resp.trained_models[0].configured_model_algorithm_association_arn #=> String
|
3337
|
+
#
|
3338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListTrainedModelVersions AWS API Documentation
|
3339
|
+
#
|
3340
|
+
# @overload list_trained_model_versions(params = {})
|
3341
|
+
# @param [Hash] params ({})
|
3342
|
+
def list_trained_model_versions(params = {}, options = {})
|
3343
|
+
req = build_request(:list_trained_model_versions, params)
|
3344
|
+
req.send_request(options)
|
3345
|
+
end
|
3346
|
+
|
3139
3347
|
# Returns a list of trained models.
|
3140
3348
|
#
|
3141
3349
|
# @option params [String] :next_token
|
@@ -3171,6 +3379,11 @@ module Aws::CleanRoomsML
|
|
3171
3379
|
# resp.trained_models[0].create_time #=> Time
|
3172
3380
|
# resp.trained_models[0].update_time #=> Time
|
3173
3381
|
# resp.trained_models[0].trained_model_arn #=> String
|
3382
|
+
# resp.trained_models[0].version_identifier #=> String
|
3383
|
+
# resp.trained_models[0].incremental_training_data_channels #=> Array
|
3384
|
+
# resp.trained_models[0].incremental_training_data_channels[0].channel_name #=> String
|
3385
|
+
# resp.trained_models[0].incremental_training_data_channels[0].version_identifier #=> String
|
3386
|
+
# resp.trained_models[0].incremental_training_data_channels[0].model_name #=> String
|
3174
3387
|
# resp.trained_models[0].name #=> String
|
3175
3388
|
# resp.trained_models[0].description #=> String
|
3176
3389
|
# resp.trained_models[0].membership_identifier #=> String
|
@@ -3462,6 +3675,11 @@ module Aws::CleanRoomsML
|
|
3462
3675
|
# The Amazon Resource Name (ARN) of the trained model that you want to
|
3463
3676
|
# export.
|
3464
3677
|
#
|
3678
|
+
# @option params [String] :trained_model_version_identifier
|
3679
|
+
# The version identifier of the trained model to export. This specifies
|
3680
|
+
# which version of the trained model should be exported to the specified
|
3681
|
+
# destination.
|
3682
|
+
#
|
3465
3683
|
# @option params [required, String] :membership_identifier
|
3466
3684
|
# The membership ID of the member that is receiving the exported trained
|
3467
3685
|
# model artifacts.
|
@@ -3479,6 +3697,7 @@ module Aws::CleanRoomsML
|
|
3479
3697
|
# resp = client.start_trained_model_export_job({
|
3480
3698
|
# name: "NameString", # required
|
3481
3699
|
# trained_model_arn: "TrainedModelArn", # required
|
3700
|
+
# trained_model_version_identifier: "UUID",
|
3482
3701
|
# membership_identifier: "UUID", # required
|
3483
3702
|
# output_configuration: { # required
|
3484
3703
|
# members: [ # required
|
@@ -3513,6 +3732,11 @@ module Aws::CleanRoomsML
|
|
3513
3732
|
# The Amazon Resource Name (ARN) of the trained model that is used for
|
3514
3733
|
# this trained model inference job.
|
3515
3734
|
#
|
3735
|
+
# @option params [String] :trained_model_version_identifier
|
3736
|
+
# The version identifier of the trained model to use for inference. This
|
3737
|
+
# specifies which version of the trained model should be used to
|
3738
|
+
# generate predictions on the input data.
|
3739
|
+
#
|
3516
3740
|
# @option params [String] :configured_model_algorithm_association_arn
|
3517
3741
|
# The Amazon Resource Name (ARN) of the configured model algorithm
|
3518
3742
|
# association that is used for this trained model inference job.
|
@@ -3585,6 +3809,7 @@ module Aws::CleanRoomsML
|
|
3585
3809
|
# membership_identifier: "UUID", # required
|
3586
3810
|
# name: "NameString", # required
|
3587
3811
|
# trained_model_arn: "TrainedModelArn", # required
|
3812
|
+
# trained_model_version_identifier: "UUID",
|
3588
3813
|
# configured_model_algorithm_association_arn: "ConfiguredModelAlgorithmAssociationArn",
|
3589
3814
|
# resource_config: { # required
|
3590
3815
|
# 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 +4022,7 @@ module Aws::CleanRoomsML
|
|
3797
4022
|
tracer: tracer
|
3798
4023
|
)
|
3799
4024
|
context[:gem_name] = 'aws-sdk-cleanroomsml'
|
3800
|
-
context[:gem_version] = '1.
|
4025
|
+
context[:gem_version] = '1.30.0'
|
3801
4026
|
Seahorse::Client::Request.new(handlers, context)
|
3802
4027
|
end
|
3803
4028
|
|