aws-sdk-cleanrooms 1.11.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0cc38e89dcb1f13a356e7891eaf83df68f4c9f4769f70514d6d744f8ccf66cf
4
- data.tar.gz: 4a9b291171044117f7e547e83393c6367f6cdf17666d84a64b20b047b9d044cc
3
+ metadata.gz: '083ac73401e5c78ac23a4907608e087a8d26d2a8a4b55d4a9b0fa04205ce807a'
4
+ data.tar.gz: '0209b41a9f9fff3d81fd5c8eb76a93290ab21647f1242a1f147089baee9e22fa'
5
5
  SHA512:
6
- metadata.gz: c7aad3bc3af375f46acc89c5fb6e39ab5caa1dd1a5839d8a90bc385cb7a6de2bafd9550776358b89685d50748becbbbf1ef98da073c2564cce0951c6783c0174
7
- data.tar.gz: b649021c9d720dd1c58f5b8d1b08bde329feeae32b42018abe2bf15e4c82fb9e989c26c116a2deecaa8e9064c4805141fc17df787ce4286fb7104c36e8c7a464
6
+ metadata.gz: 734d111b230a9689a95857ccfe6b02b1d9cb062bb431396a7e99bce600cc5a37e1a37a793b89fd62893c4465be34425d4e890029574108abef2d26302d5d8007
7
+ data.tar.gz: f2d1cd84ebb4bad1d6d4de881f56f40c795b65a907c04035d7b9aa922d8dc3f19102bf867b24b99b772ff40308a485260871278a0bb84d3f28c809e9ede32455
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2023-11-14)
5
+ ------------------
6
+
7
+ * Feature - This feature provides the ability for the collaboration creator to configure either the member who can run queries or a different member in the collaboration to be billed for query compute costs.
8
+
4
9
  1.11.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.0
@@ -616,6 +616,14 @@ module Aws::CleanRooms
616
616
  # you define. When you use tagging, you can also use tag-based access
617
617
  # control in IAM policies to control access to this resource.
618
618
  #
619
+ # @option params [Types::PaymentConfiguration] :creator_payment_configuration
620
+ # The collaboration creator's payment responsibilities set by the
621
+ # collaboration creator.
622
+ #
623
+ # If the collaboration creator hasn't specified anyone as the member
624
+ # paying for query compute costs, then the member who can query is the
625
+ # default payer.
626
+ #
619
627
  # @return [Types::CreateCollaborationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
620
628
  #
621
629
  # * {Types::CreateCollaborationOutput#collaboration #collaboration} => Types::Collaboration
@@ -628,6 +636,11 @@ module Aws::CleanRooms
628
636
  # account_id: "AccountId", # required
629
637
  # member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS
630
638
  # display_name: "DisplayName", # required
639
+ # payment_configuration: {
640
+ # query_compute: { # required
641
+ # is_responsible: false, # required
642
+ # },
643
+ # },
631
644
  # },
632
645
  # ],
633
646
  # name: "CollaborationName", # required
@@ -644,6 +657,11 @@ module Aws::CleanRooms
644
657
  # tags: {
645
658
  # "TagKey" => "TagValue",
646
659
  # },
660
+ # creator_payment_configuration: {
661
+ # query_compute: { # required
662
+ # is_responsible: false, # required
663
+ # },
664
+ # },
647
665
  # })
648
666
  #
649
667
  # @example Response structure
@@ -924,7 +942,7 @@ module Aws::CleanRooms
924
942
  #
925
943
  # @option params [required, String] :query_log_status
926
944
  # An indicator as to whether query logging has been enabled or disabled
927
- # for the collaboration.
945
+ # for the membership.
928
946
  #
929
947
  # @option params [Hash<String,String>] :tags
930
948
  # An optional label that you can assign to a resource when you create
@@ -936,6 +954,16 @@ module Aws::CleanRooms
936
954
  # The default protected query result configuration as specified by the
937
955
  # member who can receive results.
938
956
  #
957
+ # @option params [Types::MembershipPaymentConfiguration] :payment_configuration
958
+ # The payment responsibilities accepted by the collaboration member.
959
+ #
960
+ # Not required if the collaboration member has the member ability to run
961
+ # queries.
962
+ #
963
+ # Required if the collaboration member doesn't have the member ability
964
+ # to run queries but is configured as a payer by the collaboration
965
+ # creator.
966
+ #
939
967
  # @return [Types::CreateMembershipOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
940
968
  #
941
969
  # * {Types::CreateMembershipOutput#membership #membership} => Types::Membership
@@ -958,6 +986,11 @@ module Aws::CleanRooms
958
986
  # },
959
987
  # role_arn: "RoleArn",
960
988
  # },
989
+ # payment_configuration: {
990
+ # query_compute: { # required
991
+ # is_responsible: false, # required
992
+ # },
993
+ # },
961
994
  # })
962
995
  #
963
996
  # @example Response structure
@@ -979,6 +1012,7 @@ module Aws::CleanRooms
979
1012
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
980
1013
  # resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
981
1014
  # resp.membership.default_result_configuration.role_arn #=> String
1015
+ # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
982
1016
  #
983
1017
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership AWS API Documentation
984
1018
  #
@@ -1495,6 +1529,7 @@ module Aws::CleanRooms
1495
1529
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
1496
1530
  # resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
1497
1531
  # resp.membership.default_result_configuration.role_arn #=> String
1532
+ # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
1498
1533
  #
1499
1534
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership AWS API Documentation
1500
1535
  #
@@ -1964,6 +1999,7 @@ module Aws::CleanRooms
1964
1999
  # resp.member_summaries[0].update_time #=> Time
1965
2000
  # resp.member_summaries[0].membership_id #=> String
1966
2001
  # resp.member_summaries[0].membership_arn #=> String
2002
+ # resp.member_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
1967
2003
  #
1968
2004
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembers AWS API Documentation
1969
2005
  #
@@ -2017,6 +2053,7 @@ module Aws::CleanRooms
2017
2053
  # resp.membership_summaries[0].status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
2018
2054
  # resp.membership_summaries[0].member_abilities #=> Array
2019
2055
  # resp.membership_summaries[0].member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
2056
+ # resp.membership_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
2020
2057
  #
2021
2058
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMemberships AWS API Documentation
2022
2059
  #
@@ -2611,7 +2648,7 @@ module Aws::CleanRooms
2611
2648
  #
2612
2649
  # @option params [String] :query_log_status
2613
2650
  # An indicator as to whether query logging has been enabled or disabled
2614
- # for the collaboration.
2651
+ # for the membership.
2615
2652
  #
2616
2653
  # @option params [Types::MembershipProtectedQueryResultConfiguration] :default_result_configuration
2617
2654
  # The default protected query result configuration as specified by the
@@ -2657,6 +2694,7 @@ module Aws::CleanRooms
2657
2694
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
2658
2695
  # resp.membership.default_result_configuration.output_configuration.s3.key_prefix #=> String
2659
2696
  # resp.membership.default_result_configuration.role_arn #=> String
2697
+ # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
2660
2698
  #
2661
2699
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership AWS API Documentation
2662
2700
  #
@@ -2734,7 +2772,7 @@ module Aws::CleanRooms
2734
2772
  params: params,
2735
2773
  config: config)
2736
2774
  context[:gem_name] = 'aws-sdk-cleanrooms'
2737
- context[:gem_version] = '1.11.0'
2775
+ context[:gem_version] = '1.12.0'
2738
2776
  Seahorse::Client::Request.new(handlers, context)
2739
2777
  end
2740
2778
 
@@ -185,8 +185,10 @@ module Aws::CleanRooms
185
185
  Membership = Shapes::StructureShape.new(name: 'Membership')
186
186
  MembershipArn = Shapes::StringShape.new(name: 'MembershipArn')
187
187
  MembershipIdentifier = Shapes::StringShape.new(name: 'MembershipIdentifier')
188
+ MembershipPaymentConfiguration = Shapes::StructureShape.new(name: 'MembershipPaymentConfiguration')
188
189
  MembershipProtectedQueryOutputConfiguration = Shapes::UnionShape.new(name: 'MembershipProtectedQueryOutputConfiguration')
189
190
  MembershipProtectedQueryResultConfiguration = Shapes::StructureShape.new(name: 'MembershipProtectedQueryResultConfiguration')
191
+ MembershipQueryComputePaymentConfig = Shapes::StructureShape.new(name: 'MembershipQueryComputePaymentConfig')
190
192
  MembershipQueryLogStatus = Shapes::StringShape.new(name: 'MembershipQueryLogStatus')
191
193
  MembershipStatus = Shapes::StringShape.new(name: 'MembershipStatus')
192
194
  MembershipSummary = Shapes::StructureShape.new(name: 'MembershipSummary')
@@ -196,6 +198,7 @@ module Aws::CleanRooms
196
198
  ParameterName = Shapes::StringShape.new(name: 'ParameterName')
197
199
  ParameterType = Shapes::StringShape.new(name: 'ParameterType')
198
200
  ParameterValue = Shapes::StringShape.new(name: 'ParameterValue')
201
+ PaymentConfiguration = Shapes::StructureShape.new(name: 'PaymentConfiguration')
199
202
  ProtectedQuery = Shapes::StructureShape.new(name: 'ProtectedQuery')
200
203
  ProtectedQueryError = Shapes::StructureShape.new(name: 'ProtectedQueryError')
201
204
  ProtectedQueryIdentifier = Shapes::StringShape.new(name: 'ProtectedQueryIdentifier')
@@ -215,6 +218,7 @@ module Aws::CleanRooms
215
218
  ProtectedQuerySummary = Shapes::StructureShape.new(name: 'ProtectedQuerySummary')
216
219
  ProtectedQuerySummaryList = Shapes::ListShape.new(name: 'ProtectedQuerySummaryList')
217
220
  ProtectedQueryType = Shapes::StringShape.new(name: 'ProtectedQueryType')
221
+ QueryComputePaymentConfig = Shapes::StructureShape.new(name: 'QueryComputePaymentConfig')
218
222
  QueryTables = Shapes::ListShape.new(name: 'QueryTables')
219
223
  ResourceAlias = Shapes::StringShape.new(name: 'ResourceAlias')
220
224
  ResourceDescription = Shapes::StringShape.new(name: 'ResourceDescription')
@@ -584,6 +588,7 @@ module Aws::CleanRooms
584
588
  CreateCollaborationInput.add_member(:data_encryption_metadata, Shapes::ShapeRef.new(shape: DataEncryptionMetadata, location_name: "dataEncryptionMetadata"))
585
589
  CreateCollaborationInput.add_member(:query_log_status, Shapes::ShapeRef.new(shape: CollaborationQueryLogStatus, required: true, location_name: "queryLogStatus"))
586
590
  CreateCollaborationInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
591
+ CreateCollaborationInput.add_member(:creator_payment_configuration, Shapes::ShapeRef.new(shape: PaymentConfiguration, location_name: "creatorPaymentConfiguration"))
587
592
  CreateCollaborationInput.struct_class = Types::CreateCollaborationInput
588
593
 
589
594
  CreateCollaborationOutput.add_member(:collaboration, Shapes::ShapeRef.new(shape: Collaboration, required: true, location_name: "collaboration"))
@@ -623,6 +628,7 @@ module Aws::CleanRooms
623
628
  CreateMembershipInput.add_member(:query_log_status, Shapes::ShapeRef.new(shape: MembershipQueryLogStatus, required: true, location_name: "queryLogStatus"))
624
629
  CreateMembershipInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
625
630
  CreateMembershipInput.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
631
+ CreateMembershipInput.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, location_name: "paymentConfiguration"))
626
632
  CreateMembershipInput.struct_class = Types::CreateMembershipInput
627
633
 
628
634
  CreateMembershipOutput.add_member(:membership, Shapes::ShapeRef.new(shape: Membership, required: true, location_name: "membership"))
@@ -845,6 +851,7 @@ module Aws::CleanRooms
845
851
  MemberSpecification.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
846
852
  MemberSpecification.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
847
853
  MemberSpecification.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, required: true, location_name: "displayName"))
854
+ MemberSpecification.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: PaymentConfiguration, location_name: "paymentConfiguration"))
848
855
  MemberSpecification.struct_class = Types::MemberSpecification
849
856
 
850
857
  MemberSummary.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
@@ -855,6 +862,7 @@ module Aws::CleanRooms
855
862
  MemberSummary.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
856
863
  MemberSummary.add_member(:membership_id, Shapes::ShapeRef.new(shape: UUID, location_name: "membershipId"))
857
864
  MemberSummary.add_member(:membership_arn, Shapes::ShapeRef.new(shape: MembershipArn, location_name: "membershipArn"))
865
+ MemberSummary.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: PaymentConfiguration, required: true, location_name: "paymentConfiguration"))
858
866
  MemberSummary.struct_class = Types::MemberSummary
859
867
 
860
868
  MemberSummaryList.member = Shapes::ShapeRef.new(shape: MemberSummary)
@@ -872,8 +880,12 @@ module Aws::CleanRooms
872
880
  Membership.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
873
881
  Membership.add_member(:query_log_status, Shapes::ShapeRef.new(shape: MembershipQueryLogStatus, required: true, location_name: "queryLogStatus"))
874
882
  Membership.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
883
+ Membership.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, required: true, location_name: "paymentConfiguration"))
875
884
  Membership.struct_class = Types::Membership
876
885
 
886
+ MembershipPaymentConfiguration.add_member(:query_compute, Shapes::ShapeRef.new(shape: MembershipQueryComputePaymentConfig, required: true, location_name: "queryCompute"))
887
+ MembershipPaymentConfiguration.struct_class = Types::MembershipPaymentConfiguration
888
+
877
889
  MembershipProtectedQueryOutputConfiguration.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3OutputConfiguration, location_name: "s3"))
878
890
  MembershipProtectedQueryOutputConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
879
891
  MembershipProtectedQueryOutputConfiguration.add_member_subclass(:s3, Types::MembershipProtectedQueryOutputConfiguration::S3)
@@ -884,6 +896,9 @@ module Aws::CleanRooms
884
896
  MembershipProtectedQueryResultConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
885
897
  MembershipProtectedQueryResultConfiguration.struct_class = Types::MembershipProtectedQueryResultConfiguration
886
898
 
899
+ MembershipQueryComputePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
900
+ MembershipQueryComputePaymentConfig.struct_class = Types::MembershipQueryComputePaymentConfig
901
+
887
902
  MembershipSummary.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
888
903
  MembershipSummary.add_member(:arn, Shapes::ShapeRef.new(shape: MembershipArn, required: true, location_name: "arn"))
889
904
  MembershipSummary.add_member(:collaboration_arn, Shapes::ShapeRef.new(shape: CollaborationArn, required: true, location_name: "collaborationArn"))
@@ -895,6 +910,7 @@ module Aws::CleanRooms
895
910
  MembershipSummary.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
896
911
  MembershipSummary.add_member(:status, Shapes::ShapeRef.new(shape: MembershipStatus, required: true, location_name: "status"))
897
912
  MembershipSummary.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
913
+ MembershipSummary.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, required: true, location_name: "paymentConfiguration"))
898
914
  MembershipSummary.struct_class = Types::MembershipSummary
899
915
 
900
916
  MembershipSummaryList.member = Shapes::ShapeRef.new(shape: MembershipSummary)
@@ -902,6 +918,9 @@ module Aws::CleanRooms
902
918
  ParameterMap.key = Shapes::ShapeRef.new(shape: ParameterName)
903
919
  ParameterMap.value = Shapes::ShapeRef.new(shape: ParameterValue)
904
920
 
921
+ PaymentConfiguration.add_member(:query_compute, Shapes::ShapeRef.new(shape: QueryComputePaymentConfig, required: true, location_name: "queryCompute"))
922
+ PaymentConfiguration.struct_class = Types::PaymentConfiguration
923
+
905
924
  ProtectedQuery.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
906
925
  ProtectedQuery.add_member(:membership_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "membershipId"))
907
926
  ProtectedQuery.add_member(:membership_arn, Shapes::ShapeRef.new(shape: MembershipArn, required: true, location_name: "membershipArn"))
@@ -968,6 +987,9 @@ module Aws::CleanRooms
968
987
 
969
988
  ProtectedQuerySummaryList.member = Shapes::ShapeRef.new(shape: ProtectedQuerySummary)
970
989
 
990
+ QueryComputePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
991
+ QueryComputePaymentConfig.struct_class = Types::QueryComputePaymentConfig
992
+
971
993
  QueryTables.member = Shapes::ShapeRef.new(shape: TableAlias)
972
994
 
973
995
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -32,7 +32,7 @@ module Aws::CleanRooms
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://cleanrooms-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -1374,6 +1374,15 @@ module Aws::CleanRooms
1374
1374
  # control in IAM policies to control access to this resource.
1375
1375
  # @return [Hash<String,String>]
1376
1376
  #
1377
+ # @!attribute [rw] creator_payment_configuration
1378
+ # The collaboration creator's payment responsibilities set by the
1379
+ # collaboration creator.
1380
+ #
1381
+ # If the collaboration creator hasn't specified anyone as the member
1382
+ # paying for query compute costs, then the member who can query is the
1383
+ # default payer.
1384
+ # @return [Types::PaymentConfiguration]
1385
+ #
1377
1386
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationInput AWS API Documentation
1378
1387
  #
1379
1388
  class CreateCollaborationInput < Struct.new(
@@ -1384,7 +1393,8 @@ module Aws::CleanRooms
1384
1393
  :creator_display_name,
1385
1394
  :data_encryption_metadata,
1386
1395
  :query_log_status,
1387
- :tags)
1396
+ :tags,
1397
+ :creator_payment_configuration)
1388
1398
  SENSITIVE = []
1389
1399
  include Aws::Structure
1390
1400
  end
@@ -1553,7 +1563,7 @@ module Aws::CleanRooms
1553
1563
  #
1554
1564
  # @!attribute [rw] query_log_status
1555
1565
  # An indicator as to whether query logging has been enabled or
1556
- # disabled for the collaboration.
1566
+ # disabled for the membership.
1557
1567
  # @return [String]
1558
1568
  #
1559
1569
  # @!attribute [rw] tags
@@ -1568,13 +1578,25 @@ module Aws::CleanRooms
1568
1578
  # member who can receive results.
1569
1579
  # @return [Types::MembershipProtectedQueryResultConfiguration]
1570
1580
  #
1581
+ # @!attribute [rw] payment_configuration
1582
+ # The payment responsibilities accepted by the collaboration member.
1583
+ #
1584
+ # Not required if the collaboration member has the member ability to
1585
+ # run queries.
1586
+ #
1587
+ # Required if the collaboration member doesn't have the member
1588
+ # ability to run queries but is configured as a payer by the
1589
+ # collaboration creator.
1590
+ # @return [Types::MembershipPaymentConfiguration]
1591
+ #
1571
1592
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembershipInput AWS API Documentation
1572
1593
  #
1573
1594
  class CreateMembershipInput < Struct.new(
1574
1595
  :collaboration_identifier,
1575
1596
  :query_log_status,
1576
1597
  :tags,
1577
- :default_result_configuration)
1598
+ :default_result_configuration,
1599
+ :payment_configuration)
1578
1600
  SENSITIVE = []
1579
1601
  include Aws::Structure
1580
1602
  end
@@ -1594,24 +1616,24 @@ module Aws::CleanRooms
1594
1616
  # The settings for client-side encryption for cryptographic computing.
1595
1617
  #
1596
1618
  # @!attribute [rw] allow_cleartext
1597
- # Indicates whether encrypted tables can contain cleartext data (true)
1598
- # or are to cryptographically process every column (false).
1619
+ # Indicates whether encrypted tables can contain cleartext data
1620
+ # (`TRUE`) or are to cryptographically process every column (`FALSE`).
1599
1621
  # @return [Boolean]
1600
1622
  #
1601
1623
  # @!attribute [rw] allow_duplicates
1602
1624
  # Indicates whether Fingerprint columns can contain duplicate entries
1603
- # (true) or are to contain only non-repeated values (false).
1625
+ # (`TRUE`) or are to contain only non-repeated values (`FALSE`).
1604
1626
  # @return [Boolean]
1605
1627
  #
1606
1628
  # @!attribute [rw] allow_joins_on_columns_with_different_names
1607
1629
  # Indicates whether Fingerprint columns can be joined on any other
1608
- # Fingerprint column with a different name (true) or can only be
1609
- # joined on Fingerprint columns of the same name (false).
1630
+ # Fingerprint column with a different name (`TRUE`) or can only be
1631
+ # joined on Fingerprint columns of the same name (`FALSE`).
1610
1632
  # @return [Boolean]
1611
1633
  #
1612
1634
  # @!attribute [rw] preserve_nulls
1613
1635
  # Indicates whether NULL values are to be copied as NULL to encrypted
1614
- # tables (true) or cryptographically processed (false).
1636
+ # tables (`TRUE`) or cryptographically processed (`FALSE`).
1615
1637
  # @return [Boolean]
1616
1638
  #
1617
1639
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DataEncryptionMetadata AWS API Documentation
@@ -2512,12 +2534,22 @@ module Aws::CleanRooms
2512
2534
  # The member's display name.
2513
2535
  # @return [String]
2514
2536
  #
2537
+ # @!attribute [rw] payment_configuration
2538
+ # The collaboration member's payment responsibilities set by the
2539
+ # collaboration creator.
2540
+ #
2541
+ # If the collaboration creator hasn't specified anyone as the member
2542
+ # paying for query compute costs, then the member who can query is the
2543
+ # default payer.
2544
+ # @return [Types::PaymentConfiguration]
2545
+ #
2515
2546
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MemberSpecification AWS API Documentation
2516
2547
  #
2517
2548
  class MemberSpecification < Struct.new(
2518
2549
  :account_id,
2519
2550
  :member_abilities,
2520
- :display_name)
2551
+ :display_name,
2552
+ :payment_configuration)
2521
2553
  SENSITIVE = []
2522
2554
  include Aws::Structure
2523
2555
  end
@@ -2530,8 +2562,7 @@ module Aws::CleanRooms
2530
2562
  # @return [String]
2531
2563
  #
2532
2564
  # @!attribute [rw] status
2533
- # The status of the member. Valid values are `INVITED`, `ACTIVE`,
2534
- # `LEFT`, and `REMOVED`.
2565
+ # The status of the member.
2535
2566
  # @return [String]
2536
2567
  #
2537
2568
  # @!attribute [rw] display_name
@@ -2558,6 +2589,11 @@ module Aws::CleanRooms
2558
2589
  # The unique ARN for the member's associated membership, if present.
2559
2590
  # @return [String]
2560
2591
  #
2592
+ # @!attribute [rw] payment_configuration
2593
+ # The collaboration member's payment responsibilities set by the
2594
+ # collaboration creator.
2595
+ # @return [Types::PaymentConfiguration]
2596
+ #
2561
2597
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MemberSummary AWS API Documentation
2562
2598
  #
2563
2599
  class MemberSummary < Struct.new(
@@ -2568,7 +2604,8 @@ module Aws::CleanRooms
2568
2604
  :create_time,
2569
2605
  :update_time,
2570
2606
  :membership_id,
2571
- :membership_arn)
2607
+ :membership_arn,
2608
+ :payment_configuration)
2572
2609
  SENSITIVE = []
2573
2610
  include Aws::Structure
2574
2611
  end
@@ -2613,8 +2650,7 @@ module Aws::CleanRooms
2613
2650
  # @return [Time]
2614
2651
  #
2615
2652
  # @!attribute [rw] status
2616
- # The status of the membership. Valid values are `ACTIVE`,
2617
- # `REMOVED`, and `COLLABORATION\_DELETED`.
2653
+ # The status of the membership.
2618
2654
  # @return [String]
2619
2655
  #
2620
2656
  # @!attribute [rw] member_abilities
@@ -2623,7 +2659,7 @@ module Aws::CleanRooms
2623
2659
  #
2624
2660
  # @!attribute [rw] query_log_status
2625
2661
  # An indicator as to whether query logging has been enabled or
2626
- # disabled for the collaboration.
2662
+ # disabled for the membership.
2627
2663
  # @return [String]
2628
2664
  #
2629
2665
  # @!attribute [rw] default_result_configuration
@@ -2631,6 +2667,10 @@ module Aws::CleanRooms
2631
2667
  # member who can receive results.
2632
2668
  # @return [Types::MembershipProtectedQueryResultConfiguration]
2633
2669
  #
2670
+ # @!attribute [rw] payment_configuration
2671
+ # The payment responsibilities accepted by the collaboration member.
2672
+ # @return [Types::MembershipPaymentConfiguration]
2673
+ #
2634
2674
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Membership AWS API Documentation
2635
2675
  #
2636
2676
  class Membership < Struct.new(
@@ -2646,7 +2686,24 @@ module Aws::CleanRooms
2646
2686
  :status,
2647
2687
  :member_abilities,
2648
2688
  :query_log_status,
2649
- :default_result_configuration)
2689
+ :default_result_configuration,
2690
+ :payment_configuration)
2691
+ SENSITIVE = []
2692
+ include Aws::Structure
2693
+ end
2694
+
2695
+ # An object representing the payment responsibilities accepted by the
2696
+ # collaboration member.
2697
+ #
2698
+ # @!attribute [rw] query_compute
2699
+ # The payment responsibilities accepted by the collaboration member
2700
+ # for query compute costs.
2701
+ # @return [Types::MembershipQueryComputePaymentConfig]
2702
+ #
2703
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipPaymentConfiguration AWS API Documentation
2704
+ #
2705
+ class MembershipPaymentConfiguration < Struct.new(
2706
+ :query_compute)
2650
2707
  SENSITIVE = []
2651
2708
  include Aws::Structure
2652
2709
  end
@@ -2695,6 +2752,35 @@ module Aws::CleanRooms
2695
2752
  include Aws::Structure
2696
2753
  end
2697
2754
 
2755
+ # An object representing the payment responsibilities accepted by the
2756
+ # collaboration member for query compute costs.
2757
+ #
2758
+ # @!attribute [rw] is_responsible
2759
+ # Indicates whether the collaboration member has accepted to pay for
2760
+ # query compute costs (`TRUE`) or has not accepted to pay for query
2761
+ # compute costs (`FALSE`).
2762
+ #
2763
+ # If the collaboration creator has not specified anyone to pay for
2764
+ # query compute costs, then the member who can query is the default
2765
+ # payer.
2766
+ #
2767
+ # An error message is returned for the following reasons:
2768
+ #
2769
+ # * If you set the value to `FALSE` but you are responsible to pay for
2770
+ # query compute costs.
2771
+ #
2772
+ # * If you set the value to `TRUE` but you are not responsible to pay
2773
+ # for query compute costs.
2774
+ # @return [Boolean]
2775
+ #
2776
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipQueryComputePaymentConfig AWS API Documentation
2777
+ #
2778
+ class MembershipQueryComputePaymentConfig < Struct.new(
2779
+ :is_responsible)
2780
+ SENSITIVE = []
2781
+ include Aws::Structure
2782
+ end
2783
+
2698
2784
  # The membership object listed by the request.
2699
2785
  #
2700
2786
  # @!attribute [rw] id
@@ -2736,14 +2822,17 @@ module Aws::CleanRooms
2736
2822
  # @return [Time]
2737
2823
  #
2738
2824
  # @!attribute [rw] status
2739
- # The status of the membership. Valid values are `ACTIVE`,
2740
- # `REMOVED`, and `COLLABORATION\_DELETED`.
2825
+ # The status of the membership.
2741
2826
  # @return [String]
2742
2827
  #
2743
2828
  # @!attribute [rw] member_abilities
2744
2829
  # The abilities granted to the collaboration member.
2745
2830
  # @return [Array<String>]
2746
2831
  #
2832
+ # @!attribute [rw] payment_configuration
2833
+ # The payment responsibilities accepted by the collaboration member.
2834
+ # @return [Types::MembershipPaymentConfiguration]
2835
+ #
2747
2836
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/MembershipSummary AWS API Documentation
2748
2837
  #
2749
2838
  class MembershipSummary < Struct.new(
@@ -2757,7 +2846,24 @@ module Aws::CleanRooms
2757
2846
  :create_time,
2758
2847
  :update_time,
2759
2848
  :status,
2760
- :member_abilities)
2849
+ :member_abilities,
2850
+ :payment_configuration)
2851
+ SENSITIVE = []
2852
+ include Aws::Structure
2853
+ end
2854
+
2855
+ # An object representing the collaboration member's payment
2856
+ # responsibilities set by the collaboration creator.
2857
+ #
2858
+ # @!attribute [rw] query_compute
2859
+ # The collaboration member's payment responsibilities set by the
2860
+ # collaboration creator for query compute costs.
2861
+ # @return [Types::QueryComputePaymentConfig]
2862
+ #
2863
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PaymentConfiguration AWS API Documentation
2864
+ #
2865
+ class PaymentConfiguration < Struct.new(
2866
+ :query_compute)
2761
2867
  SENSITIVE = []
2762
2868
  include Aws::Structure
2763
2869
  end
@@ -3052,6 +3158,34 @@ module Aws::CleanRooms
3052
3158
  include Aws::Structure
3053
3159
  end
3054
3160
 
3161
+ # An object representing the collaboration member's payment
3162
+ # responsibilities set by the collaboration creator for query compute
3163
+ # costs.
3164
+ #
3165
+ # @!attribute [rw] is_responsible
3166
+ # Indicates whether the collaboration creator has configured the
3167
+ # collaboration member to pay for query compute costs (`TRUE`) or has
3168
+ # not configured the collaboration member to pay for query compute
3169
+ # costs (`FALSE`).
3170
+ #
3171
+ # Exactly one member can be configured to pay for query compute costs.
3172
+ # An error is returned if the collaboration creator sets a `TRUE`
3173
+ # value for more than one member in the collaboration.
3174
+ #
3175
+ # If the collaboration creator hasn't specified anyone as the member
3176
+ # paying for query compute costs, then the member who can query is the
3177
+ # default payer. An error is returned if the collaboration creator
3178
+ # sets a `FALSE` value for the member who can query.
3179
+ # @return [Boolean]
3180
+ #
3181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/QueryComputePaymentConfig AWS API Documentation
3182
+ #
3183
+ class QueryComputePaymentConfig < Struct.new(
3184
+ :is_responsible)
3185
+ SENSITIVE = []
3186
+ include Aws::Structure
3187
+ end
3188
+
3055
3189
  # Request references a resource which does not exist.
3056
3190
  #
3057
3191
  # @!attribute [rw] message
@@ -3540,7 +3674,7 @@ module Aws::CleanRooms
3540
3674
  #
3541
3675
  # @!attribute [rw] query_log_status
3542
3676
  # An indicator as to whether query logging has been enabled or
3543
- # disabled for the collaboration.
3677
+ # disabled for the membership.
3544
3678
  # @return [String]
3545
3679
  #
3546
3680
  # @!attribute [rw] default_result_configuration
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cleanrooms/customizations'
53
53
  # @!group service
54
54
  module Aws::CleanRooms
55
55
 
56
- GEM_VERSION = '1.11.0'
56
+ GEM_VERSION = '1.12.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cleanrooms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core