aws-sdk-cleanrooms 1.35.0 → 1.37.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: 353aa69cbcc60bad7239e5834b4905703e83418a92f57290b8b47c3e04375280
4
- data.tar.gz: 13e259164fa0b6c509525b6969e51497d73af83c5a7e72ce10b383ce41b37a24
3
+ metadata.gz: 20375ec42c8a186f57943e6ba22d1def9130eaa71aa2ff759e4e7b55ab387226
4
+ data.tar.gz: f240293dd123147a54c202459b9d4b891787db49b485293eb71afc8ef71d4613
5
5
  SHA512:
6
- metadata.gz: e424fbf34294605e868eb032f22fe578d1d9c2464646450a2cae616625ac49df8ef36e02e1259e0d9ff594aee8e6e63f992cbfd20db1e8c6c72a83330cbd920f
7
- data.tar.gz: 2d7deaa2238430f071bc1a3cc7cd958d242049bf8c2386b13c39b6d6c33c2d730bc75e23cc01f419cc088f5bc030c590150091e5cd1dc92282444ebba37b68d8
6
+ metadata.gz: 793c1a214eaaf4d3ca7f3db76c48ef9a64fc9d9581855ac83c15cd8fecbdeb994632dd29fdd1b50ab4da790b4f608c75e5f20c5984c57ec05662667fd2f4ccc8
7
+ data.tar.gz: faa88d04408519256657e7f5bd1488951d1708e8c26df5702b1e6ff30e5aa6ec184be23be7eb81af7ac654861af7a1579e94f18b35fb1e37f921c994ea6347a2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2024-12-02)
5
+ ------------------
6
+
7
+ * Feature - This release allows customers and their partners to easily collaborate with data stored in Snowflake and Amazon Athena, without having to move or share their underlying data among collaborators.
8
+
9
+ 1.36.0 (2024-11-07)
10
+ ------------------
11
+
12
+ * Feature - This release introduces support for Custom Models in AWS Clean Rooms ML.
13
+
4
14
  1.35.0 (2024-10-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.37.0
@@ -770,6 +770,17 @@ module Aws::CleanRooms
770
770
  # @option params [required, Array<String>] :creator_member_abilities
771
771
  # The abilities granted to the collaboration creator.
772
772
  #
773
+ # @option params [Types::MLMemberAbilities] :creator_ml_member_abilities
774
+ # The ML abilities granted to the collaboration creator.
775
+ #
776
+ # Custom ML modeling is in beta release and is subject to change. For
777
+ # beta terms and conditions, see *Betas and Previews* in the [Amazon Web
778
+ # Services Service Terms][1].
779
+ #
780
+ #
781
+ #
782
+ # [1]: https://aws.amazon.com/service-terms/
783
+ #
773
784
  # @option params [required, String] :creator_display_name
774
785
  # The display name of the collaboration creator.
775
786
  #
@@ -809,17 +820,31 @@ module Aws::CleanRooms
809
820
  # {
810
821
  # account_id: "AccountId", # required
811
822
  # member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS
823
+ # ml_member_abilities: {
824
+ # custom_ml_member_abilities: ["CAN_RECEIVE_MODEL_OUTPUT"], # required, accepts CAN_RECEIVE_MODEL_OUTPUT, CAN_RECEIVE_INFERENCE_OUTPUT
825
+ # },
812
826
  # display_name: "DisplayName", # required
813
827
  # payment_configuration: {
814
828
  # query_compute: { # required
815
829
  # is_responsible: false, # required
816
830
  # },
831
+ # machine_learning: {
832
+ # model_training: {
833
+ # is_responsible: false, # required
834
+ # },
835
+ # model_inference: {
836
+ # is_responsible: false, # required
837
+ # },
838
+ # },
817
839
  # },
818
840
  # },
819
841
  # ],
820
842
  # name: "CollaborationName", # required
821
843
  # description: "CollaborationDescription", # required
822
844
  # creator_member_abilities: ["CAN_QUERY"], # required, accepts CAN_QUERY, CAN_RECEIVE_RESULTS
845
+ # creator_ml_member_abilities: {
846
+ # custom_ml_member_abilities: ["CAN_RECEIVE_MODEL_OUTPUT"], # required, accepts CAN_RECEIVE_MODEL_OUTPUT, CAN_RECEIVE_INFERENCE_OUTPUT
847
+ # },
823
848
  # creator_display_name: "DisplayName", # required
824
849
  # data_encryption_metadata: {
825
850
  # allow_cleartext: false, # required
@@ -835,6 +860,14 @@ module Aws::CleanRooms
835
860
  # query_compute: { # required
836
861
  # is_responsible: false, # required
837
862
  # },
863
+ # machine_learning: {
864
+ # model_training: {
865
+ # is_responsible: false, # required
866
+ # },
867
+ # model_inference: {
868
+ # is_responsible: false, # required
869
+ # },
870
+ # },
838
871
  # },
839
872
  # analytics_engine: "SPARK", # accepts SPARK, CLEAN_ROOMS_SQL
840
873
  # })
@@ -956,7 +989,7 @@ module Aws::CleanRooms
956
989
  # A description for the configured table.
957
990
  #
958
991
  # @option params [required, Types::TableReference] :table_reference
959
- # A reference to the Glue table being configured.
992
+ # A reference to the table being configured.
960
993
  #
961
994
  # @option params [required, Array<String>] :allowed_columns
962
995
  # The columns of the underlying table that can be used by collaborations
@@ -986,6 +1019,27 @@ module Aws::CleanRooms
986
1019
  # table_name: "GlueTableName", # required
987
1020
  # database_name: "GlueDatabaseName", # required
988
1021
  # },
1022
+ # snowflake: {
1023
+ # secret_arn: "SecretsManagerArn", # required
1024
+ # account_identifier: "SnowflakeAccountIdentifier", # required
1025
+ # database_name: "SnowflakeDatabaseName", # required
1026
+ # table_name: "SnowflakeTableName", # required
1027
+ # schema_name: "SnowflakeSchemaName", # required
1028
+ # table_schema: { # required
1029
+ # v1: [
1030
+ # {
1031
+ # column_name: "ColumnName", # required
1032
+ # column_type: "ColumnTypeString", # required
1033
+ # },
1034
+ # ],
1035
+ # },
1036
+ # },
1037
+ # athena: {
1038
+ # work_group: "AthenaWorkGroup", # required
1039
+ # output_location: "AthenaOutputLocation",
1040
+ # database_name: "AthenaDatabaseName", # required
1041
+ # table_name: "AthenaTableName", # required
1042
+ # },
989
1043
  # },
990
1044
  # allowed_columns: ["ColumnName"], # required
991
1045
  # analysis_method: "DIRECT_QUERY", # required, accepts DIRECT_QUERY
@@ -1002,6 +1056,18 @@ module Aws::CleanRooms
1002
1056
  # resp.configured_table.description #=> String
1003
1057
  # resp.configured_table.table_reference.glue.table_name #=> String
1004
1058
  # resp.configured_table.table_reference.glue.database_name #=> String
1059
+ # resp.configured_table.table_reference.snowflake.secret_arn #=> String
1060
+ # resp.configured_table.table_reference.snowflake.account_identifier #=> String
1061
+ # resp.configured_table.table_reference.snowflake.database_name #=> String
1062
+ # resp.configured_table.table_reference.snowflake.table_name #=> String
1063
+ # resp.configured_table.table_reference.snowflake.schema_name #=> String
1064
+ # resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
1065
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
1066
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
1067
+ # resp.configured_table.table_reference.athena.work_group #=> String
1068
+ # resp.configured_table.table_reference.athena.output_location #=> String
1069
+ # resp.configured_table.table_reference.athena.database_name #=> String
1070
+ # resp.configured_table.table_reference.athena.table_name #=> String
1005
1071
  # resp.configured_table.create_time #=> Time
1006
1072
  # resp.configured_table.update_time #=> Time
1007
1073
  # resp.configured_table.analysis_rule_types #=> Array
@@ -1490,6 +1556,14 @@ module Aws::CleanRooms
1490
1556
  # query_compute: { # required
1491
1557
  # is_responsible: false, # required
1492
1558
  # },
1559
+ # machine_learning: {
1560
+ # model_training: {
1561
+ # is_responsible: false, # required
1562
+ # },
1563
+ # model_inference: {
1564
+ # is_responsible: false, # required
1565
+ # },
1566
+ # },
1493
1567
  # },
1494
1568
  # })
1495
1569
  #
@@ -1507,6 +1581,8 @@ module Aws::CleanRooms
1507
1581
  # resp.membership.status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
1508
1582
  # resp.membership.member_abilities #=> Array
1509
1583
  # resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
1584
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities #=> Array
1585
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
1510
1586
  # resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
1511
1587
  # resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
1512
1588
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
@@ -1514,6 +1590,8 @@ module Aws::CleanRooms
1514
1590
  # resp.membership.default_result_configuration.output_configuration.s3.single_file_output #=> Boolean
1515
1591
  # resp.membership.default_result_configuration.role_arn #=> String
1516
1592
  # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
1593
+ # resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
1594
+ # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
1517
1595
  #
1518
1596
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateMembership AWS API Documentation
1519
1597
  #
@@ -2280,6 +2358,18 @@ module Aws::CleanRooms
2280
2358
  # resp.configured_table.description #=> String
2281
2359
  # resp.configured_table.table_reference.glue.table_name #=> String
2282
2360
  # resp.configured_table.table_reference.glue.database_name #=> String
2361
+ # resp.configured_table.table_reference.snowflake.secret_arn #=> String
2362
+ # resp.configured_table.table_reference.snowflake.account_identifier #=> String
2363
+ # resp.configured_table.table_reference.snowflake.database_name #=> String
2364
+ # resp.configured_table.table_reference.snowflake.table_name #=> String
2365
+ # resp.configured_table.table_reference.snowflake.schema_name #=> String
2366
+ # resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
2367
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
2368
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
2369
+ # resp.configured_table.table_reference.athena.work_group #=> String
2370
+ # resp.configured_table.table_reference.athena.output_location #=> String
2371
+ # resp.configured_table.table_reference.athena.database_name #=> String
2372
+ # resp.configured_table.table_reference.athena.table_name #=> String
2283
2373
  # resp.configured_table.create_time #=> Time
2284
2374
  # resp.configured_table.update_time #=> Time
2285
2375
  # resp.configured_table.analysis_rule_types #=> Array
@@ -2597,6 +2687,8 @@ module Aws::CleanRooms
2597
2687
  # resp.membership.status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
2598
2688
  # resp.membership.member_abilities #=> Array
2599
2689
  # resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
2690
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities #=> Array
2691
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
2600
2692
  # resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
2601
2693
  # resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
2602
2694
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
@@ -2604,6 +2696,8 @@ module Aws::CleanRooms
2604
2696
  # resp.membership.default_result_configuration.output_configuration.s3.single_file_output #=> Boolean
2605
2697
  # resp.membership.default_result_configuration.role_arn #=> String
2606
2698
  # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
2699
+ # resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
2700
+ # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
2607
2701
  #
2608
2702
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembership AWS API Documentation
2609
2703
  #
@@ -3552,11 +3646,15 @@ module Aws::CleanRooms
3552
3646
  # resp.member_summaries[0].display_name #=> String
3553
3647
  # resp.member_summaries[0].abilities #=> Array
3554
3648
  # resp.member_summaries[0].abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
3649
+ # resp.member_summaries[0].ml_abilities.custom_ml_member_abilities #=> Array
3650
+ # resp.member_summaries[0].ml_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
3555
3651
  # resp.member_summaries[0].create_time #=> Time
3556
3652
  # resp.member_summaries[0].update_time #=> Time
3557
3653
  # resp.member_summaries[0].membership_id #=> String
3558
3654
  # resp.member_summaries[0].membership_arn #=> String
3559
3655
  # resp.member_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
3656
+ # resp.member_summaries[0].payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
3657
+ # resp.member_summaries[0].payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
3560
3658
  #
3561
3659
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembers AWS API Documentation
3562
3660
  #
@@ -3612,7 +3710,11 @@ module Aws::CleanRooms
3612
3710
  # resp.membership_summaries[0].status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
3613
3711
  # resp.membership_summaries[0].member_abilities #=> Array
3614
3712
  # resp.membership_summaries[0].member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
3713
+ # resp.membership_summaries[0].ml_member_abilities.custom_ml_member_abilities #=> Array
3714
+ # resp.membership_summaries[0].ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
3615
3715
  # resp.membership_summaries[0].payment_configuration.query_compute.is_responsible #=> Boolean
3716
+ # resp.membership_summaries[0].payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
3717
+ # resp.membership_summaries[0].payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
3616
3718
  #
3617
3719
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMemberships AWS API Documentation
3618
3720
  #
@@ -4313,6 +4415,18 @@ module Aws::CleanRooms
4313
4415
  # resp.configured_table.description #=> String
4314
4416
  # resp.configured_table.table_reference.glue.table_name #=> String
4315
4417
  # resp.configured_table.table_reference.glue.database_name #=> String
4418
+ # resp.configured_table.table_reference.snowflake.secret_arn #=> String
4419
+ # resp.configured_table.table_reference.snowflake.account_identifier #=> String
4420
+ # resp.configured_table.table_reference.snowflake.database_name #=> String
4421
+ # resp.configured_table.table_reference.snowflake.table_name #=> String
4422
+ # resp.configured_table.table_reference.snowflake.schema_name #=> String
4423
+ # resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
4424
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
4425
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
4426
+ # resp.configured_table.table_reference.athena.work_group #=> String
4427
+ # resp.configured_table.table_reference.athena.output_location #=> String
4428
+ # resp.configured_table.table_reference.athena.database_name #=> String
4429
+ # resp.configured_table.table_reference.athena.table_name #=> String
4316
4430
  # resp.configured_table.create_time #=> Time
4317
4431
  # resp.configured_table.update_time #=> Time
4318
4432
  # resp.configured_table.analysis_rule_types #=> Array
@@ -4746,6 +4860,8 @@ module Aws::CleanRooms
4746
4860
  # resp.membership.status #=> String, one of "ACTIVE", "REMOVED", "COLLABORATION_DELETED"
4747
4861
  # resp.membership.member_abilities #=> Array
4748
4862
  # resp.membership.member_abilities[0] #=> String, one of "CAN_QUERY", "CAN_RECEIVE_RESULTS"
4863
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities #=> Array
4864
+ # resp.membership.ml_member_abilities.custom_ml_member_abilities[0] #=> String, one of "CAN_RECEIVE_MODEL_OUTPUT", "CAN_RECEIVE_INFERENCE_OUTPUT"
4749
4865
  # resp.membership.query_log_status #=> String, one of "ENABLED", "DISABLED"
4750
4866
  # resp.membership.default_result_configuration.output_configuration.s3.result_format #=> String, one of "CSV", "PARQUET"
4751
4867
  # resp.membership.default_result_configuration.output_configuration.s3.bucket #=> String
@@ -4753,6 +4869,8 @@ module Aws::CleanRooms
4753
4869
  # resp.membership.default_result_configuration.output_configuration.s3.single_file_output #=> Boolean
4754
4870
  # resp.membership.default_result_configuration.role_arn #=> String
4755
4871
  # resp.membership.payment_configuration.query_compute.is_responsible #=> Boolean
4872
+ # resp.membership.payment_configuration.machine_learning.model_training.is_responsible #=> Boolean
4873
+ # resp.membership.payment_configuration.machine_learning.model_inference.is_responsible #=> Boolean
4756
4874
  #
4757
4875
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateMembership AWS API Documentation
4758
4876
  #
@@ -4906,7 +5024,7 @@ module Aws::CleanRooms
4906
5024
  tracer: tracer
4907
5025
  )
4908
5026
  context[:gem_name] = 'aws-sdk-cleanrooms'
4909
- context[:gem_version] = '1.35.0'
5027
+ context[:gem_version] = '1.37.0'
4910
5028
  Seahorse::Client::Request.new(handlers, context)
4911
5029
  end
4912
5030
 
@@ -67,6 +67,11 @@ module Aws::CleanRooms
67
67
  AnalysisTemplateValidationType = Shapes::StringShape.new(name: 'AnalysisTemplateValidationType')
68
68
  AnalysisType = Shapes::StringShape.new(name: 'AnalysisType')
69
69
  AnalyticsEngine = Shapes::StringShape.new(name: 'AnalyticsEngine')
70
+ AthenaDatabaseName = Shapes::StringShape.new(name: 'AthenaDatabaseName')
71
+ AthenaOutputLocation = Shapes::StringShape.new(name: 'AthenaOutputLocation')
72
+ AthenaTableName = Shapes::StringShape.new(name: 'AthenaTableName')
73
+ AthenaTableReference = Shapes::StructureShape.new(name: 'AthenaTableReference')
74
+ AthenaWorkGroup = Shapes::StringShape.new(name: 'AthenaWorkGroup')
70
75
  BatchGetCollaborationAnalysisTemplateError = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateError')
71
76
  BatchGetCollaborationAnalysisTemplateErrorList = Shapes::ListShape.new(name: 'BatchGetCollaborationAnalysisTemplateErrorList')
72
77
  BatchGetCollaborationAnalysisTemplateInput = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateInput')
@@ -165,6 +170,8 @@ module Aws::CleanRooms
165
170
  CreateMembershipOutput = Shapes::StructureShape.new(name: 'CreateMembershipOutput')
166
171
  CreatePrivacyBudgetTemplateInput = Shapes::StructureShape.new(name: 'CreatePrivacyBudgetTemplateInput')
167
172
  CreatePrivacyBudgetTemplateOutput = Shapes::StructureShape.new(name: 'CreatePrivacyBudgetTemplateOutput')
173
+ CustomMLMemberAbilities = Shapes::ListShape.new(name: 'CustomMLMemberAbilities')
174
+ CustomMLMemberAbility = Shapes::StringShape.new(name: 'CustomMLMemberAbility')
168
175
  DataEncryptionMetadata = Shapes::StructureShape.new(name: 'DataEncryptionMetadata')
169
176
  DeleteAnalysisTemplateInput = Shapes::StructureShape.new(name: 'DeleteAnalysisTemplateInput')
170
177
  DeleteAnalysisTemplateOutput = Shapes::StructureShape.new(name: 'DeleteAnalysisTemplateOutput')
@@ -326,6 +333,8 @@ module Aws::CleanRooms
326
333
  ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
327
334
  ListTagsForResourceOutput = Shapes::StructureShape.new(name: 'ListTagsForResourceOutput')
328
335
  Long = Shapes::IntegerShape.new(name: 'Long')
336
+ MLMemberAbilities = Shapes::StructureShape.new(name: 'MLMemberAbilities')
337
+ MLPaymentConfig = Shapes::StructureShape.new(name: 'MLPaymentConfig')
329
338
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
330
339
  MemberAbilities = Shapes::ListShape.new(name: 'MemberAbilities')
331
340
  MemberAbility = Shapes::StringShape.new(name: 'MemberAbility')
@@ -337,6 +346,9 @@ module Aws::CleanRooms
337
346
  Membership = Shapes::StructureShape.new(name: 'Membership')
338
347
  MembershipArn = Shapes::StringShape.new(name: 'MembershipArn')
339
348
  MembershipIdentifier = Shapes::StringShape.new(name: 'MembershipIdentifier')
349
+ MembershipMLPaymentConfig = Shapes::StructureShape.new(name: 'MembershipMLPaymentConfig')
350
+ MembershipModelInferencePaymentConfig = Shapes::StructureShape.new(name: 'MembershipModelInferencePaymentConfig')
351
+ MembershipModelTrainingPaymentConfig = Shapes::StructureShape.new(name: 'MembershipModelTrainingPaymentConfig')
340
352
  MembershipPaymentConfiguration = Shapes::StructureShape.new(name: 'MembershipPaymentConfiguration')
341
353
  MembershipProtectedQueryOutputConfiguration = Shapes::UnionShape.new(name: 'MembershipProtectedQueryOutputConfiguration')
342
354
  MembershipProtectedQueryResultConfiguration = Shapes::StructureShape.new(name: 'MembershipProtectedQueryResultConfiguration')
@@ -345,6 +357,8 @@ module Aws::CleanRooms
345
357
  MembershipStatus = Shapes::StringShape.new(name: 'MembershipStatus')
346
358
  MembershipSummary = Shapes::StructureShape.new(name: 'MembershipSummary')
347
359
  MembershipSummaryList = Shapes::ListShape.new(name: 'MembershipSummaryList')
360
+ ModelInferencePaymentConfig = Shapes::StructureShape.new(name: 'ModelInferencePaymentConfig')
361
+ ModelTrainingPaymentConfig = Shapes::StructureShape.new(name: 'ModelTrainingPaymentConfig')
348
362
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
349
363
  ParameterMap = Shapes::MapShape.new(name: 'ParameterMap')
350
364
  ParameterName = Shapes::StringShape.new(name: 'ParameterName')
@@ -423,7 +437,16 @@ module Aws::CleanRooms
423
437
  SchemaSummaryList = Shapes::ListShape.new(name: 'SchemaSummaryList')
424
438
  SchemaType = Shapes::StringShape.new(name: 'SchemaType')
425
439
  SchemaTypeProperties = Shapes::UnionShape.new(name: 'SchemaTypeProperties')
440
+ SecretsManagerArn = Shapes::StringShape.new(name: 'SecretsManagerArn')
426
441
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
442
+ SnowflakeAccountIdentifier = Shapes::StringShape.new(name: 'SnowflakeAccountIdentifier')
443
+ SnowflakeDatabaseName = Shapes::StringShape.new(name: 'SnowflakeDatabaseName')
444
+ SnowflakeSchemaName = Shapes::StringShape.new(name: 'SnowflakeSchemaName')
445
+ SnowflakeTableName = Shapes::StringShape.new(name: 'SnowflakeTableName')
446
+ SnowflakeTableReference = Shapes::StructureShape.new(name: 'SnowflakeTableReference')
447
+ SnowflakeTableSchema = Shapes::UnionShape.new(name: 'SnowflakeTableSchema')
448
+ SnowflakeTableSchemaList = Shapes::ListShape.new(name: 'SnowflakeTableSchemaList')
449
+ SnowflakeTableSchemaV1 = Shapes::StructureShape.new(name: 'SnowflakeTableSchemaV1')
427
450
  StartProtectedQueryInput = Shapes::StructureShape.new(name: 'StartProtectedQueryInput')
428
451
  StartProtectedQueryOutput = Shapes::StructureShape.new(name: 'StartProtectedQueryOutput')
429
452
  String = Shapes::StringShape.new(name: 'String')
@@ -628,6 +651,12 @@ module Aws::CleanRooms
628
651
 
629
652
  AnalysisTemplateValidationStatusReasonList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusReason)
630
653
 
654
+ AthenaTableReference.add_member(:work_group, Shapes::ShapeRef.new(shape: AthenaWorkGroup, required: true, location_name: "workGroup"))
655
+ AthenaTableReference.add_member(:output_location, Shapes::ShapeRef.new(shape: AthenaOutputLocation, location_name: "outputLocation"))
656
+ AthenaTableReference.add_member(:database_name, Shapes::ShapeRef.new(shape: AthenaDatabaseName, required: true, location_name: "databaseName"))
657
+ AthenaTableReference.add_member(:table_name, Shapes::ShapeRef.new(shape: AthenaTableName, required: true, location_name: "tableName"))
658
+ AthenaTableReference.struct_class = Types::AthenaTableReference
659
+
631
660
  BatchGetCollaborationAnalysisTemplateError.add_member(:arn, Shapes::ShapeRef.new(shape: AnalysisTemplateArn, required: true, location_name: "arn"))
632
661
  BatchGetCollaborationAnalysisTemplateError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
633
662
  BatchGetCollaborationAnalysisTemplateError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -1014,6 +1043,7 @@ module Aws::CleanRooms
1014
1043
  CreateCollaborationInput.add_member(:name, Shapes::ShapeRef.new(shape: CollaborationName, required: true, location_name: "name"))
1015
1044
  CreateCollaborationInput.add_member(:description, Shapes::ShapeRef.new(shape: CollaborationDescription, required: true, location_name: "description"))
1016
1045
  CreateCollaborationInput.add_member(:creator_member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "creatorMemberAbilities"))
1046
+ CreateCollaborationInput.add_member(:creator_ml_member_abilities, Shapes::ShapeRef.new(shape: MLMemberAbilities, location_name: "creatorMLMemberAbilities"))
1017
1047
  CreateCollaborationInput.add_member(:creator_display_name, Shapes::ShapeRef.new(shape: DisplayName, required: true, location_name: "creatorDisplayName"))
1018
1048
  CreateCollaborationInput.add_member(:data_encryption_metadata, Shapes::ShapeRef.new(shape: DataEncryptionMetadata, location_name: "dataEncryptionMetadata"))
1019
1049
  CreateCollaborationInput.add_member(:query_log_status, Shapes::ShapeRef.new(shape: CollaborationQueryLogStatus, required: true, location_name: "queryLogStatus"))
@@ -1117,6 +1147,8 @@ module Aws::CleanRooms
1117
1147
  CreatePrivacyBudgetTemplateOutput.add_member(:privacy_budget_template, Shapes::ShapeRef.new(shape: PrivacyBudgetTemplate, required: true, location_name: "privacyBudgetTemplate"))
1118
1148
  CreatePrivacyBudgetTemplateOutput.struct_class = Types::CreatePrivacyBudgetTemplateOutput
1119
1149
 
1150
+ CustomMLMemberAbilities.member = Shapes::ShapeRef.new(shape: CustomMLMemberAbility)
1151
+
1120
1152
  DataEncryptionMetadata.add_member(:allow_cleartext, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "allowCleartext"))
1121
1153
  DataEncryptionMetadata.add_member(:allow_duplicates, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "allowDuplicates"))
1122
1154
  DataEncryptionMetadata.add_member(:allow_joins_on_columns_with_different_names, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "allowJoinsOnColumnsWithDifferentNames"))
@@ -1650,12 +1682,20 @@ module Aws::CleanRooms
1650
1682
  ListTagsForResourceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "tags"))
1651
1683
  ListTagsForResourceOutput.struct_class = Types::ListTagsForResourceOutput
1652
1684
 
1685
+ MLMemberAbilities.add_member(:custom_ml_member_abilities, Shapes::ShapeRef.new(shape: CustomMLMemberAbilities, required: true, location_name: "customMLMemberAbilities"))
1686
+ MLMemberAbilities.struct_class = Types::MLMemberAbilities
1687
+
1688
+ MLPaymentConfig.add_member(:model_training, Shapes::ShapeRef.new(shape: ModelTrainingPaymentConfig, location_name: "modelTraining"))
1689
+ MLPaymentConfig.add_member(:model_inference, Shapes::ShapeRef.new(shape: ModelInferencePaymentConfig, location_name: "modelInference"))
1690
+ MLPaymentConfig.struct_class = Types::MLPaymentConfig
1691
+
1653
1692
  MemberAbilities.member = Shapes::ShapeRef.new(shape: MemberAbility)
1654
1693
 
1655
1694
  MemberList.member = Shapes::ShapeRef.new(shape: MemberSpecification)
1656
1695
 
1657
1696
  MemberSpecification.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "accountId"))
1658
1697
  MemberSpecification.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
1698
+ MemberSpecification.add_member(:ml_member_abilities, Shapes::ShapeRef.new(shape: MLMemberAbilities, location_name: "mlMemberAbilities"))
1659
1699
  MemberSpecification.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, required: true, location_name: "displayName"))
1660
1700
  MemberSpecification.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: PaymentConfiguration, location_name: "paymentConfiguration"))
1661
1701
  MemberSpecification.struct_class = Types::MemberSpecification
@@ -1664,6 +1704,7 @@ module Aws::CleanRooms
1664
1704
  MemberSummary.add_member(:status, Shapes::ShapeRef.new(shape: MemberStatus, required: true, location_name: "status"))
1665
1705
  MemberSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, required: true, location_name: "displayName"))
1666
1706
  MemberSummary.add_member(:abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "abilities"))
1707
+ MemberSummary.add_member(:ml_abilities, Shapes::ShapeRef.new(shape: MLMemberAbilities, location_name: "mlAbilities"))
1667
1708
  MemberSummary.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createTime"))
1668
1709
  MemberSummary.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
1669
1710
  MemberSummary.add_member(:membership_id, Shapes::ShapeRef.new(shape: UUID, location_name: "membershipId"))
@@ -1684,12 +1725,24 @@ module Aws::CleanRooms
1684
1725
  Membership.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
1685
1726
  Membership.add_member(:status, Shapes::ShapeRef.new(shape: MembershipStatus, required: true, location_name: "status"))
1686
1727
  Membership.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
1728
+ Membership.add_member(:ml_member_abilities, Shapes::ShapeRef.new(shape: MLMemberAbilities, location_name: "mlMemberAbilities"))
1687
1729
  Membership.add_member(:query_log_status, Shapes::ShapeRef.new(shape: MembershipQueryLogStatus, required: true, location_name: "queryLogStatus"))
1688
1730
  Membership.add_member(:default_result_configuration, Shapes::ShapeRef.new(shape: MembershipProtectedQueryResultConfiguration, location_name: "defaultResultConfiguration"))
1689
1731
  Membership.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, required: true, location_name: "paymentConfiguration"))
1690
1732
  Membership.struct_class = Types::Membership
1691
1733
 
1734
+ MembershipMLPaymentConfig.add_member(:model_training, Shapes::ShapeRef.new(shape: MembershipModelTrainingPaymentConfig, location_name: "modelTraining"))
1735
+ MembershipMLPaymentConfig.add_member(:model_inference, Shapes::ShapeRef.new(shape: MembershipModelInferencePaymentConfig, location_name: "modelInference"))
1736
+ MembershipMLPaymentConfig.struct_class = Types::MembershipMLPaymentConfig
1737
+
1738
+ MembershipModelInferencePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
1739
+ MembershipModelInferencePaymentConfig.struct_class = Types::MembershipModelInferencePaymentConfig
1740
+
1741
+ MembershipModelTrainingPaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
1742
+ MembershipModelTrainingPaymentConfig.struct_class = Types::MembershipModelTrainingPaymentConfig
1743
+
1692
1744
  MembershipPaymentConfiguration.add_member(:query_compute, Shapes::ShapeRef.new(shape: MembershipQueryComputePaymentConfig, required: true, location_name: "queryCompute"))
1745
+ MembershipPaymentConfiguration.add_member(:machine_learning, Shapes::ShapeRef.new(shape: MembershipMLPaymentConfig, location_name: "machineLearning"))
1693
1746
  MembershipPaymentConfiguration.struct_class = Types::MembershipPaymentConfiguration
1694
1747
 
1695
1748
  MembershipProtectedQueryOutputConfiguration.add_member(:s3, Shapes::ShapeRef.new(shape: ProtectedQueryS3OutputConfiguration, location_name: "s3"))
@@ -1716,15 +1769,23 @@ module Aws::CleanRooms
1716
1769
  MembershipSummary.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateTime"))
1717
1770
  MembershipSummary.add_member(:status, Shapes::ShapeRef.new(shape: MembershipStatus, required: true, location_name: "status"))
1718
1771
  MembershipSummary.add_member(:member_abilities, Shapes::ShapeRef.new(shape: MemberAbilities, required: true, location_name: "memberAbilities"))
1772
+ MembershipSummary.add_member(:ml_member_abilities, Shapes::ShapeRef.new(shape: MLMemberAbilities, location_name: "mlMemberAbilities"))
1719
1773
  MembershipSummary.add_member(:payment_configuration, Shapes::ShapeRef.new(shape: MembershipPaymentConfiguration, required: true, location_name: "paymentConfiguration"))
1720
1774
  MembershipSummary.struct_class = Types::MembershipSummary
1721
1775
 
1722
1776
  MembershipSummaryList.member = Shapes::ShapeRef.new(shape: MembershipSummary)
1723
1777
 
1778
+ ModelInferencePaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
1779
+ ModelInferencePaymentConfig.struct_class = Types::ModelInferencePaymentConfig
1780
+
1781
+ ModelTrainingPaymentConfig.add_member(:is_responsible, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isResponsible"))
1782
+ ModelTrainingPaymentConfig.struct_class = Types::ModelTrainingPaymentConfig
1783
+
1724
1784
  ParameterMap.key = Shapes::ShapeRef.new(shape: ParameterName)
1725
1785
  ParameterMap.value = Shapes::ShapeRef.new(shape: ParameterValue)
1726
1786
 
1727
1787
  PaymentConfiguration.add_member(:query_compute, Shapes::ShapeRef.new(shape: QueryComputePaymentConfig, required: true, location_name: "queryCompute"))
1788
+ PaymentConfiguration.add_member(:machine_learning, Shapes::ShapeRef.new(shape: MLPaymentConfig, location_name: "machineLearning"))
1728
1789
  PaymentConfiguration.struct_class = Types::PaymentConfiguration
1729
1790
 
1730
1791
  PopulateIdMappingTableInput.add_member(:id_mapping_table_identifier, Shapes::ShapeRef.new(shape: UUID, required: true, location: "uri", location_name: "idMappingTableIdentifier"))
@@ -1992,6 +2053,26 @@ module Aws::CleanRooms
1992
2053
  ServiceQuotaExceededException.add_member(:quota_value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "quotaValue"))
1993
2054
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
1994
2055
 
2056
+ SnowflakeTableReference.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretsManagerArn, required: true, location_name: "secretArn"))
2057
+ SnowflakeTableReference.add_member(:account_identifier, Shapes::ShapeRef.new(shape: SnowflakeAccountIdentifier, required: true, location_name: "accountIdentifier"))
2058
+ SnowflakeTableReference.add_member(:database_name, Shapes::ShapeRef.new(shape: SnowflakeDatabaseName, required: true, location_name: "databaseName"))
2059
+ SnowflakeTableReference.add_member(:table_name, Shapes::ShapeRef.new(shape: SnowflakeTableName, required: true, location_name: "tableName"))
2060
+ SnowflakeTableReference.add_member(:schema_name, Shapes::ShapeRef.new(shape: SnowflakeSchemaName, required: true, location_name: "schemaName"))
2061
+ SnowflakeTableReference.add_member(:table_schema, Shapes::ShapeRef.new(shape: SnowflakeTableSchema, required: true, location_name: "tableSchema"))
2062
+ SnowflakeTableReference.struct_class = Types::SnowflakeTableReference
2063
+
2064
+ SnowflakeTableSchema.add_member(:v1, Shapes::ShapeRef.new(shape: SnowflakeTableSchemaList, location_name: "v1"))
2065
+ SnowflakeTableSchema.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2066
+ SnowflakeTableSchema.add_member_subclass(:v1, Types::SnowflakeTableSchema::V1)
2067
+ SnowflakeTableSchema.add_member_subclass(:unknown, Types::SnowflakeTableSchema::Unknown)
2068
+ SnowflakeTableSchema.struct_class = Types::SnowflakeTableSchema
2069
+
2070
+ SnowflakeTableSchemaList.member = Shapes::ShapeRef.new(shape: SnowflakeTableSchemaV1)
2071
+
2072
+ SnowflakeTableSchemaV1.add_member(:column_name, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "columnName"))
2073
+ SnowflakeTableSchemaV1.add_member(:column_type, Shapes::ShapeRef.new(shape: ColumnTypeString, required: true, location_name: "columnType"))
2074
+ SnowflakeTableSchemaV1.struct_class = Types::SnowflakeTableSchemaV1
2075
+
1995
2076
  StartProtectedQueryInput.add_member(:type, Shapes::ShapeRef.new(shape: ProtectedQueryType, required: true, location_name: "type"))
1996
2077
  StartProtectedQueryInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
1997
2078
  StartProtectedQueryInput.add_member(:sql_parameters, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParameters, required: true, location_name: "sqlParameters"))
@@ -2005,8 +2086,12 @@ module Aws::CleanRooms
2005
2086
  TableAliasList.member = Shapes::ShapeRef.new(shape: TableAlias)
2006
2087
 
2007
2088
  TableReference.add_member(:glue, Shapes::ShapeRef.new(shape: GlueTableReference, location_name: "glue"))
2089
+ TableReference.add_member(:snowflake, Shapes::ShapeRef.new(shape: SnowflakeTableReference, location_name: "snowflake"))
2090
+ TableReference.add_member(:athena, Shapes::ShapeRef.new(shape: AthenaTableReference, location_name: "athena"))
2008
2091
  TableReference.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2009
2092
  TableReference.add_member_subclass(:glue, Types::TableReference::Glue)
2093
+ TableReference.add_member_subclass(:snowflake, Types::TableReference::Snowflake)
2094
+ TableReference.add_member_subclass(:athena, Types::TableReference::Athena)
2010
2095
  TableReference.add_member_subclass(:unknown, Types::TableReference::Unknown)
2011
2096
  TableReference.struct_class = Types::TableReference
2012
2097