aws-sdk-cleanrooms 1.72.0 → 1.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98775687cc37bf1b27afa0015e6958a76bc3370bb9821232c490d4027c4426e1
4
- data.tar.gz: dc872b2c5b423e1339f156dbfef3a1470aa9256b77ca0c4df64392b7a80dfce6
3
+ metadata.gz: 641d302d2a19a94b548ca414b1e10753dfdab68e4d4a33a7ba009f962df2d6af
4
+ data.tar.gz: b35a50857c100ae847df8fb66381e58247db432dd1d9eadf9c122f50edce46bd
5
5
  SHA512:
6
- metadata.gz: 19813332273e3fabf6ae958339e91d1de29a1a5255782abdc1c47f2f301ba3f2178ec73ba7e983647e05930262a3e4edd722be2dc81ece3f4aaac254233280f8
7
- data.tar.gz: ed703e350c388e0477ec511c7622721d81478f866a09d3282333c9cfbf5962973f140903073db6d57535007a3076ce996f598fc43b5e0ac621f55919703faf32
6
+ metadata.gz: 806eb56878610411ff76df7518cae7e5b21746a073b4c13cfce3a22a4ce46dd1f8e0c67e11b01c99374a19dc33a88ad3167d6dd024915cfb30a5e9350f0ca302
7
+ data.tar.gz: 7880fe68c4213d96c36bb6ba1120a016335c976dabd4893b5e2637aaa2deb575d4268fc53105784fd4299d5ae3e0744be1a5bf9b73488cec08ec77ac3e8fda5b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.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.72.0 (2026-05-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -199,7 +199,7 @@ module Aws::CleanRooms
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::CleanRooms
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. This is default value if
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` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
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
@@ -1151,6 +1149,28 @@ module Aws::CleanRooms
1151
1149
  # member: {
1152
1150
  # account_id: "AccountId", # required
1153
1151
  # member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS, CAN_RUN_JOB
1152
+ # ml_member_abilities: {
1153
+ # custom_ml_member_abilities: ["CAN_RECEIVE_MODEL_OUTPUT"], # required, accepts CAN_RECEIVE_MODEL_OUTPUT, CAN_RECEIVE_INFERENCE_OUTPUT
1154
+ # },
1155
+ # payment_configuration: {
1156
+ # query_compute: { # required
1157
+ # is_responsible: false, # required
1158
+ # },
1159
+ # machine_learning: {
1160
+ # model_training: {
1161
+ # is_responsible: false, # required
1162
+ # },
1163
+ # model_inference: {
1164
+ # is_responsible: false, # required
1165
+ # },
1166
+ # synthetic_data_generation: {
1167
+ # is_responsible: false, # required
1168
+ # },
1169
+ # },
1170
+ # job_compute: {
1171
+ # is_responsible: false, # required
1172
+ # },
1173
+ # },
1154
1174
  # display_name: "DisplayName",
1155
1175
  # },
1156
1176
  # collaboration: {
@@ -1174,11 +1194,18 @@ module Aws::CleanRooms
1174
1194
  # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
1175
1195
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
1176
1196
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
1197
+ # resp.collaboration_change_request.changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities #=> Array
1198
+ # resp.collaboration_change_request.changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
1199
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.query_compute.is_responsible #=> Boolean
1200
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
1201
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
1202
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
1203
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.job_compute.is_responsible #=> Boolean
1177
1204
  # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
1178
1205
  # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
1179
1206
  # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
1180
1207
  # resp.collaboration_change_request.changes[0].types #=> Array
1181
- # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
1208
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES", "ADD_PAYER_CANDIDATE", "REMOVE_PAYER_CANDIDATE", "GRANT_CAN_RECEIVE_MODEL_OUTPUT", "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT", "REVOKE_CAN_RECEIVE_MODEL_OUTPUT", "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT"
1182
1209
  # resp.collaboration_change_request.approvals #=> Hash
1183
1210
  # resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
1184
1211
  #
@@ -2605,11 +2632,18 @@ module Aws::CleanRooms
2605
2632
  # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
2606
2633
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
2607
2634
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
2635
+ # resp.collaboration_change_request.changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities #=> Array
2636
+ # resp.collaboration_change_request.changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
2637
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.query_compute.is_responsible #=> Boolean
2638
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
2639
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
2640
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
2641
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.job_compute.is_responsible #=> Boolean
2608
2642
  # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
2609
2643
  # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
2610
2644
  # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
2611
2645
  # resp.collaboration_change_request.changes[0].types #=> Array
2612
- # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
2646
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES", "ADD_PAYER_CANDIDATE", "REMOVE_PAYER_CANDIDATE", "GRANT_CAN_RECEIVE_MODEL_OUTPUT", "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT", "REVOKE_CAN_RECEIVE_MODEL_OUTPUT", "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT"
2613
2647
  # resp.collaboration_change_request.approvals #=> Hash
2614
2648
  # resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
2615
2649
  #
@@ -3283,6 +3317,7 @@ module Aws::CleanRooms
3283
3317
  # resp.protected_job.compute_configuration.worker.number #=> Integer
3284
3318
  # resp.protected_job.compute_configuration.worker.properties.spark #=> Hash
3285
3319
  # resp.protected_job.compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
3320
+ # resp.protected_job.job_compute_payer_account_id #=> String
3286
3321
  #
3287
3322
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetProtectedJob AWS API Documentation
3288
3323
  #
@@ -3354,6 +3389,7 @@ module Aws::CleanRooms
3354
3389
  # resp.protected_query.compute_configuration.worker.number #=> Integer
3355
3390
  # resp.protected_query.compute_configuration.worker.properties.spark #=> Hash
3356
3391
  # resp.protected_query.compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
3392
+ # resp.protected_query.query_compute_payer_account_id #=> String
3357
3393
  #
3358
3394
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetProtectedQuery AWS API Documentation
3359
3395
  #
@@ -3725,11 +3761,18 @@ module Aws::CleanRooms
3725
3761
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.account_id #=> String
3726
3762
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities #=> Array
3727
3763
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
3764
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities #=> Array
3765
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
3766
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.payment_configuration.query_compute.is_responsible #=> Boolean
3767
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
3768
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
3769
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
3770
+ # resp.collaboration_change_request_summaries[0].changes[0].specification.member.payment_configuration.job_compute.is_responsible #=> Boolean
3728
3771
  # resp.collaboration_change_request_summaries[0].changes[0].specification.member.display_name #=> String
3729
3772
  # resp.collaboration_change_request_summaries[0].changes[0].specification.collaboration.auto_approved_change_types #=> Array
3730
3773
  # resp.collaboration_change_request_summaries[0].changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
3731
3774
  # resp.collaboration_change_request_summaries[0].changes[0].types #=> Array
3732
- # resp.collaboration_change_request_summaries[0].changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
3775
+ # resp.collaboration_change_request_summaries[0].changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES", "ADD_PAYER_CANDIDATE", "REMOVE_PAYER_CANDIDATE", "GRANT_CAN_RECEIVE_MODEL_OUTPUT", "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT", "REVOKE_CAN_RECEIVE_MODEL_OUTPUT", "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT"
3733
3776
  # resp.collaboration_change_request_summaries[0].approvals #=> Hash
3734
3777
  # resp.collaboration_change_request_summaries[0].approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
3735
3778
  # resp.next_token #=> String
@@ -4606,6 +4649,7 @@ module Aws::CleanRooms
4606
4649
  # resp.protected_jobs[0].receiver_configurations[0].analysis_type #=> String, one of "DIRECT_ANALYSIS"
4607
4650
  # resp.protected_jobs[0].receiver_configurations[0].configuration_details.direct_analysis_configuration_details.receiver_account_ids #=> Array
4608
4651
  # resp.protected_jobs[0].receiver_configurations[0].configuration_details.direct_analysis_configuration_details.receiver_account_ids[0] #=> String
4652
+ # resp.protected_jobs[0].job_compute_payer_account_id #=> String
4609
4653
  #
4610
4654
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedJobs AWS API Documentation
4611
4655
  #
@@ -4662,6 +4706,7 @@ module Aws::CleanRooms
4662
4706
  # resp.protected_queries[0].receiver_configurations[0].analysis_type #=> String, one of "DIRECT_ANALYSIS", "ADDITIONAL_ANALYSIS"
4663
4707
  # resp.protected_queries[0].receiver_configurations[0].configuration_details.direct_analysis_configuration_details.receiver_account_ids #=> Array
4664
4708
  # resp.protected_queries[0].receiver_configurations[0].configuration_details.direct_analysis_configuration_details.receiver_account_ids[0] #=> String
4709
+ # resp.protected_queries[0].query_compute_payer_account_id #=> String
4665
4710
  #
4666
4711
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueries AWS API Documentation
4667
4712
  #
@@ -4880,6 +4925,9 @@ module Aws::CleanRooms
4880
4925
  # @option params [Types::ProtectedJobComputeConfiguration] :compute_configuration
4881
4926
  # The compute configuration for the protected job.
4882
4927
  #
4928
+ # @option params [String] :job_compute_payer_account_id
4929
+ # The account ID of the member that pays for the job compute costs.
4930
+ #
4883
4931
  # @return [Types::StartProtectedJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4884
4932
  #
4885
4933
  # * {Types::StartProtectedJobOutput#protected_job #protected_job} => Types::ProtectedJob
@@ -4913,6 +4961,7 @@ module Aws::CleanRooms
4913
4961
  # },
4914
4962
  # },
4915
4963
  # },
4964
+ # job_compute_payer_account_id: "AccountId",
4916
4965
  # })
4917
4966
  #
4918
4967
  # @example Response structure
@@ -4939,6 +4988,7 @@ module Aws::CleanRooms
4939
4988
  # resp.protected_job.compute_configuration.worker.number #=> Integer
4940
4989
  # resp.protected_job.compute_configuration.worker.properties.spark #=> Hash
4941
4990
  # resp.protected_job.compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
4991
+ # resp.protected_job.job_compute_payer_account_id #=> String
4942
4992
  #
4943
4993
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedJob AWS API Documentation
4944
4994
  #
@@ -4967,6 +5017,9 @@ module Aws::CleanRooms
4967
5017
  # @option params [Types::ComputeConfiguration] :compute_configuration
4968
5018
  # The compute configuration for the protected query.
4969
5019
  #
5020
+ # @option params [String] :query_compute_payer_account_id
5021
+ # The account ID of the member that pays for the query compute costs.
5022
+ #
4970
5023
  # @return [Types::StartProtectedQueryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4971
5024
  #
4972
5025
  # * {Types::StartProtectedQueryOutput#protected_query #protected_query} => Types::ProtectedQuery
@@ -5022,6 +5075,7 @@ module Aws::CleanRooms
5022
5075
  # },
5023
5076
  # },
5024
5077
  # },
5078
+ # query_compute_payer_account_id: "AccountId",
5025
5079
  # })
5026
5080
  #
5027
5081
  # @example Response structure
@@ -5066,6 +5120,7 @@ module Aws::CleanRooms
5066
5120
  # resp.protected_query.compute_configuration.worker.number #=> Integer
5067
5121
  # resp.protected_query.compute_configuration.worker.properties.spark #=> Hash
5068
5122
  # resp.protected_query.compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
5123
+ # resp.protected_query.query_compute_payer_account_id #=> String
5069
5124
  #
5070
5125
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedQuery AWS API Documentation
5071
5126
  #
@@ -5325,11 +5380,18 @@ module Aws::CleanRooms
5325
5380
  # resp.collaboration_change_request.changes[0].specification.member.account_id #=> String
5326
5381
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities #=> Array
5327
5382
  # resp.collaboration_change_request.changes[0].specification.member.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS", "CAN_RUN_JOB"
5383
+ # resp.collaboration_change_request.changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities #=> Array
5384
+ # resp.collaboration_change_request.changes[0].specification.member.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
5385
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.query_compute.is_responsible #=> Boolean
5386
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
5387
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
5388
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.machine_learning.synthetic_data_generation.is_responsible #=> Boolean
5389
+ # resp.collaboration_change_request.changes[0].specification.member.payment_configuration.job_compute.is_responsible #=> Boolean
5328
5390
  # resp.collaboration_change_request.changes[0].specification.member.display_name #=> String
5329
5391
  # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types #=> Array
5330
5392
  # resp.collaboration_change_request.changes[0].specification.collaboration.auto_approved_change_types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY"
5331
5393
  # resp.collaboration_change_request.changes[0].types #=> Array
5332
- # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES"
5394
+ # resp.collaboration_change_request.changes[0].types[0] #=> String, one of "ADD_MEMBER", "GRANT_RECEIVE_RESULTS_ABILITY", "REVOKE_RECEIVE_RESULTS_ABILITY", "EDIT_AUTO_APPROVED_CHANGE_TYPES", "ADD_PAYER_CANDIDATE", "REMOVE_PAYER_CANDIDATE", "GRANT_CAN_RECEIVE_MODEL_OUTPUT", "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT", "REVOKE_CAN_RECEIVE_MODEL_OUTPUT", "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT"
5333
5395
  # resp.collaboration_change_request.approvals #=> Hash
5334
5396
  # resp.collaboration_change_request.approvals["AccountId"].status #=> String, one of "APPROVED", "DENIED", "PENDING"
5335
5397
  #
@@ -5910,6 +5972,9 @@ module Aws::CleanRooms
5910
5972
  # @option params [Types::MembershipProtectedJobResultConfiguration] :default_job_result_configuration
5911
5973
  # The default job result configuration.
5912
5974
  #
5975
+ # @option params [Types::UpdateMembershipPaymentConfiguration] :membership_payment_configuration
5976
+ # The payment configuration to update for the membership.
5977
+ #
5913
5978
  # @return [Types::UpdateMembershipOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5914
5979
  #
5915
5980
  # * {Types::UpdateMembershipOutput#membership #membership} => Types::Membership
@@ -5940,6 +6005,25 @@ module Aws::CleanRooms
5940
6005
  # },
5941
6006
  # role_arn: "RoleArn", # required
5942
6007
  # },
6008
+ # membership_payment_configuration: {
6009
+ # query_compute: {
6010
+ # is_responsible: false, # required
6011
+ # },
6012
+ # machine_learning: {
6013
+ # model_training: {
6014
+ # is_responsible: false, # required
6015
+ # },
6016
+ # model_inference: {
6017
+ # is_responsible: false, # required
6018
+ # },
6019
+ # synthetic_data_generation: {
6020
+ # is_responsible: false, # required
6021
+ # },
6022
+ # },
6023
+ # job_compute: {
6024
+ # is_responsible: false, # required
6025
+ # },
6026
+ # },
5943
6027
  # })
5944
6028
  #
5945
6029
  # @example Response structure
@@ -6106,6 +6190,7 @@ module Aws::CleanRooms
6106
6190
  # resp.protected_job.compute_configuration.worker.number #=> Integer
6107
6191
  # resp.protected_job.compute_configuration.worker.properties.spark #=> Hash
6108
6192
  # resp.protected_job.compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
6193
+ # resp.protected_job.job_compute_payer_account_id #=> String
6109
6194
  #
6110
6195
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateProtectedJob AWS API Documentation
6111
6196
  #
@@ -6182,6 +6267,7 @@ module Aws::CleanRooms
6182
6267
  # resp.protected_query.compute_configuration.worker.number #=> Integer
6183
6268
  # resp.protected_query.compute_configuration.worker.properties.spark #=> Hash
6184
6269
  # resp.protected_query.compute_configuration.worker.properties.spark["SparkPropertyKey"] #=> String
6270
+ # resp.protected_query.query_compute_payer_account_id #=> String
6185
6271
  #
6186
6272
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateProtectedQuery AWS API Documentation
6187
6273
  #
@@ -6210,7 +6296,7 @@ module Aws::CleanRooms
6210
6296
  tracer: tracer
6211
6297
  )
6212
6298
  context[:gem_name] = 'aws-sdk-cleanrooms'
6213
- context[:gem_version] = '1.72.0'
6299
+ context[:gem_version] = '1.73.0'
6214
6300
  Seahorse::Client::Request.new(handlers, context)
6215
6301
  end
6216
6302
 
@@ -626,6 +626,7 @@ module Aws::CleanRooms
626
626
  UpdateIdNamespaceAssociationOutput = Shapes::StructureShape.new(name: 'UpdateIdNamespaceAssociationOutput')
627
627
  UpdateMembershipInput = Shapes::StructureShape.new(name: 'UpdateMembershipInput')
628
628
  UpdateMembershipOutput = Shapes::StructureShape.new(name: 'UpdateMembershipOutput')
629
+ UpdateMembershipPaymentConfiguration = Shapes::StructureShape.new(name: 'UpdateMembershipPaymentConfiguration')
629
630
  UpdatePrivacyBudgetTemplateInput = Shapes::StructureShape.new(name: 'UpdatePrivacyBudgetTemplateInput')
630
631
  UpdatePrivacyBudgetTemplateOutput = Shapes::StructureShape.new(name: 'UpdatePrivacyBudgetTemplateOutput')
631
632
  UpdateProtectedJobInput = Shapes::StructureShape.new(name: 'UpdateProtectedJobInput')
@@ -2104,6 +2105,8 @@ module Aws::CleanRooms
2104
2105
 
2105
2106
  MemberChangeSpecification.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
2106
2107
  MemberChangeSpecification.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
2108
+ MemberChangeSpecification.add_member(:ml_member_abilities, Shapes::ShapeRef.new(shape: MLMemberAbilities, location_name: "mlMemberAbilities"))
2109
+ MemberChangeSpecification.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: PaymentConfiguration, location_name: "paymentConfiguration"))
2107
2110
  MemberChangeSpecification.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
2108
2111
  MemberChangeSpecification.struct_class = Types::MemberChangeSpecification
2109
2112
 
@@ -2337,6 +2340,7 @@ module Aws::CleanRooms
2337
2340
  ProtectedJob.add_member(:result, Shapes::ShapeRef.new(shape: ProtectedJobResult, location_name: "result"))
2338
2341
  ProtectedJob.add_member(:error, Shapes::ShapeRef.new(shape: ProtectedJobError, location_name: "error"))
2339
2342
  ProtectedJob.add_member(:compute_configuration, Shapes::ShapeRef.new(shape: ProtectedJobComputeConfiguration, location_name: "computeConfiguration"))
2343
+ ProtectedJob.add_member(:job_compute_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "jobComputePayerAccountId"))
2340
2344
  ProtectedJob.struct_class = Types::ProtectedJob
2341
2345
 
2342
2346
  ProtectedJobComputeConfiguration.add_member(:worker, Shapes::ShapeRef.new(shape: ProtectedJobWorkerComputeConfiguration, location_name: "worker"))
@@ -2433,6 +2437,7 @@ module Aws::CleanRooms
2433
2437
  ProtectedJobSummary.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createTime"))
2434
2438
  ProtectedJobSummary.add_member(:status, Shapes::ShapeRef.new(shape: ProtectedJobStatus, required: true, location_name: "status"))
2435
2439
  ProtectedJobSummary.add_member(:receiver_configurations, Shapes::ShapeRef.new(shape: ProtectedJobReceiverConfigurations, required: true, location_name: "receiverConfigurations"))
2440
+ ProtectedJobSummary.add_member(:job_compute_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "jobComputePayerAccountId"))
2436
2441
  ProtectedJobSummary.struct_class = Types::ProtectedJobSummary
2437
2442
 
2438
2443
  ProtectedJobSummaryList.member = Shapes::ShapeRef.new(shape: ProtectedJobSummary)
@@ -2454,6 +2459,7 @@ module Aws::CleanRooms
2454
2459
  ProtectedQuery.add_member(:error, Shapes::ShapeRef.new(shape: ProtectedQueryError, location_name: "error"))
2455
2460
  ProtectedQuery.add_member(:differential_privacy, Shapes::ShapeRef.new(shape: DifferentialPrivacyParameters, location_name: "differentialPrivacy"))
2456
2461
  ProtectedQuery.add_member(:compute_configuration, Shapes::ShapeRef.new(shape: ComputeConfiguration, location_name: "computeConfiguration"))
2462
+ ProtectedQuery.add_member(:query_compute_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "queryComputePayerAccountId"))
2457
2463
  ProtectedQuery.struct_class = Types::ProtectedQuery
2458
2464
 
2459
2465
  ProtectedQueryDistributeOutput.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3Output, location_name: "s3"))
@@ -2535,6 +2541,7 @@ module Aws::CleanRooms
2535
2541
  ProtectedQuerySummary.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createTime"))
2536
2542
  ProtectedQuerySummary.add_member(:status, Shapes::ShapeRef.new(shape: ProtectedQueryStatus, required: true, location_name: "status"))
2537
2543
  ProtectedQuerySummary.add_member(:receiver_configurations, Shapes::ShapeRef.new(shape: ReceiverConfigurationsList, required: true, location_name: "receiverConfigurations"))
2544
+ ProtectedQuerySummary.add_member(:query_compute_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "queryComputePayerAccountId"))
2538
2545
  ProtectedQuerySummary.struct_class = Types::ProtectedQuerySummary
2539
2546
 
2540
2547
  ProtectedQuerySummaryList.member = Shapes::ShapeRef.new(shape: ProtectedQuerySummary)
@@ -2675,6 +2682,7 @@ module Aws::CleanRooms
2675
2682
  StartProtectedJobInput.add_member(:job_parameters, Shapes::ShapeRef.new(shape: ProtectedJobParameters, required: true, location_name: "jobParameters"))
2676
2683
  StartProtectedJobInput.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ProtectedJobResultConfigurationInput, location_name: "resultConfiguration"))
2677
2684
  StartProtectedJobInput.add_member(:compute_configuration, Shapes::ShapeRef.new(shape: ProtectedJobComputeConfiguration, location_name: "computeConfiguration"))
2685
+ StartProtectedJobInput.add_member(:job_compute_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "jobComputePayerAccountId"))
2678
2686
  StartProtectedJobInput.struct_class = Types::StartProtectedJobInput
2679
2687
 
2680
2688
  StartProtectedJobOutput.add_member(:protected_job, Shapes::ShapeRef.new(shape: ProtectedJob, required: true, location_name: "protectedJob"))
@@ -2685,6 +2693,7 @@ module Aws::CleanRooms
2685
2693
  StartProtectedQueryInput.add_member(:sql_parameters, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParameters, required: true, location_name: "sqlParameters"))
2686
2694
  StartProtectedQueryInput.add_member(:result_configuration, Shapes::ShapeRef.new(shape: ProtectedQueryResultConfiguration, location_name: "resultConfiguration"))
2687
2695
  StartProtectedQueryInput.add_member(:compute_configuration, Shapes::ShapeRef.new(shape: ComputeConfiguration, location_name: "computeConfiguration"))
2696
+ StartProtectedQueryInput.add_member(:query_compute_payer_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "queryComputePayerAccountId"))
2688
2697
  StartProtectedQueryInput.struct_class = Types::StartProtectedQueryInput
2689
2698
 
2690
2699
  StartProtectedQueryOutput.add_member(:protected_query, Shapes::ShapeRef.new(shape: ProtectedQuery, required: true, location_name: "protectedQuery"))
@@ -2832,11 +2841,17 @@ module Aws::CleanRooms
2832
2841
  UpdateMembershipInput.add_member(:job_log_status, Shapes::ShapeRef.new(shape: MembershipJobLogStatus, location_name: "jobLogStatus"))
2833
2842
  UpdateMembershipInput.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
2834
2843
  UpdateMembershipInput.add_member(:default_job_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedJobResultConfiguration, location_name: "defaultJobResultConfiguration"))
2844
+ UpdateMembershipInput.add_member(:membership_payment_configuration, Shapes::ShapeRef.new(shape: UpdateMembershipPaymentConfiguration, location_name: "membershipPaymentConfiguration"))
2835
2845
  UpdateMembershipInput.struct_class = Types::UpdateMembershipInput
2836
2846
 
2837
2847
  UpdateMembershipOutput.add_member(:membership, Shapes::ShapeRef.new(shape: Membership, required: true, location_name: "membership"))
2838
2848
  UpdateMembershipOutput.struct_class = Types::UpdateMembershipOutput
2839
2849
 
2850
+ UpdateMembershipPaymentConfiguration.add_member(:query_compute, Shapes::ShapeRef.new(shape: MembershipQueryComputePaymentConfig, location_name: "queryCompute"))
2851
+ UpdateMembershipPaymentConfiguration.add_member(:machine_learning, Shapes::ShapeRef.new(shape: MembershipMLPaymentConfig, location_name: "machineLearning"))
2852
+ UpdateMembershipPaymentConfiguration.add_member(:job_compute, Shapes::ShapeRef.new(shape: MembershipJobComputePaymentConfig, location_name: "jobCompute"))
2853
+ UpdateMembershipPaymentConfiguration.struct_class = Types::UpdateMembershipPaymentConfiguration
2854
+
2840
2855
  UpdatePrivacyBudgetTemplateInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
2841
2856
  UpdatePrivacyBudgetTemplateInput.add_member(:privacy_budget_template_identifier, Shapes::ShapeRef.new(shape: PrivacyBudgetTemplateIdentifier, required: true, location: "uri", location_name: "privacyBudgetTemplateIdentifier"))
2842
2857
  UpdatePrivacyBudgetTemplateInput.add_member(:privacy_budget_type, Shapes::ShapeRef.new(shape: PrivacyBudgetType, required: true, location_name: "privacyBudgetType"))
@@ -6763,6 +6763,15 @@ module Aws::CleanRooms
6763
6763
  # </note>
6764
6764
  # @return [Array<String>]
6765
6765
  #
6766
+ # @!attribute [rw] ml_member_abilities
6767
+ # The ML member abilities for a collaboration member.
6768
+ # @return [Types::MLMemberAbilities]
6769
+ #
6770
+ # @!attribute [rw] payment_configuration
6771
+ # An object representing the collaboration member's payment
6772
+ # responsibilities set by the collaboration creator.
6773
+ # @return [Types::PaymentConfiguration]
6774
+ #
6766
6775
  # @!attribute [rw] display_name
6767
6776
  # Specifies the display name that will be shown for this member in the
6768
6777
  # collaboration. While this field is required when inviting new
@@ -6775,6 +6784,8 @@ module Aws::CleanRooms
6775
6784
  class MemberChangeSpecification < Struct.new(
6776
6785
  :account_id,
6777
6786
  :member_abilities,
6787
+ :ml_member_abilities,
6788
+ :payment_configuration,
6778
6789
  :display_name)
6779
6790
  SENSITIVE = []
6780
6791
  include Aws::Structure
@@ -7931,6 +7942,10 @@ module Aws::CleanRooms
7931
7942
  # The compute configuration for the protected job.
7932
7943
  # @return [Types::ProtectedJobComputeConfiguration]
7933
7944
  #
7945
+ # @!attribute [rw] job_compute_payer_account_id
7946
+ # The account ID of the member that pays for the job compute costs.
7947
+ # @return [String]
7948
+ #
7934
7949
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJob AWS API Documentation
7935
7950
  #
7936
7951
  class ProtectedJob < Struct.new(
@@ -7944,7 +7959,8 @@ module Aws::CleanRooms
7944
7959
  :statistics,
7945
7960
  :result,
7946
7961
  :error,
7947
- :compute_configuration)
7962
+ :compute_configuration,
7963
+ :job_compute_payer_account_id)
7948
7964
  SENSITIVE = []
7949
7965
  include Aws::Structure
7950
7966
  end
@@ -8327,6 +8343,10 @@ module Aws::CleanRooms
8327
8343
  # The receiver configurations for the protected job.
8328
8344
  # @return [Array<Types::ProtectedJobReceiverConfiguration>]
8329
8345
  #
8346
+ # @!attribute [rw] job_compute_payer_account_id
8347
+ # The account ID of the member that pays for the job compute costs.
8348
+ # @return [String]
8349
+ #
8330
8350
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedJobSummary AWS API Documentation
8331
8351
  #
8332
8352
  class ProtectedJobSummary < Struct.new(
@@ -8335,7 +8355,8 @@ module Aws::CleanRooms
8335
8355
  :membership_arn,
8336
8356
  :create_time,
8337
8357
  :status,
8338
- :receiver_configurations)
8358
+ :receiver_configurations,
8359
+ :job_compute_payer_account_id)
8339
8360
  SENSITIVE = []
8340
8361
  include Aws::Structure
8341
8362
  end
@@ -8417,6 +8438,10 @@ module Aws::CleanRooms
8417
8438
  # The compute configuration for the protected query.
8418
8439
  # @return [Types::ComputeConfiguration]
8419
8440
  #
8441
+ # @!attribute [rw] query_compute_payer_account_id
8442
+ # The account ID of the member that pays for the query compute costs.
8443
+ # @return [String]
8444
+ #
8420
8445
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQuery AWS API Documentation
8421
8446
  #
8422
8447
  class ProtectedQuery < Struct.new(
@@ -8431,7 +8456,8 @@ module Aws::CleanRooms
8431
8456
  :result,
8432
8457
  :error,
8433
8458
  :differential_privacy,
8434
- :compute_configuration)
8459
+ :compute_configuration,
8460
+ :query_compute_payer_account_id)
8435
8461
  SENSITIVE = [:sql_parameters]
8436
8462
  include Aws::Structure
8437
8463
  end
@@ -8795,6 +8821,10 @@ module Aws::CleanRooms
8795
8821
  # The receiver configuration.
8796
8822
  # @return [Array<Types::ReceiverConfiguration>]
8797
8823
  #
8824
+ # @!attribute [rw] query_compute_payer_account_id
8825
+ # The account ID of the member that pays for the query compute costs.
8826
+ # @return [String]
8827
+ #
8798
8828
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQuerySummary AWS API Documentation
8799
8829
  #
8800
8830
  class ProtectedQuerySummary < Struct.new(
@@ -8803,7 +8833,8 @@ module Aws::CleanRooms
8803
8833
  :membership_arn,
8804
8834
  :create_time,
8805
8835
  :status,
8806
- :receiver_configurations)
8836
+ :receiver_configurations,
8837
+ :query_compute_payer_account_id)
8807
8838
  SENSITIVE = []
8808
8839
  include Aws::Structure
8809
8840
  end
@@ -9345,6 +9376,10 @@ module Aws::CleanRooms
9345
9376
  # The compute configuration for the protected job.
9346
9377
  # @return [Types::ProtectedJobComputeConfiguration]
9347
9378
  #
9379
+ # @!attribute [rw] job_compute_payer_account_id
9380
+ # The account ID of the member that pays for the job compute costs.
9381
+ # @return [String]
9382
+ #
9348
9383
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedJobInput AWS API Documentation
9349
9384
  #
9350
9385
  class StartProtectedJobInput < Struct.new(
@@ -9352,7 +9387,8 @@ module Aws::CleanRooms
9352
9387
  :membership_identifier,
9353
9388
  :job_parameters,
9354
9389
  :result_configuration,
9355
- :compute_configuration)
9390
+ :compute_configuration,
9391
+ :job_compute_payer_account_id)
9356
9392
  SENSITIVE = []
9357
9393
  include Aws::Structure
9358
9394
  end
@@ -9390,6 +9426,10 @@ module Aws::CleanRooms
9390
9426
  # The compute configuration for the protected query.
9391
9427
  # @return [Types::ComputeConfiguration]
9392
9428
  #
9429
+ # @!attribute [rw] query_compute_payer_account_id
9430
+ # The account ID of the member that pays for the query compute costs.
9431
+ # @return [String]
9432
+ #
9393
9433
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/StartProtectedQueryInput AWS API Documentation
9394
9434
  #
9395
9435
  class StartProtectedQueryInput < Struct.new(
@@ -9397,7 +9437,8 @@ module Aws::CleanRooms
9397
9437
  :membership_identifier,
9398
9438
  :sql_parameters,
9399
9439
  :result_configuration,
9400
- :compute_configuration)
9440
+ :compute_configuration,
9441
+ :query_compute_payer_account_id)
9401
9442
  SENSITIVE = [:sql_parameters]
9402
9443
  include Aws::Structure
9403
9444
  end
@@ -10050,6 +10091,10 @@ module Aws::CleanRooms
10050
10091
  # The default job result configuration.
10051
10092
  # @return [Types::MembershipProtectedJobResultConfiguration]
10052
10093
  #
10094
+ # @!attribute [rw] membership_payment_configuration
10095
+ # The payment configuration to update for the membership.
10096
+ # @return [Types::UpdateMembershipPaymentConfiguration]
10097
+ #
10053
10098
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembershipInput AWS API Documentation
10054
10099
  #
10055
10100
  class UpdateMembershipInput < Struct.new(
@@ -10057,7 +10102,8 @@ module Aws::CleanRooms
10057
10102
  :query_log_status,
10058
10103
  :job_log_status,
10059
10104
  :default_result_configuration,
10060
- :default_job_result_configuration)
10105
+ :default_job_result_configuration,
10106
+ :membership_payment_configuration)
10061
10107
  SENSITIVE = []
10062
10108
  include Aws::Structure
10063
10109
  end
@@ -10074,6 +10120,34 @@ module Aws::CleanRooms
10074
10120
  include Aws::Structure
10075
10121
  end
10076
10122
 
10123
+ # An object representing the payment responsibilities to update for the
10124
+ # membership.
10125
+ #
10126
+ # @!attribute [rw] query_compute
10127
+ # An object representing the payment responsibilities accepted by the
10128
+ # collaboration member for query compute costs.
10129
+ # @return [Types::MembershipQueryComputePaymentConfig]
10130
+ #
10131
+ # @!attribute [rw] machine_learning
10132
+ # An object representing the collaboration member's machine learning
10133
+ # payment responsibilities set by the collaboration creator.
10134
+ # @return [Types::MembershipMLPaymentConfig]
10135
+ #
10136
+ # @!attribute [rw] job_compute
10137
+ # An object representing the payment responsibilities accepted by the
10138
+ # collaboration member for query and job compute costs.
10139
+ # @return [Types::MembershipJobComputePaymentConfig]
10140
+ #
10141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembershipPaymentConfiguration AWS API Documentation
10142
+ #
10143
+ class UpdateMembershipPaymentConfiguration < Struct.new(
10144
+ :query_compute,
10145
+ :machine_learning,
10146
+ :job_compute)
10147
+ SENSITIVE = []
10148
+ include Aws::Structure
10149
+ end
10150
+
10077
10151
  # @!attribute [rw] membership_identifier
10078
10152
  # A unique identifier for one of your memberships for a collaboration.
10079
10153
  # The privacy budget template is updated in the collaboration that
@@ -55,7 +55,7 @@ module Aws::CleanRooms
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanrooms/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanrooms/endpoints'
57
57
 
58
- GEM_VERSION = '1.72.0'
58
+ GEM_VERSION = '1.73.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -236,6 +236,10 @@ module Aws
236
236
  member: {
237
237
  account_id: ::String,
238
238
  member_abilities: Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")],
239
+ ml_member_abilities: {
240
+ custom_ml_member_abilities: Array[("CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT")]
241
+ }?,
242
+ payment_configuration: Params::payment_configuration?,
239
243
  display_name: ::String?
240
244
  }?,
241
245
  collaboration: {
@@ -372,17 +376,7 @@ module Aws
372
376
  query_compute: {
373
377
  is_responsible: bool
374
378
  },
375
- machine_learning: {
376
- model_training: {
377
- is_responsible: bool
378
- }?,
379
- model_inference: {
380
- is_responsible: bool
381
- }?,
382
- synthetic_data_generation: {
383
- is_responsible: bool
384
- }?
385
- }?,
379
+ machine_learning: Params::membership_ml_payment_config?,
386
380
  job_compute: {
387
381
  is_responsible: bool
388
382
  }?
@@ -1089,7 +1083,8 @@ module Aws
1089
1083
  spark: Hash[::String, ::String]?
1090
1084
  }?
1091
1085
  }?
1092
- }
1086
+ },
1087
+ ?job_compute_payer_account_id: ::String
1093
1088
  ) -> _StartProtectedJobResponseSuccess
1094
1089
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProtectedJobResponseSuccess
1095
1090
 
@@ -1142,7 +1137,8 @@ module Aws
1142
1137
  spark: Hash[::String, ::String]?
1143
1138
  }?
1144
1139
  }?
1145
- }
1140
+ },
1141
+ ?query_compute_payer_account_id: ::String
1146
1142
  ) -> _StartProtectedQueryResponseSuccess
1147
1143
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProtectedQueryResponseSuccess
1148
1144
 
@@ -1309,7 +1305,16 @@ module Aws
1309
1305
  ?query_log_status: ("ENABLED" | "DISABLED"),
1310
1306
  ?job_log_status: ("ENABLED" | "DISABLED"),
1311
1307
  ?default_result_configuration: Params::membership_protected_query_result_configuration,
1312
- ?default_job_result_configuration: Params::membership_protected_job_result_configuration
1308
+ ?default_job_result_configuration: Params::membership_protected_job_result_configuration,
1309
+ ?membership_payment_configuration: {
1310
+ query_compute: {
1311
+ is_responsible: bool
1312
+ }?,
1313
+ machine_learning: Params::membership_ml_payment_config?,
1314
+ job_compute: {
1315
+ is_responsible: bool
1316
+ }?
1317
+ }
1313
1318
  ) -> _UpdateMembershipResponseSuccess
1314
1319
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMembershipResponseSuccess
1315
1320
 
data/sig/params.rbs CHANGED
@@ -159,6 +159,18 @@ module Aws
159
159
  role_arn: ::String
160
160
  }
161
161
 
162
+ type membership_ml_payment_config = {
163
+ model_training: {
164
+ is_responsible: bool
165
+ }?,
166
+ model_inference: {
167
+ is_responsible: bool
168
+ }?,
169
+ synthetic_data_generation: {
170
+ is_responsible: bool
171
+ }?
172
+ }
173
+
162
174
  end
163
175
  end
164
176
  end
data/sig/types.rbs CHANGED
@@ -337,7 +337,7 @@ module Aws::CleanRooms
337
337
  class Change
338
338
  attr_accessor specification_type: ("MEMBER" | "COLLABORATION")
339
339
  attr_accessor specification: Types::ChangeSpecification
340
- attr_accessor types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY" | "EDIT_AUTO_APPROVED_CHANGE_TYPES")]
340
+ attr_accessor types: ::Array[("ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY" | "EDIT_AUTO_APPROVED_CHANGE_TYPES" | "ADD_PAYER_CANDIDATE" | "REMOVE_PAYER_CANDIDATE" | "GRANT_CAN_RECEIVE_MODEL_OUTPUT" | "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT" | "REVOKE_CAN_RECEIVE_MODEL_OUTPUT" | "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT")]
341
341
  SENSITIVE: []
342
342
  end
343
343
 
@@ -1877,6 +1877,8 @@ module Aws::CleanRooms
1877
1877
  class MemberChangeSpecification
1878
1878
  attr_accessor account_id: ::String
1879
1879
  attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS" | "CAN_RUN_JOB")]
1880
+ attr_accessor ml_member_abilities: Types::MLMemberAbilities
1881
+ attr_accessor payment_configuration: Types::PaymentConfiguration
1880
1882
  attr_accessor display_name: ::String
1881
1883
  SENSITIVE: []
1882
1884
  end
@@ -2189,6 +2191,7 @@ module Aws::CleanRooms
2189
2191
  attr_accessor result: Types::ProtectedJobResult
2190
2192
  attr_accessor error: Types::ProtectedJobError
2191
2193
  attr_accessor compute_configuration: Types::ProtectedJobComputeConfiguration
2194
+ attr_accessor job_compute_payer_account_id: ::String
2192
2195
  SENSITIVE: []
2193
2196
  end
2194
2197
 
@@ -2336,6 +2339,7 @@ module Aws::CleanRooms
2336
2339
  attr_accessor create_time: ::Time
2337
2340
  attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS")
2338
2341
  attr_accessor receiver_configurations: ::Array[Types::ProtectedJobReceiverConfiguration]
2342
+ attr_accessor job_compute_payer_account_id: ::String
2339
2343
  SENSITIVE: []
2340
2344
  end
2341
2345
 
@@ -2359,6 +2363,7 @@ module Aws::CleanRooms
2359
2363
  attr_accessor error: Types::ProtectedQueryError
2360
2364
  attr_accessor differential_privacy: Types::DifferentialPrivacyParameters
2361
2365
  attr_accessor compute_configuration: Types::ComputeConfiguration
2366
+ attr_accessor query_compute_payer_account_id: ::String
2362
2367
  SENSITIVE: [:sql_parameters]
2363
2368
  end
2364
2369
 
@@ -2480,6 +2485,7 @@ module Aws::CleanRooms
2480
2485
  attr_accessor create_time: ::Time
2481
2486
  attr_accessor status: ("SUBMITTED" | "STARTED" | "CANCELLED" | "CANCELLING" | "FAILED" | "SUCCESS" | "TIMED_OUT")
2482
2487
  attr_accessor receiver_configurations: ::Array[Types::ReceiverConfiguration]
2488
+ attr_accessor query_compute_payer_account_id: ::String
2483
2489
  SENSITIVE: []
2484
2490
  end
2485
2491
 
@@ -2630,6 +2636,7 @@ module Aws::CleanRooms
2630
2636
  attr_accessor job_parameters: Types::ProtectedJobParameters
2631
2637
  attr_accessor result_configuration: Types::ProtectedJobResultConfigurationInput
2632
2638
  attr_accessor compute_configuration: Types::ProtectedJobComputeConfiguration
2639
+ attr_accessor job_compute_payer_account_id: ::String
2633
2640
  SENSITIVE: []
2634
2641
  end
2635
2642
 
@@ -2644,6 +2651,7 @@ module Aws::CleanRooms
2644
2651
  attr_accessor sql_parameters: Types::ProtectedQuerySQLParameters
2645
2652
  attr_accessor result_configuration: Types::ProtectedQueryResultConfiguration
2646
2653
  attr_accessor compute_configuration: Types::ComputeConfiguration
2654
+ attr_accessor query_compute_payer_account_id: ::String
2647
2655
  SENSITIVE: [:sql_parameters]
2648
2656
  end
2649
2657
 
@@ -2852,6 +2860,7 @@ module Aws::CleanRooms
2852
2860
  attr_accessor job_log_status: ("ENABLED" | "DISABLED")
2853
2861
  attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
2854
2862
  attr_accessor default_job_result_configuration: Types::MembershipProtectedJobResultConfiguration
2863
+ attr_accessor membership_payment_configuration: Types::UpdateMembershipPaymentConfiguration
2855
2864
  SENSITIVE: []
2856
2865
  end
2857
2866
 
@@ -2860,6 +2869,13 @@ module Aws::CleanRooms
2860
2869
  SENSITIVE: []
2861
2870
  end
2862
2871
 
2872
+ class UpdateMembershipPaymentConfiguration
2873
+ attr_accessor query_compute: Types::MembershipQueryComputePaymentConfig
2874
+ attr_accessor machine_learning: Types::MembershipMLPaymentConfig
2875
+ attr_accessor job_compute: Types::MembershipJobComputePaymentConfig
2876
+ SENSITIVE: []
2877
+ end
2878
+
2863
2879
  class UpdatePrivacyBudgetTemplateInput
2864
2880
  attr_accessor membership_identifier: ::String
2865
2881
  attr_accessor privacy_budget_template_identifier: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.73.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.247.0
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.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement