aws-sdk-cleanroomsml 1.46.0 → 1.47.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 +45 -8
- data/lib/aws-sdk-cleanroomsml/client_api.rb +19 -0
- data/lib/aws-sdk-cleanroomsml/types.rb +110 -8
- data/lib/aws-sdk-cleanroomsml.rb +1 -1
- data/sig/client.rbs +14 -3
- data/sig/types.rbs +20 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 901b1bfdab67873790d3b7cf6a6425c1bbd8688e610a5d0f79115c311a860908
|
|
4
|
+
data.tar.gz: adc8e69a6aef61b1c2c3e9bfb7a37aaa6ebdf3959de0a0549a61b16c19ef8046
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d22a74d6844e665c8a079fa38a21a8d10e46542be2e664fd5c1a95898911b1066d823131afee296c76c9da0487e0eef2fafaec8ae3c2ff65cc35b0ff70328238
|
|
7
|
+
data.tar.gz: 6fa7e1cc4217e3d4cce9f65ad4964cbe5053c8d988c81d2024388cbf1bc89427bc12751db8cf13e46c5f82f8e8759a8bb185cde8bda737126735c245b1bb92ee
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.47.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Collaboration creators can update payment configurations without recreating the collaboration. When multiple payer candidates are configured for a cost type, analysis runners can specify the actual payer at submission time, providing granular control over billing.
|
|
8
|
+
|
|
4
9
|
1.46.0 (2026-05-19)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.47.0
|
|
@@ -199,7 +199,7 @@ module Aws::CleanRoomsML
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::CleanRoomsML
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -1050,6 +1048,10 @@ module Aws::CleanRoomsML
|
|
|
1050
1048
|
# limit of 50 tags. Tags with only the key prefix of aws do not count
|
|
1051
1049
|
# against your tags per resource limit.
|
|
1052
1050
|
#
|
|
1051
|
+
# @option params [Types::PayerConfiguration] :payer_configuration
|
|
1052
|
+
# The payer configuration for the ML input channel. Determines which
|
|
1053
|
+
# member account pays for compute and synthetic data costs.
|
|
1054
|
+
#
|
|
1053
1055
|
# @return [Types::CreateMLInputChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1054
1056
|
#
|
|
1055
1057
|
# * {Types::CreateMLInputChannelResponse#ml_input_channel_arn #ml_input_channel_arn} => String
|
|
@@ -1092,6 +1094,10 @@ module Aws::CleanRoomsML
|
|
|
1092
1094
|
# tags: {
|
|
1093
1095
|
# "TagKey" => "TagValue",
|
|
1094
1096
|
# },
|
|
1097
|
+
# payer_configuration: {
|
|
1098
|
+
# compute_payer_account_id: "AccountId",
|
|
1099
|
+
# synthetic_data_payer_account_id: "AccountId",
|
|
1100
|
+
# },
|
|
1095
1101
|
# })
|
|
1096
1102
|
#
|
|
1097
1103
|
# @example Response structure
|
|
@@ -1207,6 +1213,10 @@ module Aws::CleanRoomsML
|
|
|
1207
1213
|
# limit of 50 tags. Tags with only the key prefix of aws do not count
|
|
1208
1214
|
# against your tags per resource limit.
|
|
1209
1215
|
#
|
|
1216
|
+
# @option params [String] :ml_model_training_payer_account_id
|
|
1217
|
+
# The account ID of the member that is responsible for paying for model
|
|
1218
|
+
# training costs.
|
|
1219
|
+
#
|
|
1210
1220
|
# @return [Types::CreateTrainedModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1211
1221
|
#
|
|
1212
1222
|
# * {Types::CreateTrainedModelResponse#trained_model_arn #trained_model_arn} => String
|
|
@@ -1252,6 +1262,7 @@ module Aws::CleanRoomsML
|
|
|
1252
1262
|
# tags: {
|
|
1253
1263
|
# "TagKey" => "TagValue",
|
|
1254
1264
|
# },
|
|
1265
|
+
# ml_model_training_payer_account_id: "AccountId",
|
|
1255
1266
|
# })
|
|
1256
1267
|
#
|
|
1257
1268
|
# @example Response structure
|
|
@@ -1863,6 +1874,7 @@ module Aws::CleanRoomsML
|
|
|
1863
1874
|
# * {Types::GetCollaborationMLInputChannelResponse#privacy_budgets #privacy_budgets} => Types::PrivacyBudgets
|
|
1864
1875
|
# * {Types::GetCollaborationMLInputChannelResponse#description #description} => String
|
|
1865
1876
|
# * {Types::GetCollaborationMLInputChannelResponse#synthetic_data_configuration #synthetic_data_configuration} => Types::SyntheticDataConfiguration
|
|
1877
|
+
# * {Types::GetCollaborationMLInputChannelResponse#payer_configuration #payer_configuration} => Types::PayerConfiguration
|
|
1866
1878
|
# * {Types::GetCollaborationMLInputChannelResponse#create_time #create_time} => Time
|
|
1867
1879
|
# * {Types::GetCollaborationMLInputChannelResponse#update_time #update_time} => Time
|
|
1868
1880
|
# * {Types::GetCollaborationMLInputChannelResponse#creator_account_id #creator_account_id} => String
|
|
@@ -1907,6 +1919,8 @@ module Aws::CleanRoomsML
|
|
|
1907
1919
|
# resp.synthetic_data_configuration.synthetic_data_evaluation_scores.data_privacy_scores.membership_inference_attack_scores #=> Array
|
|
1908
1920
|
# resp.synthetic_data_configuration.synthetic_data_evaluation_scores.data_privacy_scores.membership_inference_attack_scores[0].attack_version #=> String, one of "DISTANCE_TO_CLOSEST_RECORD_V1"
|
|
1909
1921
|
# resp.synthetic_data_configuration.synthetic_data_evaluation_scores.data_privacy_scores.membership_inference_attack_scores[0].score #=> Float
|
|
1922
|
+
# resp.payer_configuration.compute_payer_account_id #=> String
|
|
1923
|
+
# resp.payer_configuration.synthetic_data_payer_account_id #=> String
|
|
1910
1924
|
# resp.create_time #=> Time
|
|
1911
1925
|
# resp.update_time #=> Time
|
|
1912
1926
|
# resp.creator_account_id #=> String
|
|
@@ -1955,6 +1969,7 @@ module Aws::CleanRoomsML
|
|
|
1955
1969
|
# * {Types::GetCollaborationTrainedModelResponse#logs_status #logs_status} => String
|
|
1956
1970
|
# * {Types::GetCollaborationTrainedModelResponse#logs_status_details #logs_status_details} => String
|
|
1957
1971
|
# * {Types::GetCollaborationTrainedModelResponse#training_container_image_digest #training_container_image_digest} => String
|
|
1972
|
+
# * {Types::GetCollaborationTrainedModelResponse#ml_model_training_payer_account_id #ml_model_training_payer_account_id} => String
|
|
1958
1973
|
# * {Types::GetCollaborationTrainedModelResponse#create_time #create_time} => Time
|
|
1959
1974
|
# * {Types::GetCollaborationTrainedModelResponse#update_time #update_time} => Time
|
|
1960
1975
|
# * {Types::GetCollaborationTrainedModelResponse#creator_account_id #creator_account_id} => String
|
|
@@ -1993,6 +2008,7 @@ module Aws::CleanRoomsML
|
|
|
1993
2008
|
# resp.logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
|
1994
2009
|
# resp.logs_status_details #=> String
|
|
1995
2010
|
# resp.training_container_image_digest #=> String
|
|
2011
|
+
# resp.ml_model_training_payer_account_id #=> String
|
|
1996
2012
|
# resp.create_time #=> Time
|
|
1997
2013
|
# resp.update_time #=> Time
|
|
1998
2014
|
# resp.creator_account_id #=> String
|
|
@@ -2291,6 +2307,7 @@ module Aws::CleanRoomsML
|
|
|
2291
2307
|
# * {Types::GetMLInputChannelResponse#privacy_budgets #privacy_budgets} => Types::PrivacyBudgets
|
|
2292
2308
|
# * {Types::GetMLInputChannelResponse#description #description} => String
|
|
2293
2309
|
# * {Types::GetMLInputChannelResponse#synthetic_data_configuration #synthetic_data_configuration} => Types::SyntheticDataConfiguration
|
|
2310
|
+
# * {Types::GetMLInputChannelResponse#payer_configuration #payer_configuration} => Types::PayerConfiguration
|
|
2294
2311
|
# * {Types::GetMLInputChannelResponse#create_time #create_time} => Time
|
|
2295
2312
|
# * {Types::GetMLInputChannelResponse#update_time #update_time} => Time
|
|
2296
2313
|
# * {Types::GetMLInputChannelResponse#input_channel #input_channel} => Types::InputChannel
|
|
@@ -2340,6 +2357,8 @@ module Aws::CleanRoomsML
|
|
|
2340
2357
|
# resp.synthetic_data_configuration.synthetic_data_evaluation_scores.data_privacy_scores.membership_inference_attack_scores #=> Array
|
|
2341
2358
|
# resp.synthetic_data_configuration.synthetic_data_evaluation_scores.data_privacy_scores.membership_inference_attack_scores[0].attack_version #=> String, one of "DISTANCE_TO_CLOSEST_RECORD_V1"
|
|
2342
2359
|
# resp.synthetic_data_configuration.synthetic_data_evaluation_scores.data_privacy_scores.membership_inference_attack_scores[0].score #=> Float
|
|
2360
|
+
# resp.payer_configuration.compute_payer_account_id #=> String
|
|
2361
|
+
# resp.payer_configuration.synthetic_data_payer_account_id #=> String
|
|
2343
2362
|
# resp.create_time #=> Time
|
|
2344
2363
|
# resp.update_time #=> Time
|
|
2345
2364
|
# resp.input_channel.data_source.protected_query_input_parameters.sql_parameters.query_string #=> String
|
|
@@ -2403,6 +2422,7 @@ module Aws::CleanRoomsML
|
|
|
2403
2422
|
# * {Types::GetTrainedModelResponse#logs_status #logs_status} => String
|
|
2404
2423
|
# * {Types::GetTrainedModelResponse#logs_status_details #logs_status_details} => String
|
|
2405
2424
|
# * {Types::GetTrainedModelResponse#training_container_image_digest #training_container_image_digest} => String
|
|
2425
|
+
# * {Types::GetTrainedModelResponse#ml_model_training_payer_account_id #ml_model_training_payer_account_id} => String
|
|
2406
2426
|
# * {Types::GetTrainedModelResponse#create_time #create_time} => Time
|
|
2407
2427
|
# * {Types::GetTrainedModelResponse#update_time #update_time} => Time
|
|
2408
2428
|
# * {Types::GetTrainedModelResponse#hyperparameters #hyperparameters} => Hash<String,String>
|
|
@@ -2445,6 +2465,7 @@ module Aws::CleanRoomsML
|
|
|
2445
2465
|
# resp.logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
|
2446
2466
|
# resp.logs_status_details #=> String
|
|
2447
2467
|
# resp.training_container_image_digest #=> String
|
|
2468
|
+
# resp.ml_model_training_payer_account_id #=> String
|
|
2448
2469
|
# resp.create_time #=> Time
|
|
2449
2470
|
# resp.update_time #=> Time
|
|
2450
2471
|
# resp.hyperparameters #=> Hash
|
|
@@ -2503,6 +2524,7 @@ module Aws::CleanRoomsML
|
|
|
2503
2524
|
# * {Types::GetTrainedModelInferenceJobResponse#logs_status #logs_status} => String
|
|
2504
2525
|
# * {Types::GetTrainedModelInferenceJobResponse#logs_status_details #logs_status_details} => String
|
|
2505
2526
|
# * {Types::GetTrainedModelInferenceJobResponse#tags #tags} => Hash<String,String>
|
|
2527
|
+
# * {Types::GetTrainedModelInferenceJobResponse#ml_model_inference_payer_account_id #ml_model_inference_payer_account_id} => String
|
|
2506
2528
|
#
|
|
2507
2529
|
# @example Request syntax with placeholder values
|
|
2508
2530
|
#
|
|
@@ -2542,6 +2564,7 @@ module Aws::CleanRoomsML
|
|
|
2542
2564
|
# resp.logs_status_details #=> String
|
|
2543
2565
|
# resp.tags #=> Hash
|
|
2544
2566
|
# resp.tags["TagKey"] #=> String
|
|
2567
|
+
# resp.ml_model_inference_payer_account_id #=> String
|
|
2545
2568
|
#
|
|
2546
2569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainedModelInferenceJob AWS API Documentation
|
|
2547
2570
|
#
|
|
@@ -2854,6 +2877,8 @@ module Aws::CleanRoomsML
|
|
|
2854
2877
|
# resp.collaboration_ml_input_channels_list[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE"
|
|
2855
2878
|
# resp.collaboration_ml_input_channels_list[0].creator_account_id #=> String
|
|
2856
2879
|
# resp.collaboration_ml_input_channels_list[0].description #=> String
|
|
2880
|
+
# resp.collaboration_ml_input_channels_list[0].payer_configuration.compute_payer_account_id #=> String
|
|
2881
|
+
# resp.collaboration_ml_input_channels_list[0].payer_configuration.synthetic_data_payer_account_id #=> String
|
|
2857
2882
|
#
|
|
2858
2883
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListCollaborationMLInputChannels AWS API Documentation
|
|
2859
2884
|
#
|
|
@@ -2992,6 +3017,7 @@ module Aws::CleanRoomsML
|
|
|
2992
3017
|
# resp.collaboration_trained_model_inference_jobs[0].metrics_status_details #=> String
|
|
2993
3018
|
# resp.collaboration_trained_model_inference_jobs[0].logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
|
2994
3019
|
# resp.collaboration_trained_model_inference_jobs[0].logs_status_details #=> String
|
|
3020
|
+
# resp.collaboration_trained_model_inference_jobs[0].ml_model_inference_payer_account_id #=> String
|
|
2995
3021
|
# resp.collaboration_trained_model_inference_jobs[0].create_time #=> Time
|
|
2996
3022
|
# resp.collaboration_trained_model_inference_jobs[0].update_time #=> Time
|
|
2997
3023
|
# resp.collaboration_trained_model_inference_jobs[0].creator_account_id #=> String
|
|
@@ -3052,6 +3078,7 @@ module Aws::CleanRoomsML
|
|
|
3052
3078
|
# resp.collaboration_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"
|
|
3053
3079
|
# resp.collaboration_trained_models[0].configured_model_algorithm_association_arn #=> String
|
|
3054
3080
|
# resp.collaboration_trained_models[0].creator_account_id #=> String
|
|
3081
|
+
# resp.collaboration_trained_models[0].ml_model_training_payer_account_id #=> String
|
|
3055
3082
|
#
|
|
3056
3083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListCollaborationTrainedModels AWS API Documentation
|
|
3057
3084
|
#
|
|
@@ -3243,6 +3270,8 @@ module Aws::CleanRoomsML
|
|
|
3243
3270
|
# resp.ml_input_channels_list[0].ml_input_channel_arn #=> String
|
|
3244
3271
|
# resp.ml_input_channels_list[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_FAILED", "INACTIVE"
|
|
3245
3272
|
# resp.ml_input_channels_list[0].description #=> String
|
|
3273
|
+
# resp.ml_input_channels_list[0].payer_configuration.compute_payer_account_id #=> String
|
|
3274
|
+
# resp.ml_input_channels_list[0].payer_configuration.synthetic_data_payer_account_id #=> String
|
|
3246
3275
|
#
|
|
3247
3276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListMLInputChannels AWS API Documentation
|
|
3248
3277
|
#
|
|
@@ -3342,6 +3371,7 @@ module Aws::CleanRoomsML
|
|
|
3342
3371
|
# resp.trained_model_inference_jobs[0].metrics_status_details #=> String
|
|
3343
3372
|
# resp.trained_model_inference_jobs[0].logs_status #=> String, one of "PUBLISH_SUCCEEDED", "PUBLISH_FAILED"
|
|
3344
3373
|
# resp.trained_model_inference_jobs[0].logs_status_details #=> String
|
|
3374
|
+
# resp.trained_model_inference_jobs[0].ml_model_inference_payer_account_id #=> String
|
|
3345
3375
|
# resp.trained_model_inference_jobs[0].create_time #=> Time
|
|
3346
3376
|
# resp.trained_model_inference_jobs[0].update_time #=> Time
|
|
3347
3377
|
#
|
|
@@ -3416,6 +3446,7 @@ module Aws::CleanRoomsML
|
|
|
3416
3446
|
# resp.trained_models[0].collaboration_identifier #=> String
|
|
3417
3447
|
# 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"
|
|
3418
3448
|
# resp.trained_models[0].configured_model_algorithm_association_arn #=> String
|
|
3449
|
+
# resp.trained_models[0].ml_model_training_payer_account_id #=> String
|
|
3419
3450
|
#
|
|
3420
3451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListTrainedModelVersions AWS API Documentation
|
|
3421
3452
|
#
|
|
@@ -3472,6 +3503,7 @@ module Aws::CleanRoomsML
|
|
|
3472
3503
|
# resp.trained_models[0].collaboration_identifier #=> String
|
|
3473
3504
|
# 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"
|
|
3474
3505
|
# resp.trained_models[0].configured_model_algorithm_association_arn #=> String
|
|
3506
|
+
# resp.trained_models[0].ml_model_training_payer_account_id #=> String
|
|
3475
3507
|
#
|
|
3476
3508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListTrainedModels AWS API Documentation
|
|
3477
3509
|
#
|
|
@@ -3886,6 +3918,10 @@ module Aws::CleanRoomsML
|
|
|
3886
3918
|
# limit of 50 tags. Tags with only the key prefix of aws do not count
|
|
3887
3919
|
# against your tags per resource limit.
|
|
3888
3920
|
#
|
|
3921
|
+
# @option params [String] :ml_model_inference_payer_account_id
|
|
3922
|
+
# The account ID of the member that is responsible for paying for model
|
|
3923
|
+
# inference costs.
|
|
3924
|
+
#
|
|
3889
3925
|
# @return [Types::StartTrainedModelInferenceJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3890
3926
|
#
|
|
3891
3927
|
# * {Types::StartTrainedModelInferenceJobResponse#trained_model_inference_job_arn #trained_model_inference_job_arn} => String
|
|
@@ -3924,6 +3960,7 @@ module Aws::CleanRoomsML
|
|
|
3924
3960
|
# tags: {
|
|
3925
3961
|
# "TagKey" => "TagValue",
|
|
3926
3962
|
# },
|
|
3963
|
+
# ml_model_inference_payer_account_id: "AccountId",
|
|
3927
3964
|
# })
|
|
3928
3965
|
#
|
|
3929
3966
|
# @example Response structure
|
|
@@ -4109,7 +4146,7 @@ module Aws::CleanRoomsML
|
|
|
4109
4146
|
tracer: tracer
|
|
4110
4147
|
)
|
|
4111
4148
|
context[:gem_name] = 'aws-sdk-cleanroomsml'
|
|
4112
|
-
context[:gem_version] = '1.
|
|
4149
|
+
context[:gem_version] = '1.47.0'
|
|
4113
4150
|
Seahorse::Client::Request.new(handlers, context)
|
|
4114
4151
|
end
|
|
4115
4152
|
|
|
@@ -266,6 +266,7 @@ module Aws::CleanRoomsML
|
|
|
266
266
|
ParameterMap = Shapes::MapShape.new(name: 'ParameterMap')
|
|
267
267
|
ParameterName = Shapes::StringShape.new(name: 'ParameterName')
|
|
268
268
|
ParameterValue = Shapes::StringShape.new(name: 'ParameterValue')
|
|
269
|
+
PayerConfiguration = Shapes::StructureShape.new(name: 'PayerConfiguration')
|
|
269
270
|
PolicyExistenceCondition = Shapes::StringShape.new(name: 'PolicyExistenceCondition')
|
|
270
271
|
PrivacyBudgets = Shapes::UnionShape.new(name: 'PrivacyBudgets')
|
|
271
272
|
PrivacyConfiguration = Shapes::StructureShape.new(name: 'PrivacyConfiguration')
|
|
@@ -476,6 +477,7 @@ module Aws::CleanRoomsML
|
|
|
476
477
|
CollaborationMLInputChannelSummary.add_member(:status, Shapes::ShapeRef.new(shape: MLInputChannelStatus, required: true, location_name: "status"))
|
|
477
478
|
CollaborationMLInputChannelSummary.add_member(:creator_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "creatorAccountId"))
|
|
478
479
|
CollaborationMLInputChannelSummary.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
480
|
+
CollaborationMLInputChannelSummary.add_member(:payer_configuration, Shapes::ShapeRef.new(shape: PayerConfiguration, location_name: "payerConfiguration"))
|
|
479
481
|
CollaborationMLInputChannelSummary.struct_class = Types::CollaborationMLInputChannelSummary
|
|
480
482
|
|
|
481
483
|
CollaborationMLInputChannelSummaryConfiguredModelAlgorithmAssociationsList.member = Shapes::ShapeRef.new(shape: ConfiguredModelAlgorithmAssociationArn)
|
|
@@ -514,6 +516,7 @@ module Aws::CleanRoomsML
|
|
|
514
516
|
CollaborationTrainedModelInferenceJobSummary.add_member(:metrics_status_details, Shapes::ShapeRef.new(shape: String, location_name: "metricsStatusDetails"))
|
|
515
517
|
CollaborationTrainedModelInferenceJobSummary.add_member(:logs_status, Shapes::ShapeRef.new(shape: LogsStatus, location_name: "logsStatus"))
|
|
516
518
|
CollaborationTrainedModelInferenceJobSummary.add_member(:logs_status_details, Shapes::ShapeRef.new(shape: String, location_name: "logsStatusDetails"))
|
|
519
|
+
CollaborationTrainedModelInferenceJobSummary.add_member(:ml_model_inference_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelInferencePayerAccountId"))
|
|
517
520
|
CollaborationTrainedModelInferenceJobSummary.add_member(:create_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createTime"))
|
|
518
521
|
CollaborationTrainedModelInferenceJobSummary.add_member(:update_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "updateTime"))
|
|
519
522
|
CollaborationTrainedModelInferenceJobSummary.add_member(:creator_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "creatorAccountId"))
|
|
@@ -533,6 +536,7 @@ module Aws::CleanRoomsML
|
|
|
533
536
|
CollaborationTrainedModelSummary.add_member(:status, Shapes::ShapeRef.new(shape: TrainedModelStatus, required: true, location_name: "status"))
|
|
534
537
|
CollaborationTrainedModelSummary.add_member(:configured_model_algorithm_association_arn, Shapes::ShapeRef.new(shape: ConfiguredModelAlgorithmAssociationArn, required: true, location_name: "configuredModelAlgorithmAssociationArn"))
|
|
535
538
|
CollaborationTrainedModelSummary.add_member(:creator_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "creatorAccountId"))
|
|
539
|
+
CollaborationTrainedModelSummary.add_member(:ml_model_training_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelTrainingPayerAccountId"))
|
|
536
540
|
CollaborationTrainedModelSummary.struct_class = Types::CollaborationTrainedModelSummary
|
|
537
541
|
|
|
538
542
|
ColumnClassificationDetails.add_member(:column_mapping, Shapes::ShapeRef.new(shape: ColumnMappingList, required: true, location_name: "columnMapping"))
|
|
@@ -659,6 +663,7 @@ module Aws::CleanRoomsML
|
|
|
659
663
|
CreateMLInputChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
660
664
|
CreateMLInputChannelRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
661
665
|
CreateMLInputChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
666
|
+
CreateMLInputChannelRequest.add_member(:payer_configuration, Shapes::ShapeRef.new(shape: PayerConfiguration, location_name: "payerConfiguration"))
|
|
662
667
|
CreateMLInputChannelRequest.struct_class = Types::CreateMLInputChannelRequest
|
|
663
668
|
|
|
664
669
|
CreateMLInputChannelRequestConfiguredModelAlgorithmAssociationsList.member = Shapes::ShapeRef.new(shape: ConfiguredModelAlgorithmAssociationArn)
|
|
@@ -679,6 +684,7 @@ module Aws::CleanRoomsML
|
|
|
679
684
|
CreateTrainedModelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
680
685
|
CreateTrainedModelRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
681
686
|
CreateTrainedModelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
687
|
+
CreateTrainedModelRequest.add_member(:ml_model_training_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelTrainingPayerAccountId"))
|
|
682
688
|
CreateTrainedModelRequest.struct_class = Types::CreateTrainedModelRequest
|
|
683
689
|
|
|
684
690
|
CreateTrainedModelResponse.add_member(:trained_model_arn, Shapes::ShapeRef.new(shape: TrainedModelArn, required: true, location_name: "trainedModelArn"))
|
|
@@ -831,6 +837,7 @@ module Aws::CleanRoomsML
|
|
|
831
837
|
GetCollaborationMLInputChannelResponse.add_member(:privacy_budgets, Shapes::ShapeRef.new(shape: PrivacyBudgets, location_name: "privacyBudgets"))
|
|
832
838
|
GetCollaborationMLInputChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
833
839
|
GetCollaborationMLInputChannelResponse.add_member(:synthetic_data_configuration, Shapes::ShapeRef.new(shape: SyntheticDataConfiguration, location_name: "syntheticDataConfiguration"))
|
|
840
|
+
GetCollaborationMLInputChannelResponse.add_member(:payer_configuration, Shapes::ShapeRef.new(shape: PayerConfiguration, location_name: "payerConfiguration"))
|
|
834
841
|
GetCollaborationMLInputChannelResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createTime"))
|
|
835
842
|
GetCollaborationMLInputChannelResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "updateTime"))
|
|
836
843
|
GetCollaborationMLInputChannelResponse.add_member(:creator_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "creatorAccountId"))
|
|
@@ -861,6 +868,7 @@ module Aws::CleanRoomsML
|
|
|
861
868
|
GetCollaborationTrainedModelResponse.add_member(:logs_status, Shapes::ShapeRef.new(shape: LogsStatus, location_name: "logsStatus"))
|
|
862
869
|
GetCollaborationTrainedModelResponse.add_member(:logs_status_details, Shapes::ShapeRef.new(shape: String, location_name: "logsStatusDetails"))
|
|
863
870
|
GetCollaborationTrainedModelResponse.add_member(:training_container_image_digest, Shapes::ShapeRef.new(shape: String, location_name: "trainingContainerImageDigest"))
|
|
871
|
+
GetCollaborationTrainedModelResponse.add_member(:ml_model_training_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelTrainingPayerAccountId"))
|
|
864
872
|
GetCollaborationTrainedModelResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createTime"))
|
|
865
873
|
GetCollaborationTrainedModelResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "updateTime"))
|
|
866
874
|
GetCollaborationTrainedModelResponse.add_member(:creator_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "creatorAccountId"))
|
|
@@ -948,6 +956,7 @@ module Aws::CleanRoomsML
|
|
|
948
956
|
GetMLInputChannelResponse.add_member(:privacy_budgets, Shapes::ShapeRef.new(shape: PrivacyBudgets, location_name: "privacyBudgets"))
|
|
949
957
|
GetMLInputChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
950
958
|
GetMLInputChannelResponse.add_member(:synthetic_data_configuration, Shapes::ShapeRef.new(shape: SyntheticDataConfiguration, location_name: "syntheticDataConfiguration"))
|
|
959
|
+
GetMLInputChannelResponse.add_member(:payer_configuration, Shapes::ShapeRef.new(shape: PayerConfiguration, location_name: "payerConfiguration"))
|
|
951
960
|
GetMLInputChannelResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createTime"))
|
|
952
961
|
GetMLInputChannelResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "updateTime"))
|
|
953
962
|
GetMLInputChannelResponse.add_member(:input_channel, Shapes::ShapeRef.new(shape: InputChannel, required: true, location_name: "inputChannel"))
|
|
@@ -987,6 +996,7 @@ module Aws::CleanRoomsML
|
|
|
987
996
|
GetTrainedModelInferenceJobResponse.add_member(:logs_status, Shapes::ShapeRef.new(shape: LogsStatus, location_name: "logsStatus"))
|
|
988
997
|
GetTrainedModelInferenceJobResponse.add_member(:logs_status_details, Shapes::ShapeRef.new(shape: String, location_name: "logsStatusDetails"))
|
|
989
998
|
GetTrainedModelInferenceJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
999
|
+
GetTrainedModelInferenceJobResponse.add_member(:ml_model_inference_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelInferencePayerAccountId"))
|
|
990
1000
|
GetTrainedModelInferenceJobResponse.struct_class = Types::GetTrainedModelInferenceJobResponse
|
|
991
1001
|
|
|
992
1002
|
GetTrainedModelRequest.add_member(:trained_model_arn, Shapes::ShapeRef.new(shape: TrainedModelArn, required: true, location: "uri", location_name: "trainedModelArn"))
|
|
@@ -1012,6 +1022,7 @@ module Aws::CleanRoomsML
|
|
|
1012
1022
|
GetTrainedModelResponse.add_member(:logs_status, Shapes::ShapeRef.new(shape: LogsStatus, location_name: "logsStatus"))
|
|
1013
1023
|
GetTrainedModelResponse.add_member(:logs_status_details, Shapes::ShapeRef.new(shape: String, location_name: "logsStatusDetails"))
|
|
1014
1024
|
GetTrainedModelResponse.add_member(:training_container_image_digest, Shapes::ShapeRef.new(shape: String, location_name: "trainingContainerImageDigest"))
|
|
1025
|
+
GetTrainedModelResponse.add_member(:ml_model_training_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelTrainingPayerAccountId"))
|
|
1015
1026
|
GetTrainedModelResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createTime"))
|
|
1016
1027
|
GetTrainedModelResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "updateTime"))
|
|
1017
1028
|
GetTrainedModelResponse.add_member(:hyperparameters, Shapes::ShapeRef.new(shape: HyperParameters, location_name: "hyperparameters"))
|
|
@@ -1269,6 +1280,7 @@ module Aws::CleanRoomsML
|
|
|
1269
1280
|
MLInputChannelSummary.add_member(:ml_input_channel_arn, Shapes::ShapeRef.new(shape: MLInputChannelArn, required: true, location_name: "mlInputChannelArn"))
|
|
1270
1281
|
MLInputChannelSummary.add_member(:status, Shapes::ShapeRef.new(shape: MLInputChannelStatus, required: true, location_name: "status"))
|
|
1271
1282
|
MLInputChannelSummary.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
|
|
1283
|
+
MLInputChannelSummary.add_member(:payer_configuration, Shapes::ShapeRef.new(shape: PayerConfiguration, location_name: "payerConfiguration"))
|
|
1272
1284
|
MLInputChannelSummary.struct_class = Types::MLInputChannelSummary
|
|
1273
1285
|
|
|
1274
1286
|
MLInputChannelSummaryConfiguredModelAlgorithmAssociationsList.member = Shapes::ShapeRef.new(shape: ConfiguredModelAlgorithmAssociationArn)
|
|
@@ -1314,6 +1326,10 @@ module Aws::CleanRoomsML
|
|
|
1314
1326
|
ParameterMap.key = Shapes::ShapeRef.new(shape: ParameterName)
|
|
1315
1327
|
ParameterMap.value = Shapes::ShapeRef.new(shape: ParameterValue)
|
|
1316
1328
|
|
|
1329
|
+
PayerConfiguration.add_member(:compute_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "computePayerAccountId"))
|
|
1330
|
+
PayerConfiguration.add_member(:synthetic_data_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "syntheticDataPayerAccountId"))
|
|
1331
|
+
PayerConfiguration.struct_class = Types::PayerConfiguration
|
|
1332
|
+
|
|
1317
1333
|
PrivacyBudgets.add_member(:access_budgets, Shapes::ShapeRef.new(shape: AccessBudgets, location_name: "accessBudgets"))
|
|
1318
1334
|
PrivacyBudgets.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1319
1335
|
PrivacyBudgets.add_member_subclass(:access_budgets, Types::PrivacyBudgets::AccessBudgets)
|
|
@@ -1416,6 +1432,7 @@ module Aws::CleanRoomsML
|
|
|
1416
1432
|
StartTrainedModelInferenceJobRequest.add_member(:environment, Shapes::ShapeRef.new(shape: InferenceEnvironmentMap, location_name: "environment"))
|
|
1417
1433
|
StartTrainedModelInferenceJobRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
1418
1434
|
StartTrainedModelInferenceJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
1435
|
+
StartTrainedModelInferenceJobRequest.add_member(:ml_model_inference_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelInferencePayerAccountId"))
|
|
1419
1436
|
StartTrainedModelInferenceJobRequest.struct_class = Types::StartTrainedModelInferenceJobRequest
|
|
1420
1437
|
|
|
1421
1438
|
StartTrainedModelInferenceJobResponse.add_member(:trained_model_inference_job_arn, Shapes::ShapeRef.new(shape: TrainedModelInferenceJobArn, required: true, location_name: "trainedModelInferenceJobArn"))
|
|
@@ -1492,6 +1509,7 @@ module Aws::CleanRoomsML
|
|
|
1492
1509
|
TrainedModelInferenceJobSummary.add_member(:metrics_status_details, Shapes::ShapeRef.new(shape: String, location_name: "metricsStatusDetails"))
|
|
1493
1510
|
TrainedModelInferenceJobSummary.add_member(:logs_status, Shapes::ShapeRef.new(shape: LogsStatus, location_name: "logsStatus"))
|
|
1494
1511
|
TrainedModelInferenceJobSummary.add_member(:logs_status_details, Shapes::ShapeRef.new(shape: String, location_name: "logsStatusDetails"))
|
|
1512
|
+
TrainedModelInferenceJobSummary.add_member(:ml_model_inference_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelInferencePayerAccountId"))
|
|
1495
1513
|
TrainedModelInferenceJobSummary.add_member(:create_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createTime"))
|
|
1496
1514
|
TrainedModelInferenceJobSummary.add_member(:update_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "updateTime"))
|
|
1497
1515
|
TrainedModelInferenceJobSummary.struct_class = Types::TrainedModelInferenceJobSummary
|
|
@@ -1517,6 +1535,7 @@ module Aws::CleanRoomsML
|
|
|
1517
1535
|
TrainedModelSummary.add_member(:collaboration_identifier, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "collaborationIdentifier"))
|
|
1518
1536
|
TrainedModelSummary.add_member(:status, Shapes::ShapeRef.new(shape: TrainedModelStatus, required: true, location_name: "status"))
|
|
1519
1537
|
TrainedModelSummary.add_member(:configured_model_algorithm_association_arn, Shapes::ShapeRef.new(shape: ConfiguredModelAlgorithmAssociationArn, required: true, location_name: "configuredModelAlgorithmAssociationArn"))
|
|
1538
|
+
TrainedModelSummary.add_member(:ml_model_training_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "mlModelTrainingPayerAccountId"))
|
|
1520
1539
|
TrainedModelSummary.struct_class = Types::TrainedModelSummary
|
|
1521
1540
|
|
|
1522
1541
|
TrainedModelsConfigurationPolicy.add_member(:container_logs, Shapes::ShapeRef.new(shape: LogsConfigurationPolicyList, location_name: "containerLogs"))
|
|
@@ -538,6 +538,10 @@ module Aws::CleanRoomsML
|
|
|
538
538
|
# The description of the ML input channel.
|
|
539
539
|
# @return [String]
|
|
540
540
|
#
|
|
541
|
+
# @!attribute [rw] payer_configuration
|
|
542
|
+
# The payer configuration for the ML input channel.
|
|
543
|
+
# @return [Types::PayerConfiguration]
|
|
544
|
+
#
|
|
541
545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CollaborationMLInputChannelSummary AWS API Documentation
|
|
542
546
|
#
|
|
543
547
|
class CollaborationMLInputChannelSummary < Struct.new(
|
|
@@ -550,7 +554,8 @@ module Aws::CleanRoomsML
|
|
|
550
554
|
:ml_input_channel_arn,
|
|
551
555
|
:status,
|
|
552
556
|
:creator_account_id,
|
|
553
|
-
:description
|
|
557
|
+
:description,
|
|
558
|
+
:payer_configuration)
|
|
554
559
|
SENSITIVE = []
|
|
555
560
|
include Aws::Structure
|
|
556
561
|
end
|
|
@@ -695,6 +700,11 @@ module Aws::CleanRoomsML
|
|
|
695
700
|
# Details about the logs status for the trained model inference job.
|
|
696
701
|
# @return [String]
|
|
697
702
|
#
|
|
703
|
+
# @!attribute [rw] ml_model_inference_payer_account_id
|
|
704
|
+
# The account ID of the member that is responsible for paying for
|
|
705
|
+
# model inference costs.
|
|
706
|
+
# @return [String]
|
|
707
|
+
#
|
|
698
708
|
# @!attribute [rw] create_time
|
|
699
709
|
# The time at which the trained model inference job was created.
|
|
700
710
|
# @return [Time]
|
|
@@ -725,6 +735,7 @@ module Aws::CleanRoomsML
|
|
|
725
735
|
:metrics_status_details,
|
|
726
736
|
:logs_status,
|
|
727
737
|
:logs_status_details,
|
|
738
|
+
:ml_model_inference_payer_account_id,
|
|
728
739
|
:create_time,
|
|
729
740
|
:update_time,
|
|
730
741
|
:creator_account_id)
|
|
@@ -785,6 +796,11 @@ module Aws::CleanRoomsML
|
|
|
785
796
|
# The account ID of the member that created the trained model.
|
|
786
797
|
# @return [String]
|
|
787
798
|
#
|
|
799
|
+
# @!attribute [rw] ml_model_training_payer_account_id
|
|
800
|
+
# The account ID of the member that is responsible for paying for
|
|
801
|
+
# model training costs.
|
|
802
|
+
# @return [String]
|
|
803
|
+
#
|
|
788
804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CollaborationTrainedModelSummary AWS API Documentation
|
|
789
805
|
#
|
|
790
806
|
class CollaborationTrainedModelSummary < Struct.new(
|
|
@@ -799,7 +815,8 @@ module Aws::CleanRoomsML
|
|
|
799
815
|
:collaboration_identifier,
|
|
800
816
|
:status,
|
|
801
817
|
:configured_model_algorithm_association_arn,
|
|
802
|
-
:creator_account_id
|
|
818
|
+
:creator_account_id,
|
|
819
|
+
:ml_model_training_payer_account_id)
|
|
803
820
|
SENSITIVE = []
|
|
804
821
|
include Aws::Structure
|
|
805
822
|
end
|
|
@@ -1539,6 +1556,11 @@ module Aws::CleanRoomsML
|
|
|
1539
1556
|
# of aws do not count against your tags per resource limit.
|
|
1540
1557
|
# @return [Hash<String,String>]
|
|
1541
1558
|
#
|
|
1559
|
+
# @!attribute [rw] payer_configuration
|
|
1560
|
+
# The payer configuration for the ML input channel. Determines which
|
|
1561
|
+
# member account pays for compute and synthetic data costs.
|
|
1562
|
+
# @return [Types::PayerConfiguration]
|
|
1563
|
+
#
|
|
1542
1564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateMLInputChannelRequest AWS API Documentation
|
|
1543
1565
|
#
|
|
1544
1566
|
class CreateMLInputChannelRequest < Struct.new(
|
|
@@ -1549,7 +1571,8 @@ module Aws::CleanRoomsML
|
|
|
1549
1571
|
:retention_in_days,
|
|
1550
1572
|
:description,
|
|
1551
1573
|
:kms_key_arn,
|
|
1552
|
-
:tags
|
|
1574
|
+
:tags,
|
|
1575
|
+
:payer_configuration)
|
|
1553
1576
|
SENSITIVE = []
|
|
1554
1577
|
include Aws::Structure
|
|
1555
1578
|
end
|
|
@@ -1678,6 +1701,11 @@ module Aws::CleanRoomsML
|
|
|
1678
1701
|
# of aws do not count against your tags per resource limit.
|
|
1679
1702
|
# @return [Hash<String,String>]
|
|
1680
1703
|
#
|
|
1704
|
+
# @!attribute [rw] ml_model_training_payer_account_id
|
|
1705
|
+
# The account ID of the member that is responsible for paying for
|
|
1706
|
+
# model training costs.
|
|
1707
|
+
# @return [String]
|
|
1708
|
+
#
|
|
1681
1709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/CreateTrainedModelRequest AWS API Documentation
|
|
1682
1710
|
#
|
|
1683
1711
|
class CreateTrainedModelRequest < Struct.new(
|
|
@@ -1693,7 +1721,8 @@ module Aws::CleanRoomsML
|
|
|
1693
1721
|
:training_input_mode,
|
|
1694
1722
|
:description,
|
|
1695
1723
|
:kms_key_arn,
|
|
1696
|
-
:tags
|
|
1724
|
+
:tags,
|
|
1725
|
+
:ml_model_training_payer_account_id)
|
|
1697
1726
|
SENSITIVE = []
|
|
1698
1727
|
include Aws::Structure
|
|
1699
1728
|
end
|
|
@@ -2413,6 +2442,10 @@ module Aws::CleanRoomsML
|
|
|
2413
2442
|
# generated data.
|
|
2414
2443
|
# @return [Types::SyntheticDataConfiguration]
|
|
2415
2444
|
#
|
|
2445
|
+
# @!attribute [rw] payer_configuration
|
|
2446
|
+
# The payer configuration for the ML input channel.
|
|
2447
|
+
# @return [Types::PayerConfiguration]
|
|
2448
|
+
#
|
|
2416
2449
|
# @!attribute [rw] create_time
|
|
2417
2450
|
# The time at which the ML input channel was created.
|
|
2418
2451
|
# @return [Time]
|
|
@@ -2440,6 +2473,7 @@ module Aws::CleanRoomsML
|
|
|
2440
2473
|
:privacy_budgets,
|
|
2441
2474
|
:description,
|
|
2442
2475
|
:synthetic_data_configuration,
|
|
2476
|
+
:payer_configuration,
|
|
2443
2477
|
:create_time,
|
|
2444
2478
|
:update_time,
|
|
2445
2479
|
:creator_account_id)
|
|
@@ -2554,6 +2588,11 @@ module Aws::CleanRoomsML
|
|
|
2554
2588
|
# Information about the training container image.
|
|
2555
2589
|
# @return [String]
|
|
2556
2590
|
#
|
|
2591
|
+
# @!attribute [rw] ml_model_training_payer_account_id
|
|
2592
|
+
# The account ID of the member that is responsible for paying for
|
|
2593
|
+
# model training costs.
|
|
2594
|
+
# @return [String]
|
|
2595
|
+
#
|
|
2557
2596
|
# @!attribute [rw] create_time
|
|
2558
2597
|
# The time at which the trained model was created.
|
|
2559
2598
|
# @return [Time]
|
|
@@ -2587,6 +2626,7 @@ module Aws::CleanRoomsML
|
|
|
2587
2626
|
:logs_status,
|
|
2588
2627
|
:logs_status_details,
|
|
2589
2628
|
:training_container_image_digest,
|
|
2629
|
+
:ml_model_training_payer_account_id,
|
|
2590
2630
|
:create_time,
|
|
2591
2631
|
:update_time,
|
|
2592
2632
|
:creator_account_id)
|
|
@@ -3058,6 +3098,10 @@ module Aws::CleanRoomsML
|
|
|
3058
3098
|
# generated data.
|
|
3059
3099
|
# @return [Types::SyntheticDataConfiguration]
|
|
3060
3100
|
#
|
|
3101
|
+
# @!attribute [rw] payer_configuration
|
|
3102
|
+
# The payer configuration for the ML input channel.
|
|
3103
|
+
# @return [Types::PayerConfiguration]
|
|
3104
|
+
#
|
|
3061
3105
|
# @!attribute [rw] create_time
|
|
3062
3106
|
# The time at which the ML input channel was created.
|
|
3063
3107
|
# @return [Time]
|
|
@@ -3136,6 +3180,7 @@ module Aws::CleanRoomsML
|
|
|
3136
3180
|
:privacy_budgets,
|
|
3137
3181
|
:description,
|
|
3138
3182
|
:synthetic_data_configuration,
|
|
3183
|
+
:payer_configuration,
|
|
3139
3184
|
:create_time,
|
|
3140
3185
|
:update_time,
|
|
3141
3186
|
:input_channel,
|
|
@@ -3299,6 +3344,11 @@ module Aws::CleanRoomsML
|
|
|
3299
3344
|
# of aws do not count against your tags per resource limit.
|
|
3300
3345
|
# @return [Hash<String,String>]
|
|
3301
3346
|
#
|
|
3347
|
+
# @!attribute [rw] ml_model_inference_payer_account_id
|
|
3348
|
+
# The account ID of the member that is responsible for paying for
|
|
3349
|
+
# model inference costs.
|
|
3350
|
+
# @return [String]
|
|
3351
|
+
#
|
|
3302
3352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/GetTrainedModelInferenceJobResponse AWS API Documentation
|
|
3303
3353
|
#
|
|
3304
3354
|
class GetTrainedModelInferenceJobResponse < Struct.new(
|
|
@@ -3324,7 +3374,8 @@ module Aws::CleanRoomsML
|
|
|
3324
3374
|
:metrics_status_details,
|
|
3325
3375
|
:logs_status,
|
|
3326
3376
|
:logs_status_details,
|
|
3327
|
-
:tags
|
|
3377
|
+
:tags,
|
|
3378
|
+
:ml_model_inference_payer_account_id)
|
|
3328
3379
|
SENSITIVE = []
|
|
3329
3380
|
include Aws::Structure
|
|
3330
3381
|
end
|
|
@@ -3437,6 +3488,11 @@ module Aws::CleanRoomsML
|
|
|
3437
3488
|
# Information about the training image container.
|
|
3438
3489
|
# @return [String]
|
|
3439
3490
|
#
|
|
3491
|
+
# @!attribute [rw] ml_model_training_payer_account_id
|
|
3492
|
+
# The account ID of the member that is responsible for paying for
|
|
3493
|
+
# model training costs.
|
|
3494
|
+
# @return [String]
|
|
3495
|
+
#
|
|
3440
3496
|
# @!attribute [rw] create_time
|
|
3441
3497
|
# The time at which the trained model was created.
|
|
3442
3498
|
# @return [Time]
|
|
@@ -3517,6 +3573,7 @@ module Aws::CleanRoomsML
|
|
|
3517
3573
|
:logs_status,
|
|
3518
3574
|
:logs_status_details,
|
|
3519
3575
|
:training_container_image_digest,
|
|
3576
|
+
:ml_model_training_payer_account_id,
|
|
3520
3577
|
:create_time,
|
|
3521
3578
|
:update_time,
|
|
3522
3579
|
:hyperparameters,
|
|
@@ -4657,6 +4714,10 @@ module Aws::CleanRoomsML
|
|
|
4657
4714
|
# The description of the ML input channel.
|
|
4658
4715
|
# @return [String]
|
|
4659
4716
|
#
|
|
4717
|
+
# @!attribute [rw] payer_configuration
|
|
4718
|
+
# The payer configuration for the ML input channel.
|
|
4719
|
+
# @return [Types::PayerConfiguration]
|
|
4720
|
+
#
|
|
4660
4721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/MLInputChannelSummary AWS API Documentation
|
|
4661
4722
|
#
|
|
4662
4723
|
class MLInputChannelSummary < Struct.new(
|
|
@@ -4669,7 +4730,8 @@ module Aws::CleanRoomsML
|
|
|
4669
4730
|
:protected_query_identifier,
|
|
4670
4731
|
:ml_input_channel_arn,
|
|
4671
4732
|
:status,
|
|
4672
|
-
:description
|
|
4733
|
+
:description,
|
|
4734
|
+
:payer_configuration)
|
|
4673
4735
|
SENSITIVE = []
|
|
4674
4736
|
include Aws::Structure
|
|
4675
4737
|
end
|
|
@@ -4838,6 +4900,28 @@ module Aws::CleanRoomsML
|
|
|
4838
4900
|
include Aws::Structure
|
|
4839
4901
|
end
|
|
4840
4902
|
|
|
4903
|
+
# Specifies which member accounts are responsible for paying for compute
|
|
4904
|
+
# and synthetic data generation costs in a Clean Rooms ML collaboration.
|
|
4905
|
+
#
|
|
4906
|
+
# @!attribute [rw] compute_payer_account_id
|
|
4907
|
+
# The account ID of the member that is responsible for paying compute
|
|
4908
|
+
# costs.
|
|
4909
|
+
# @return [String]
|
|
4910
|
+
#
|
|
4911
|
+
# @!attribute [rw] synthetic_data_payer_account_id
|
|
4912
|
+
# The account ID of the member that is responsible for paying
|
|
4913
|
+
# synthetic data generation costs.
|
|
4914
|
+
# @return [String]
|
|
4915
|
+
#
|
|
4916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/PayerConfiguration AWS API Documentation
|
|
4917
|
+
#
|
|
4918
|
+
class PayerConfiguration < Struct.new(
|
|
4919
|
+
:compute_payer_account_id,
|
|
4920
|
+
:synthetic_data_payer_account_id)
|
|
4921
|
+
SENSITIVE = []
|
|
4922
|
+
include Aws::Structure
|
|
4923
|
+
end
|
|
4924
|
+
|
|
4841
4925
|
# The privacy budget information that controls access to Clean Rooms ML
|
|
4842
4926
|
# input channels.
|
|
4843
4927
|
#
|
|
@@ -5367,6 +5451,11 @@ module Aws::CleanRoomsML
|
|
|
5367
5451
|
# of aws do not count against your tags per resource limit.
|
|
5368
5452
|
# @return [Hash<String,String>]
|
|
5369
5453
|
#
|
|
5454
|
+
# @!attribute [rw] ml_model_inference_payer_account_id
|
|
5455
|
+
# The account ID of the member that is responsible for paying for
|
|
5456
|
+
# model inference costs.
|
|
5457
|
+
# @return [String]
|
|
5458
|
+
#
|
|
5370
5459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/StartTrainedModelInferenceJobRequest AWS API Documentation
|
|
5371
5460
|
#
|
|
5372
5461
|
class StartTrainedModelInferenceJobRequest < Struct.new(
|
|
@@ -5382,7 +5471,8 @@ module Aws::CleanRoomsML
|
|
|
5382
5471
|
:container_execution_parameters,
|
|
5383
5472
|
:environment,
|
|
5384
5473
|
:kms_key_arn,
|
|
5385
|
-
:tags
|
|
5474
|
+
:tags,
|
|
5475
|
+
:ml_model_inference_payer_account_id)
|
|
5386
5476
|
SENSITIVE = []
|
|
5387
5477
|
include Aws::Structure
|
|
5388
5478
|
end
|
|
@@ -5735,6 +5825,11 @@ module Aws::CleanRoomsML
|
|
|
5735
5825
|
# Details about the log status for the trained model inference job.
|
|
5736
5826
|
# @return [String]
|
|
5737
5827
|
#
|
|
5828
|
+
# @!attribute [rw] ml_model_inference_payer_account_id
|
|
5829
|
+
# The account ID of the member that is responsible for paying for
|
|
5830
|
+
# model inference costs.
|
|
5831
|
+
# @return [String]
|
|
5832
|
+
#
|
|
5738
5833
|
# @!attribute [rw] create_time
|
|
5739
5834
|
# The time at which the trained model inference job was created.
|
|
5740
5835
|
# @return [Time]
|
|
@@ -5761,6 +5856,7 @@ module Aws::CleanRoomsML
|
|
|
5761
5856
|
:metrics_status_details,
|
|
5762
5857
|
:logs_status,
|
|
5763
5858
|
:logs_status_details,
|
|
5859
|
+
:ml_model_inference_payer_account_id,
|
|
5764
5860
|
:create_time,
|
|
5765
5861
|
:update_time)
|
|
5766
5862
|
SENSITIVE = []
|
|
@@ -5857,6 +5953,11 @@ module Aws::CleanRoomsML
|
|
|
5857
5953
|
# association that was used to create this trained model.
|
|
5858
5954
|
# @return [String]
|
|
5859
5955
|
#
|
|
5956
|
+
# @!attribute [rw] ml_model_training_payer_account_id
|
|
5957
|
+
# The account ID of the member that is responsible for paying for
|
|
5958
|
+
# model training costs.
|
|
5959
|
+
# @return [String]
|
|
5960
|
+
#
|
|
5860
5961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/TrainedModelSummary AWS API Documentation
|
|
5861
5962
|
#
|
|
5862
5963
|
class TrainedModelSummary < Struct.new(
|
|
@@ -5870,7 +5971,8 @@ module Aws::CleanRoomsML
|
|
|
5870
5971
|
:membership_identifier,
|
|
5871
5972
|
:collaboration_identifier,
|
|
5872
5973
|
:status,
|
|
5873
|
-
:configured_model_algorithm_association_arn
|
|
5974
|
+
:configured_model_algorithm_association_arn,
|
|
5975
|
+
:ml_model_training_payer_account_id)
|
|
5874
5976
|
SENSITIVE = []
|
|
5875
5977
|
include Aws::Structure
|
|
5876
5978
|
end
|
data/lib/aws-sdk-cleanroomsml.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -230,7 +230,11 @@ module Aws
|
|
|
230
230
|
retention_in_days: ::Integer,
|
|
231
231
|
?description: ::String,
|
|
232
232
|
?kms_key_arn: ::String,
|
|
233
|
-
?tags: Hash[::String, ::String]
|
|
233
|
+
?tags: Hash[::String, ::String],
|
|
234
|
+
?payer_configuration: {
|
|
235
|
+
compute_payer_account_id: ::String?,
|
|
236
|
+
synthetic_data_payer_account_id: ::String?
|
|
237
|
+
}
|
|
234
238
|
) -> _CreateMLInputChannelResponseSuccess
|
|
235
239
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMLInputChannelResponseSuccess
|
|
236
240
|
|
|
@@ -271,7 +275,8 @@ module Aws
|
|
|
271
275
|
?training_input_mode: ("File" | "FastFile" | "Pipe"),
|
|
272
276
|
?description: ::String,
|
|
273
277
|
?kms_key_arn: ::String,
|
|
274
|
-
?tags: Hash[::String, ::String]
|
|
278
|
+
?tags: Hash[::String, ::String],
|
|
279
|
+
?ml_model_training_payer_account_id: ::String
|
|
275
280
|
) -> _CreateTrainedModelResponseSuccess
|
|
276
281
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrainedModelResponseSuccess
|
|
277
282
|
|
|
@@ -451,6 +456,7 @@ module Aws
|
|
|
451
456
|
def privacy_budgets: () -> Types::PrivacyBudgets
|
|
452
457
|
def description: () -> ::String
|
|
453
458
|
def synthetic_data_configuration: () -> Types::SyntheticDataConfiguration
|
|
459
|
+
def payer_configuration: () -> Types::PayerConfiguration
|
|
454
460
|
def create_time: () -> ::Time
|
|
455
461
|
def update_time: () -> ::Time
|
|
456
462
|
def creator_account_id: () -> ::String
|
|
@@ -482,6 +488,7 @@ module Aws
|
|
|
482
488
|
def logs_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
483
489
|
def logs_status_details: () -> ::String
|
|
484
490
|
def training_container_image_digest: () -> ::String
|
|
491
|
+
def ml_model_training_payer_account_id: () -> ::String
|
|
485
492
|
def create_time: () -> ::Time
|
|
486
493
|
def update_time: () -> ::Time
|
|
487
494
|
def creator_account_id: () -> ::String
|
|
@@ -594,6 +601,7 @@ module Aws
|
|
|
594
601
|
def privacy_budgets: () -> Types::PrivacyBudgets
|
|
595
602
|
def description: () -> ::String
|
|
596
603
|
def synthetic_data_configuration: () -> Types::SyntheticDataConfiguration
|
|
604
|
+
def payer_configuration: () -> Types::PayerConfiguration
|
|
597
605
|
def create_time: () -> ::Time
|
|
598
606
|
def update_time: () -> ::Time
|
|
599
607
|
def input_channel: () -> Types::InputChannel
|
|
@@ -630,6 +638,7 @@ module Aws
|
|
|
630
638
|
def logs_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
631
639
|
def logs_status_details: () -> ::String
|
|
632
640
|
def training_container_image_digest: () -> ::String
|
|
641
|
+
def ml_model_training_payer_account_id: () -> ::String
|
|
633
642
|
def create_time: () -> ::Time
|
|
634
643
|
def update_time: () -> ::Time
|
|
635
644
|
def hyperparameters: () -> ::Hash[::String, ::String]
|
|
@@ -671,6 +680,7 @@ module Aws
|
|
|
671
680
|
def logs_status: () -> ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
672
681
|
def logs_status_details: () -> ::String
|
|
673
682
|
def tags: () -> ::Hash[::String, ::String]
|
|
683
|
+
def ml_model_inference_payer_account_id: () -> ::String
|
|
674
684
|
end
|
|
675
685
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_trained_model_inference_job-instance_method
|
|
676
686
|
def get_trained_model_inference_job: (
|
|
@@ -1036,7 +1046,8 @@ module Aws
|
|
|
1036
1046
|
},
|
|
1037
1047
|
?environment: Hash[::String, ::String],
|
|
1038
1048
|
?kms_key_arn: ::String,
|
|
1039
|
-
?tags: Hash[::String, ::String]
|
|
1049
|
+
?tags: Hash[::String, ::String],
|
|
1050
|
+
?ml_model_inference_payer_account_id: ::String
|
|
1040
1051
|
) -> _StartTrainedModelInferenceJobResponseSuccess
|
|
1041
1052
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTrainedModelInferenceJobResponseSuccess
|
|
1042
1053
|
|
data/sig/types.rbs
CHANGED
|
@@ -135,6 +135,7 @@ module Aws::CleanRoomsML
|
|
|
135
135
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
|
|
136
136
|
attr_accessor creator_account_id: ::String
|
|
137
137
|
attr_accessor description: ::String
|
|
138
|
+
attr_accessor payer_configuration: Types::PayerConfiguration
|
|
138
139
|
SENSITIVE: []
|
|
139
140
|
end
|
|
140
141
|
|
|
@@ -169,6 +170,7 @@ module Aws::CleanRoomsML
|
|
|
169
170
|
attr_accessor metrics_status_details: ::String
|
|
170
171
|
attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
171
172
|
attr_accessor logs_status_details: ::String
|
|
173
|
+
attr_accessor ml_model_inference_payer_account_id: ::String
|
|
172
174
|
attr_accessor create_time: ::Time
|
|
173
175
|
attr_accessor update_time: ::Time
|
|
174
176
|
attr_accessor creator_account_id: ::String
|
|
@@ -188,6 +190,7 @@ module Aws::CleanRoomsML
|
|
|
188
190
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
|
189
191
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
|
190
192
|
attr_accessor creator_account_id: ::String
|
|
193
|
+
attr_accessor ml_model_training_payer_account_id: ::String
|
|
191
194
|
SENSITIVE: []
|
|
192
195
|
end
|
|
193
196
|
|
|
@@ -339,6 +342,7 @@ module Aws::CleanRoomsML
|
|
|
339
342
|
attr_accessor description: ::String
|
|
340
343
|
attr_accessor kms_key_arn: ::String
|
|
341
344
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
345
|
+
attr_accessor payer_configuration: Types::PayerConfiguration
|
|
342
346
|
SENSITIVE: []
|
|
343
347
|
end
|
|
344
348
|
|
|
@@ -361,6 +365,7 @@ module Aws::CleanRoomsML
|
|
|
361
365
|
attr_accessor description: ::String
|
|
362
366
|
attr_accessor kms_key_arn: ::String
|
|
363
367
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
368
|
+
attr_accessor ml_model_training_payer_account_id: ::String
|
|
364
369
|
SENSITIVE: []
|
|
365
370
|
end
|
|
366
371
|
|
|
@@ -554,6 +559,7 @@ module Aws::CleanRoomsML
|
|
|
554
559
|
attr_accessor privacy_budgets: Types::PrivacyBudgets
|
|
555
560
|
attr_accessor description: ::String
|
|
556
561
|
attr_accessor synthetic_data_configuration: Types::SyntheticDataConfiguration
|
|
562
|
+
attr_accessor payer_configuration: Types::PayerConfiguration
|
|
557
563
|
attr_accessor create_time: ::Time
|
|
558
564
|
attr_accessor update_time: ::Time
|
|
559
565
|
attr_accessor creator_account_id: ::String
|
|
@@ -586,6 +592,7 @@ module Aws::CleanRoomsML
|
|
|
586
592
|
attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
587
593
|
attr_accessor logs_status_details: ::String
|
|
588
594
|
attr_accessor training_container_image_digest: ::String
|
|
595
|
+
attr_accessor ml_model_training_payer_account_id: ::String
|
|
589
596
|
attr_accessor create_time: ::Time
|
|
590
597
|
attr_accessor update_time: ::Time
|
|
591
598
|
attr_accessor creator_account_id: ::String
|
|
@@ -697,6 +704,7 @@ module Aws::CleanRoomsML
|
|
|
697
704
|
attr_accessor privacy_budgets: Types::PrivacyBudgets
|
|
698
705
|
attr_accessor description: ::String
|
|
699
706
|
attr_accessor synthetic_data_configuration: Types::SyntheticDataConfiguration
|
|
707
|
+
attr_accessor payer_configuration: Types::PayerConfiguration
|
|
700
708
|
attr_accessor create_time: ::Time
|
|
701
709
|
attr_accessor update_time: ::Time
|
|
702
710
|
attr_accessor input_channel: Types::InputChannel
|
|
@@ -738,6 +746,7 @@ module Aws::CleanRoomsML
|
|
|
738
746
|
attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
739
747
|
attr_accessor logs_status_details: ::String
|
|
740
748
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
749
|
+
attr_accessor ml_model_inference_payer_account_id: ::String
|
|
741
750
|
SENSITIVE: []
|
|
742
751
|
end
|
|
743
752
|
|
|
@@ -767,6 +776,7 @@ module Aws::CleanRoomsML
|
|
|
767
776
|
attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
768
777
|
attr_accessor logs_status_details: ::String
|
|
769
778
|
attr_accessor training_container_image_digest: ::String
|
|
779
|
+
attr_accessor ml_model_training_payer_account_id: ::String
|
|
770
780
|
attr_accessor create_time: ::Time
|
|
771
781
|
attr_accessor update_time: ::Time
|
|
772
782
|
attr_accessor hyperparameters: ::Hash[::String, ::String]
|
|
@@ -1113,6 +1123,7 @@ module Aws::CleanRoomsML
|
|
|
1113
1123
|
attr_accessor ml_input_channel_arn: ::String
|
|
1114
1124
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE")
|
|
1115
1125
|
attr_accessor description: ::String
|
|
1126
|
+
attr_accessor payer_configuration: Types::PayerConfiguration
|
|
1116
1127
|
SENSITIVE: []
|
|
1117
1128
|
end
|
|
1118
1129
|
|
|
@@ -1158,6 +1169,12 @@ module Aws::CleanRoomsML
|
|
|
1158
1169
|
SENSITIVE: []
|
|
1159
1170
|
end
|
|
1160
1171
|
|
|
1172
|
+
class PayerConfiguration
|
|
1173
|
+
attr_accessor compute_payer_account_id: ::String
|
|
1174
|
+
attr_accessor synthetic_data_payer_account_id: ::String
|
|
1175
|
+
SENSITIVE: []
|
|
1176
|
+
end
|
|
1177
|
+
|
|
1161
1178
|
class PrivacyBudgets
|
|
1162
1179
|
attr_accessor access_budgets: ::Array[Types::AccessBudget]
|
|
1163
1180
|
attr_accessor unknown: untyped
|
|
@@ -1293,6 +1310,7 @@ module Aws::CleanRoomsML
|
|
|
1293
1310
|
attr_accessor environment: ::Hash[::String, ::String]
|
|
1294
1311
|
attr_accessor kms_key_arn: ::String
|
|
1295
1312
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1313
|
+
attr_accessor ml_model_inference_payer_account_id: ::String
|
|
1296
1314
|
SENSITIVE: []
|
|
1297
1315
|
end
|
|
1298
1316
|
|
|
@@ -1387,6 +1405,7 @@ module Aws::CleanRoomsML
|
|
|
1387
1405
|
attr_accessor metrics_status_details: ::String
|
|
1388
1406
|
attr_accessor logs_status: ("PUBLISH_SUCCEEDED" | "PUBLISH_FAILED")
|
|
1389
1407
|
attr_accessor logs_status_details: ::String
|
|
1408
|
+
attr_accessor ml_model_inference_payer_account_id: ::String
|
|
1390
1409
|
attr_accessor create_time: ::Time
|
|
1391
1410
|
attr_accessor update_time: ::Time
|
|
1392
1411
|
SENSITIVE: []
|
|
@@ -1416,6 +1435,7 @@ module Aws::CleanRoomsML
|
|
|
1416
1435
|
attr_accessor collaboration_identifier: ::String
|
|
1417
1436
|
attr_accessor status: ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "INACTIVE" | "CANCEL_PENDING" | "CANCEL_IN_PROGRESS" | "CANCEL_FAILED")
|
|
1418
1437
|
attr_accessor configured_model_algorithm_association_arn: ::String
|
|
1438
|
+
attr_accessor ml_model_training_payer_account_id: ::String
|
|
1419
1439
|
SENSITIVE: []
|
|
1420
1440
|
end
|
|
1421
1441
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cleanroomsml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.47.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|