aws-sdk-cleanrooms 1.25.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -518,7 +518,7 @@ module Aws::CleanRooms
518
518
  # resp.schemas[0].partition_keys[0].name #=> String
519
519
  # resp.schemas[0].partition_keys[0].type #=> String
520
520
  # resp.schemas[0].analysis_rule_types #=> Array
521
- # resp.schemas[0].analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
521
+ # resp.schemas[0].analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
522
522
  # resp.schemas[0].analysis_method #=> String, one of "DIRECT_QUERY"
523
523
  # resp.schemas[0].creator_account_id #=> String
524
524
  # resp.schemas[0].name #=> String
@@ -527,15 +527,18 @@ module Aws::CleanRooms
527
527
  # resp.schemas[0].description #=> String
528
528
  # resp.schemas[0].create_time #=> Time
529
529
  # resp.schemas[0].update_time #=> Time
530
- # resp.schemas[0].type #=> String, one of "TABLE"
530
+ # resp.schemas[0].type #=> String, one of "TABLE", "ID_MAPPING_TABLE"
531
531
  # resp.schemas[0].schema_status_details #=> Array
532
532
  # resp.schemas[0].schema_status_details[0].status #=> String, one of "READY", "NOT_READY"
533
533
  # resp.schemas[0].schema_status_details[0].reasons #=> Array
534
- # resp.schemas[0].schema_status_details[0].reasons[0].code #=> String, one of "ANALYSIS_RULE_MISSING", "ANALYSIS_TEMPLATES_NOT_CONFIGURED", "ANALYSIS_PROVIDERS_NOT_CONFIGURED", "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED"
534
+ # resp.schemas[0].schema_status_details[0].reasons[0].code #=> String, one of "ANALYSIS_RULE_MISSING", "ANALYSIS_TEMPLATES_NOT_CONFIGURED", "ANALYSIS_PROVIDERS_NOT_CONFIGURED", "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED", "ID_MAPPING_TABLE_NOT_POPULATED"
535
535
  # resp.schemas[0].schema_status_details[0].reasons[0].message #=> String
536
- # resp.schemas[0].schema_status_details[0].analysis_rule_type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
536
+ # resp.schemas[0].schema_status_details[0].analysis_rule_type #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
537
537
  # resp.schemas[0].schema_status_details[0].configurations #=> Array
538
- # resp.schemas[0].schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
538
+ # resp.schemas[0].schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY", "CUSTOM_ANALYSIS_NOT_ALLOWED", "NO_MEMBER_ACCOUNT_ALLOWED_TO_PROVIDE_ANALYSIS", "DIFFERENTIAL_PRIVACY_BUDGET_NOT_CONFIGURED", "ID_MAPPING_TABLE_NOT_POPULATED"
539
+ # resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source #=> Array
540
+ # resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].id_namespace_association_id #=> String
541
+ # resp.schemas[0].schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
539
542
  # resp.errors #=> Array
540
543
  # resp.errors[0].name #=> String
541
544
  # resp.errors[0].code #=> String
@@ -571,7 +574,7 @@ module Aws::CleanRooms
571
574
  # schema_analysis_rule_requests: [ # required
572
575
  # {
573
576
  # name: "TableAlias", # required
574
- # type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM
577
+ # type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM, ID_MAPPING_TABLE
575
578
  # },
576
579
  # ],
577
580
  # })
@@ -580,7 +583,7 @@ module Aws::CleanRooms
580
583
  #
581
584
  # resp.analysis_rules #=> Array
582
585
  # resp.analysis_rules[0].collaboration_id #=> String
583
- # resp.analysis_rules[0].type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
586
+ # resp.analysis_rules[0].type #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
584
587
  # resp.analysis_rules[0].name #=> String
585
588
  # resp.analysis_rules[0].create_time #=> Time
586
589
  # resp.analysis_rules[0].update_time #=> Time
@@ -613,9 +616,16 @@ module Aws::CleanRooms
613
616
  # resp.analysis_rules[0].policy.v1.custom.allowed_analysis_providers[0] #=> String
614
617
  # resp.analysis_rules[0].policy.v1.custom.differential_privacy.columns #=> Array
615
618
  # resp.analysis_rules[0].policy.v1.custom.differential_privacy.columns[0].name #=> String
619
+ # resp.analysis_rules[0].policy.v1.id_mapping_table.join_columns #=> Array
620
+ # resp.analysis_rules[0].policy.v1.id_mapping_table.join_columns[0] #=> String
621
+ # resp.analysis_rules[0].policy.v1.id_mapping_table.query_constraints #=> Array
622
+ # resp.analysis_rules[0].policy.v1.id_mapping_table.query_constraints[0].require_overlap.columns #=> Array
623
+ # resp.analysis_rules[0].policy.v1.id_mapping_table.query_constraints[0].require_overlap.columns[0] #=> String
624
+ # resp.analysis_rules[0].policy.v1.id_mapping_table.dimension_columns #=> Array
625
+ # resp.analysis_rules[0].policy.v1.id_mapping_table.dimension_columns[0] #=> String
616
626
  # resp.errors #=> Array
617
627
  # resp.errors[0].name #=> String
618
- # resp.errors[0].type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
628
+ # resp.errors[0].type #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
619
629
  # resp.errors[0].code #=> String
620
630
  # resp.errors[0].message #=> String
621
631
  #
@@ -1155,6 +1165,155 @@ module Aws::CleanRooms
1155
1165
  req.send_request(options)
1156
1166
  end
1157
1167
 
1168
+ # Creates an ID mapping table.
1169
+ #
1170
+ # @option params [required, String] :membership_identifier
1171
+ # The unique identifier of the membership that contains the ID mapping
1172
+ # table.
1173
+ #
1174
+ # @option params [required, String] :name
1175
+ # A name for the ID mapping table.
1176
+ #
1177
+ # @option params [String] :description
1178
+ # A description of the ID mapping table.
1179
+ #
1180
+ # @option params [required, Types::IdMappingTableInputReferenceConfig] :input_reference_config
1181
+ # The input reference configuration needed to create the ID mapping
1182
+ # table.
1183
+ #
1184
+ # @option params [Hash<String,String>] :tags
1185
+ # An optional label that you can assign to a resource when you create
1186
+ # it. Each tag consists of a key and an optional value, both of which
1187
+ # you define. When you use tagging, you can also use tag-based access
1188
+ # control in IAM policies to control access to this resource.
1189
+ #
1190
+ # @option params [String] :kms_key_arn
1191
+ # The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
1192
+ # This value is used to encrypt the mapping table data that is stored by
1193
+ # Clean Rooms.
1194
+ #
1195
+ # @return [Types::CreateIdMappingTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1196
+ #
1197
+ # * {Types::CreateIdMappingTableOutput#id_mapping_table #id_mapping_table} => Types::IdMappingTable
1198
+ #
1199
+ # @example Request syntax with placeholder values
1200
+ #
1201
+ # resp = client.create_id_mapping_table({
1202
+ # membership_identifier: "MembershipIdentifier", # required
1203
+ # name: "ResourceAlias", # required
1204
+ # description: "ResourceDescription",
1205
+ # input_reference_config: { # required
1206
+ # input_reference_arn: "IdMappingTableInputReferenceArn", # required
1207
+ # manage_resource_policies: false, # required
1208
+ # },
1209
+ # tags: {
1210
+ # "TagKey" => "TagValue",
1211
+ # },
1212
+ # kms_key_arn: "KMSKeyArn",
1213
+ # })
1214
+ #
1215
+ # @example Response structure
1216
+ #
1217
+ # resp.id_mapping_table.id #=> String
1218
+ # resp.id_mapping_table.arn #=> String
1219
+ # resp.id_mapping_table.input_reference_config.input_reference_arn #=> String
1220
+ # resp.id_mapping_table.input_reference_config.manage_resource_policies #=> Boolean
1221
+ # resp.id_mapping_table.membership_id #=> String
1222
+ # resp.id_mapping_table.membership_arn #=> String
1223
+ # resp.id_mapping_table.collaboration_id #=> String
1224
+ # resp.id_mapping_table.collaboration_arn #=> String
1225
+ # resp.id_mapping_table.description #=> String
1226
+ # resp.id_mapping_table.name #=> String
1227
+ # resp.id_mapping_table.create_time #=> Time
1228
+ # resp.id_mapping_table.update_time #=> Time
1229
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source #=> Array
1230
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source[0].id_namespace_association_id #=> String
1231
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
1232
+ # resp.id_mapping_table.kms_key_arn #=> String
1233
+ #
1234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdMappingTable AWS API Documentation
1235
+ #
1236
+ # @overload create_id_mapping_table(params = {})
1237
+ # @param [Hash] params ({})
1238
+ def create_id_mapping_table(params = {}, options = {})
1239
+ req = build_request(:create_id_mapping_table, params)
1240
+ req.send_request(options)
1241
+ end
1242
+
1243
+ # Creates an ID namespace association.
1244
+ #
1245
+ # @option params [required, String] :membership_identifier
1246
+ # The unique identifier of the membership that contains the ID namespace
1247
+ # association.
1248
+ #
1249
+ # @option params [required, Types::IdNamespaceAssociationInputReferenceConfig] :input_reference_config
1250
+ # The input reference configuration needed to create the ID namespace
1251
+ # association.
1252
+ #
1253
+ # @option params [Hash<String,String>] :tags
1254
+ # An optional label that you can assign to a resource when you create
1255
+ # it. Each tag consists of a key and an optional value, both of which
1256
+ # you define. When you use tagging, you can also use tag-based access
1257
+ # control in IAM policies to control access to this resource.
1258
+ #
1259
+ # @option params [required, String] :name
1260
+ # The name for the ID namespace association.
1261
+ #
1262
+ # @option params [String] :description
1263
+ # The description of the ID namespace association.
1264
+ #
1265
+ # @option params [Types::IdMappingConfig] :id_mapping_config
1266
+ # The configuration settings for the ID mapping table.
1267
+ #
1268
+ # @return [Types::CreateIdNamespaceAssociationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1269
+ #
1270
+ # * {Types::CreateIdNamespaceAssociationOutput#id_namespace_association #id_namespace_association} => Types::IdNamespaceAssociation
1271
+ #
1272
+ # @example Request syntax with placeholder values
1273
+ #
1274
+ # resp = client.create_id_namespace_association({
1275
+ # membership_identifier: "MembershipIdentifier", # required
1276
+ # input_reference_config: { # required
1277
+ # input_reference_arn: "IdNamespaceAssociationInputReferenceArn", # required
1278
+ # manage_resource_policies: false, # required
1279
+ # },
1280
+ # tags: {
1281
+ # "TagKey" => "TagValue",
1282
+ # },
1283
+ # name: "GenericResourceName", # required
1284
+ # description: "ResourceDescription",
1285
+ # id_mapping_config: {
1286
+ # allow_use_as_dimension_column: false, # required
1287
+ # },
1288
+ # })
1289
+ #
1290
+ # @example Response structure
1291
+ #
1292
+ # resp.id_namespace_association.id #=> String
1293
+ # resp.id_namespace_association.arn #=> String
1294
+ # resp.id_namespace_association.membership_id #=> String
1295
+ # resp.id_namespace_association.membership_arn #=> String
1296
+ # resp.id_namespace_association.collaboration_id #=> String
1297
+ # resp.id_namespace_association.collaboration_arn #=> String
1298
+ # resp.id_namespace_association.name #=> String
1299
+ # resp.id_namespace_association.description #=> String
1300
+ # resp.id_namespace_association.create_time #=> Time
1301
+ # resp.id_namespace_association.update_time #=> Time
1302
+ # resp.id_namespace_association.input_reference_config.input_reference_arn #=> String
1303
+ # resp.id_namespace_association.input_reference_config.manage_resource_policies #=> Boolean
1304
+ # resp.id_namespace_association.input_reference_properties.id_namespace_type #=> String, one of "SOURCE", "TARGET"
1305
+ # resp.id_namespace_association.input_reference_properties.id_mapping_workflows_supported #=> Array
1306
+ # resp.id_namespace_association.id_mapping_config.allow_use_as_dimension_column #=> Boolean
1307
+ #
1308
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdNamespaceAssociation AWS API Documentation
1309
+ #
1310
+ # @overload create_id_namespace_association(params = {})
1311
+ # @param [Hash] params ({})
1312
+ def create_id_namespace_association(params = {}, options = {})
1313
+ req = build_request(:create_id_namespace_association, params)
1314
+ req.send_request(options)
1315
+ end
1316
+
1158
1317
  # Creates a membership for a specific collaboration identifier and joins
1159
1318
  # the collaboration.
1160
1319
  #
@@ -1479,6 +1638,61 @@ module Aws::CleanRooms
1479
1638
  req.send_request(options)
1480
1639
  end
1481
1640
 
1641
+ # Deletes an ID mapping table.
1642
+ #
1643
+ # @option params [required, String] :id_mapping_table_identifier
1644
+ # The unique identifier of the ID mapping table that you want to delete.
1645
+ #
1646
+ # @option params [required, String] :membership_identifier
1647
+ # The unique identifier of the membership that contains the ID mapping
1648
+ # table that you want to delete.
1649
+ #
1650
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1651
+ #
1652
+ # @example Request syntax with placeholder values
1653
+ #
1654
+ # resp = client.delete_id_mapping_table({
1655
+ # id_mapping_table_identifier: "UUID", # required
1656
+ # membership_identifier: "MembershipIdentifier", # required
1657
+ # })
1658
+ #
1659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdMappingTable AWS API Documentation
1660
+ #
1661
+ # @overload delete_id_mapping_table(params = {})
1662
+ # @param [Hash] params ({})
1663
+ def delete_id_mapping_table(params = {}, options = {})
1664
+ req = build_request(:delete_id_mapping_table, params)
1665
+ req.send_request(options)
1666
+ end
1667
+
1668
+ # Deletes an ID namespace association.
1669
+ #
1670
+ # @option params [required, String] :id_namespace_association_identifier
1671
+ # The unique identifier of the ID namespace association that you want to
1672
+ # delete.
1673
+ #
1674
+ # @option params [required, String] :membership_identifier
1675
+ # The unique identifier of the membership that contains the ID namespace
1676
+ # association that you want to delete.
1677
+ #
1678
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1679
+ #
1680
+ # @example Request syntax with placeholder values
1681
+ #
1682
+ # resp = client.delete_id_namespace_association({
1683
+ # id_namespace_association_identifier: "IdNamespaceAssociationIdentifier", # required
1684
+ # membership_identifier: "MembershipIdentifier", # required
1685
+ # })
1686
+ #
1687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdNamespaceAssociation AWS API Documentation
1688
+ #
1689
+ # @overload delete_id_namespace_association(params = {})
1690
+ # @param [Hash] params ({})
1691
+ def delete_id_namespace_association(params = {}, options = {})
1692
+ req = build_request(:delete_id_namespace_association, params)
1693
+ req.send_request(options)
1694
+ end
1695
+
1482
1696
  # Removes the specified member from a collaboration. The removed member
1483
1697
  # is placed in the Removed status and can't interact with the
1484
1698
  # collaboration. The removed member's data is inaccessible to active
@@ -1755,6 +1969,53 @@ module Aws::CleanRooms
1755
1969
  req.send_request(options)
1756
1970
  end
1757
1971
 
1972
+ # Retrieves an ID namespace association from a specific collaboration.
1973
+ #
1974
+ # @option params [required, String] :collaboration_identifier
1975
+ # The unique identifier of the collaboration that contains the ID
1976
+ # namespace association that you want to retrieve.
1977
+ #
1978
+ # @option params [required, String] :id_namespace_association_identifier
1979
+ # The unique identifier of the ID namespace association that you want to
1980
+ # retrieve.
1981
+ #
1982
+ # @return [Types::GetCollaborationIdNamespaceAssociationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1983
+ #
1984
+ # * {Types::GetCollaborationIdNamespaceAssociationOutput#collaboration_id_namespace_association #collaboration_id_namespace_association} => Types::CollaborationIdNamespaceAssociation
1985
+ #
1986
+ # @example Request syntax with placeholder values
1987
+ #
1988
+ # resp = client.get_collaboration_id_namespace_association({
1989
+ # collaboration_identifier: "CollaborationIdentifier", # required
1990
+ # id_namespace_association_identifier: "IdNamespaceAssociationIdentifier", # required
1991
+ # })
1992
+ #
1993
+ # @example Response structure
1994
+ #
1995
+ # resp.collaboration_id_namespace_association.id #=> String
1996
+ # resp.collaboration_id_namespace_association.arn #=> String
1997
+ # resp.collaboration_id_namespace_association.collaboration_id #=> String
1998
+ # resp.collaboration_id_namespace_association.collaboration_arn #=> String
1999
+ # resp.collaboration_id_namespace_association.name #=> String
2000
+ # resp.collaboration_id_namespace_association.description #=> String
2001
+ # resp.collaboration_id_namespace_association.creator_account_id #=> String
2002
+ # resp.collaboration_id_namespace_association.create_time #=> Time
2003
+ # resp.collaboration_id_namespace_association.update_time #=> Time
2004
+ # resp.collaboration_id_namespace_association.input_reference_config.input_reference_arn #=> String
2005
+ # resp.collaboration_id_namespace_association.input_reference_config.manage_resource_policies #=> Boolean
2006
+ # resp.collaboration_id_namespace_association.input_reference_properties.id_namespace_type #=> String, one of "SOURCE", "TARGET"
2007
+ # resp.collaboration_id_namespace_association.input_reference_properties.id_mapping_workflows_supported #=> Array
2008
+ # resp.collaboration_id_namespace_association.id_mapping_config.allow_use_as_dimension_column #=> Boolean
2009
+ #
2010
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationIdNamespaceAssociation AWS API Documentation
2011
+ #
2012
+ # @overload get_collaboration_id_namespace_association(params = {})
2013
+ # @param [Hash] params ({})
2014
+ def get_collaboration_id_namespace_association(params = {}, options = {})
2015
+ req = build_request(:get_collaboration_id_namespace_association, params)
2016
+ req.send_request(options)
2017
+ end
2018
+
1758
2019
  # Returns details about a specified privacy budget template.
1759
2020
  #
1760
2021
  # @option params [required, String] :collaboration_identifier
@@ -1994,6 +2255,103 @@ module Aws::CleanRooms
1994
2255
  req.send_request(options)
1995
2256
  end
1996
2257
 
2258
+ # Retrieves an ID mapping table.
2259
+ #
2260
+ # @option params [required, String] :id_mapping_table_identifier
2261
+ # The unique identifier of the ID mapping table identifier that you want
2262
+ # to retrieve.
2263
+ #
2264
+ # @option params [required, String] :membership_identifier
2265
+ # The unique identifier of the membership that contains the ID mapping
2266
+ # table that you want to retrieve.
2267
+ #
2268
+ # @return [Types::GetIdMappingTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2269
+ #
2270
+ # * {Types::GetIdMappingTableOutput#id_mapping_table #id_mapping_table} => Types::IdMappingTable
2271
+ #
2272
+ # @example Request syntax with placeholder values
2273
+ #
2274
+ # resp = client.get_id_mapping_table({
2275
+ # id_mapping_table_identifier: "UUID", # required
2276
+ # membership_identifier: "MembershipIdentifier", # required
2277
+ # })
2278
+ #
2279
+ # @example Response structure
2280
+ #
2281
+ # resp.id_mapping_table.id #=> String
2282
+ # resp.id_mapping_table.arn #=> String
2283
+ # resp.id_mapping_table.input_reference_config.input_reference_arn #=> String
2284
+ # resp.id_mapping_table.input_reference_config.manage_resource_policies #=> Boolean
2285
+ # resp.id_mapping_table.membership_id #=> String
2286
+ # resp.id_mapping_table.membership_arn #=> String
2287
+ # resp.id_mapping_table.collaboration_id #=> String
2288
+ # resp.id_mapping_table.collaboration_arn #=> String
2289
+ # resp.id_mapping_table.description #=> String
2290
+ # resp.id_mapping_table.name #=> String
2291
+ # resp.id_mapping_table.create_time #=> Time
2292
+ # resp.id_mapping_table.update_time #=> Time
2293
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source #=> Array
2294
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source[0].id_namespace_association_id #=> String
2295
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
2296
+ # resp.id_mapping_table.kms_key_arn #=> String
2297
+ #
2298
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdMappingTable AWS API Documentation
2299
+ #
2300
+ # @overload get_id_mapping_table(params = {})
2301
+ # @param [Hash] params ({})
2302
+ def get_id_mapping_table(params = {}, options = {})
2303
+ req = build_request(:get_id_mapping_table, params)
2304
+ req.send_request(options)
2305
+ end
2306
+
2307
+ # Retrieves an ID namespace association.
2308
+ #
2309
+ # @option params [required, String] :id_namespace_association_identifier
2310
+ # The unique identifier of the ID namespace association that you want to
2311
+ # retrieve.
2312
+ #
2313
+ # @option params [required, String] :membership_identifier
2314
+ # The unique identifier of the membership that contains the ID namespace
2315
+ # association that you want to retrieve.
2316
+ #
2317
+ # @return [Types::GetIdNamespaceAssociationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2318
+ #
2319
+ # * {Types::GetIdNamespaceAssociationOutput#id_namespace_association #id_namespace_association} => Types::IdNamespaceAssociation
2320
+ #
2321
+ # @example Request syntax with placeholder values
2322
+ #
2323
+ # resp = client.get_id_namespace_association({
2324
+ # id_namespace_association_identifier: "IdNamespaceAssociationIdentifier", # required
2325
+ # membership_identifier: "MembershipIdentifier", # required
2326
+ # })
2327
+ #
2328
+ # @example Response structure
2329
+ #
2330
+ # resp.id_namespace_association.id #=> String
2331
+ # resp.id_namespace_association.arn #=> String
2332
+ # resp.id_namespace_association.membership_id #=> String
2333
+ # resp.id_namespace_association.membership_arn #=> String
2334
+ # resp.id_namespace_association.collaboration_id #=> String
2335
+ # resp.id_namespace_association.collaboration_arn #=> String
2336
+ # resp.id_namespace_association.name #=> String
2337
+ # resp.id_namespace_association.description #=> String
2338
+ # resp.id_namespace_association.create_time #=> Time
2339
+ # resp.id_namespace_association.update_time #=> Time
2340
+ # resp.id_namespace_association.input_reference_config.input_reference_arn #=> String
2341
+ # resp.id_namespace_association.input_reference_config.manage_resource_policies #=> Boolean
2342
+ # resp.id_namespace_association.input_reference_properties.id_namespace_type #=> String, one of "SOURCE", "TARGET"
2343
+ # resp.id_namespace_association.input_reference_properties.id_mapping_workflows_supported #=> Array
2344
+ # resp.id_namespace_association.id_mapping_config.allow_use_as_dimension_column #=> Boolean
2345
+ #
2346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdNamespaceAssociation AWS API Documentation
2347
+ #
2348
+ # @overload get_id_namespace_association(params = {})
2349
+ # @param [Hash] params ({})
2350
+ def get_id_namespace_association(params = {}, options = {})
2351
+ req = build_request(:get_id_namespace_association, params)
2352
+ req.send_request(options)
2353
+ end
2354
+
1997
2355
  # Retrieves a specified membership for an identifier.
1998
2356
  #
1999
2357
  # @option params [required, String] :membership_identifier
@@ -2168,7 +2526,7 @@ module Aws::CleanRooms
2168
2526
  # resp.schema.partition_keys[0].name #=> String
2169
2527
  # resp.schema.partition_keys[0].type #=> String
2170
2528
  # resp.schema.analysis_rule_types #=> Array
2171
- # resp.schema.analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
2529
+ # resp.schema.analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
2172
2530
  # resp.schema.analysis_method #=> String, one of "DIRECT_QUERY"
2173
2531
  # resp.schema.creator_account_id #=> String
2174
2532
  # resp.schema.name #=> String
@@ -2177,15 +2535,18 @@ module Aws::CleanRooms
2177
2535
  # resp.schema.description #=> String
2178
2536
  # resp.schema.create_time #=> Time
2179
2537
  # resp.schema.update_time #=> Time
2180
- # resp.schema.type #=> String, one of "TABLE"
2538
+ # resp.schema.type #=> String, one of "TABLE", "ID_MAPPING_TABLE"
2181
2539
  # resp.schema.schema_status_details #=> Array
2182
2540
  # resp.schema.schema_status_details[0].status #=> String, one of "READY", "NOT_READY"
2183
2541
  # resp.schema.schema_status_details[0].reasons #=> Array
2184
- # resp.schema.schema_status_details[0].reasons[0].code #=> String, one of "ANALYSIS_RULE_MISSING", "ANALYSIS_TEMPLATES_NOT_CONFIGURED", "ANALYSIS_PROVIDERS_NOT_CONFIGURED", "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED"
2542
+ # resp.schema.schema_status_details[0].reasons[0].code #=> String, one of "ANALYSIS_RULE_MISSING", "ANALYSIS_TEMPLATES_NOT_CONFIGURED", "ANALYSIS_PROVIDERS_NOT_CONFIGURED", "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED", "ID_MAPPING_TABLE_NOT_POPULATED"
2185
2543
  # resp.schema.schema_status_details[0].reasons[0].message #=> String
2186
- # resp.schema.schema_status_details[0].analysis_rule_type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
2544
+ # resp.schema.schema_status_details[0].analysis_rule_type #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
2187
2545
  # resp.schema.schema_status_details[0].configurations #=> Array
2188
- # resp.schema.schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY"
2546
+ # resp.schema.schema_status_details[0].configurations[0] #=> String, one of "DIFFERENTIAL_PRIVACY", "CUSTOM_ANALYSIS_NOT_ALLOWED", "NO_MEMBER_ACCOUNT_ALLOWED_TO_PROVIDE_ANALYSIS", "DIFFERENTIAL_PRIVACY_BUDGET_NOT_CONFIGURED", "ID_MAPPING_TABLE_NOT_POPULATED"
2547
+ # resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source #=> Array
2548
+ # resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].id_namespace_association_id #=> String
2549
+ # resp.schema.schema_type_properties.id_mapping_table.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
2189
2550
  #
2190
2551
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchema AWS API Documentation
2191
2552
  #
@@ -2219,13 +2580,13 @@ module Aws::CleanRooms
2219
2580
  # resp = client.get_schema_analysis_rule({
2220
2581
  # collaboration_identifier: "CollaborationIdentifier", # required
2221
2582
  # name: "TableAlias", # required
2222
- # type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM
2583
+ # type: "AGGREGATION", # required, accepts AGGREGATION, LIST, CUSTOM, ID_MAPPING_TABLE
2223
2584
  # })
2224
2585
  #
2225
2586
  # @example Response structure
2226
2587
  #
2227
2588
  # resp.analysis_rule.collaboration_id #=> String
2228
- # resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
2589
+ # resp.analysis_rule.type #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
2229
2590
  # resp.analysis_rule.name #=> String
2230
2591
  # resp.analysis_rule.create_time #=> Time
2231
2592
  # resp.analysis_rule.update_time #=> Time
@@ -2258,6 +2619,13 @@ module Aws::CleanRooms
2258
2619
  # resp.analysis_rule.policy.v1.custom.allowed_analysis_providers[0] #=> String
2259
2620
  # resp.analysis_rule.policy.v1.custom.differential_privacy.columns #=> Array
2260
2621
  # resp.analysis_rule.policy.v1.custom.differential_privacy.columns[0].name #=> String
2622
+ # resp.analysis_rule.policy.v1.id_mapping_table.join_columns #=> Array
2623
+ # resp.analysis_rule.policy.v1.id_mapping_table.join_columns[0] #=> String
2624
+ # resp.analysis_rule.policy.v1.id_mapping_table.query_constraints #=> Array
2625
+ # resp.analysis_rule.policy.v1.id_mapping_table.query_constraints[0].require_overlap.columns #=> Array
2626
+ # resp.analysis_rule.policy.v1.id_mapping_table.query_constraints[0].require_overlap.columns[0] #=> String
2627
+ # resp.analysis_rule.policy.v1.id_mapping_table.dimension_columns #=> Array
2628
+ # resp.analysis_rule.policy.v1.id_mapping_table.dimension_columns[0] #=> String
2261
2629
  #
2262
2630
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchemaAnalysisRule AWS API Documentation
2263
2631
  #
@@ -2274,11 +2642,13 @@ module Aws::CleanRooms
2274
2642
  # The identifier for a membership resource.
2275
2643
  #
2276
2644
  # @option params [String] :next_token
2277
- # The token value retrieved from a previous call to access the next page
2278
- # of results.
2645
+ # The pagination token that's used to fetch the next set of results.
2279
2646
  #
2280
2647
  # @option params [Integer] :max_results
2281
- # The maximum size of the results that is returned per call.
2648
+ # The maximum number of results that are returned for an API request
2649
+ # call. The service chooses a default number if you don't set one. The
2650
+ # service might return a `nextToken` even if the `maxResults` value
2651
+ # has not been met.
2282
2652
  #
2283
2653
  # @return [Types::ListAnalysisTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2284
2654
  #
@@ -2326,11 +2696,13 @@ module Aws::CleanRooms
2326
2696
  # belong to. Currently accepts collaboration ID.
2327
2697
  #
2328
2698
  # @option params [String] :next_token
2329
- # The token value retrieved from a previous call to access the next page
2330
- # of results.
2699
+ # The pagination token that's used to fetch the next set of results.
2331
2700
  #
2332
2701
  # @option params [Integer] :max_results
2333
- # The maximum size of the results that is returned per call.
2702
+ # The maximum number of results that are returned for an API request
2703
+ # call. The service chooses a default number if you don't set one. The
2704
+ # service might return a `nextToken` even if the `maxResults` value
2705
+ # has not been met.
2334
2706
  #
2335
2707
  # @return [Types::ListCollaborationAnalysisTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2336
2708
  #
@@ -2377,11 +2749,13 @@ module Aws::CleanRooms
2377
2749
  # model association belongs to. Accepts a collaboration ID.
2378
2750
  #
2379
2751
  # @option params [String] :next_token
2380
- # The token value retrieved from a previous call to access the next page
2381
- # of results.
2752
+ # The pagination token that's used to fetch the next set of results.
2382
2753
  #
2383
2754
  # @option params [Integer] :max_results
2384
- # The maximum size of the results that is returned per call.
2755
+ # The maximum number of results that are returned for an API request
2756
+ # call. The service chooses a default number if you don't set one. The
2757
+ # service might return a `nextToken` even if the `maxResults` value
2758
+ # has not been met.
2385
2759
  #
2386
2760
  # @return [Types::ListCollaborationConfiguredAudienceModelAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2387
2761
  #
@@ -2421,6 +2795,61 @@ module Aws::CleanRooms
2421
2795
  req.send_request(options)
2422
2796
  end
2423
2797
 
2798
+ # Returns a list of the ID namespace associations in a collaboration.
2799
+ #
2800
+ # @option params [required, String] :collaboration_identifier
2801
+ # The unique identifier of the collaboration that contains the ID
2802
+ # namespace associations that you want to retrieve.
2803
+ #
2804
+ # @option params [String] :next_token
2805
+ # The pagination token that's used to fetch the next set of results.
2806
+ #
2807
+ # @option params [Integer] :max_results
2808
+ # The maximum size of the results that is returned per call. Service
2809
+ # chooses a default if it has not been set. Service may return a
2810
+ # nextToken even if the maximum results has not been met.&gt;
2811
+ #
2812
+ # @return [Types::ListCollaborationIdNamespaceAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2813
+ #
2814
+ # * {Types::ListCollaborationIdNamespaceAssociationsOutput#next_token #next_token} => String
2815
+ # * {Types::ListCollaborationIdNamespaceAssociationsOutput#collaboration_id_namespace_association_summaries #collaboration_id_namespace_association_summaries} => Array&lt;Types::CollaborationIdNamespaceAssociationSummary&gt;
2816
+ #
2817
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2818
+ #
2819
+ # @example Request syntax with placeholder values
2820
+ #
2821
+ # resp = client.list_collaboration_id_namespace_associations({
2822
+ # collaboration_identifier: "CollaborationIdentifier", # required
2823
+ # next_token: "PaginationToken",
2824
+ # max_results: 1,
2825
+ # })
2826
+ #
2827
+ # @example Response structure
2828
+ #
2829
+ # resp.next_token #=> String
2830
+ # resp.collaboration_id_namespace_association_summaries #=> Array
2831
+ # resp.collaboration_id_namespace_association_summaries[0].arn #=> String
2832
+ # resp.collaboration_id_namespace_association_summaries[0].create_time #=> Time
2833
+ # resp.collaboration_id_namespace_association_summaries[0].id #=> String
2834
+ # resp.collaboration_id_namespace_association_summaries[0].update_time #=> Time
2835
+ # resp.collaboration_id_namespace_association_summaries[0].collaboration_arn #=> String
2836
+ # resp.collaboration_id_namespace_association_summaries[0].collaboration_id #=> String
2837
+ # resp.collaboration_id_namespace_association_summaries[0].creator_account_id #=> String
2838
+ # resp.collaboration_id_namespace_association_summaries[0].input_reference_config.input_reference_arn #=> String
2839
+ # resp.collaboration_id_namespace_association_summaries[0].input_reference_config.manage_resource_policies #=> Boolean
2840
+ # resp.collaboration_id_namespace_association_summaries[0].name #=> String
2841
+ # resp.collaboration_id_namespace_association_summaries[0].description #=> String
2842
+ # resp.collaboration_id_namespace_association_summaries[0].input_reference_properties.id_namespace_type #=> String, one of "SOURCE", "TARGET"
2843
+ #
2844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationIdNamespaceAssociations AWS API Documentation
2845
+ #
2846
+ # @overload list_collaboration_id_namespace_associations(params = {})
2847
+ # @param [Hash] params ({})
2848
+ def list_collaboration_id_namespace_associations(params = {}, options = {})
2849
+ req = build_request(:list_collaboration_id_namespace_associations, params)
2850
+ req.send_request(options)
2851
+ end
2852
+
2424
2853
  # Returns an array that summarizes each privacy budget template in a
2425
2854
  # specified collaboration.
2426
2855
  #
@@ -2428,13 +2857,13 @@ module Aws::CleanRooms
2428
2857
  # A unique identifier for one of your collaborations.
2429
2858
  #
2430
2859
  # @option params [String] :next_token
2431
- # The token value retrieved from a previous call to access the next page
2432
- # of results.
2860
+ # The pagination token that's used to fetch the next set of results.
2433
2861
  #
2434
2862
  # @option params [Integer] :max_results
2435
- # The maximum size of the results that is returned per call. Service
2436
- # chooses a default if it has not been set. Service may return a
2437
- # nextToken even if the maximum results has not been met.
2863
+ # The maximum number of results that are returned for an API request
2864
+ # call. The service chooses a default number if you don't set one. The
2865
+ # service might return a `nextToken` even if the `maxResults` value
2866
+ # has not been met.
2438
2867
  #
2439
2868
  # @return [Types::ListCollaborationPrivacyBudgetTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2440
2869
  #
@@ -2484,13 +2913,13 @@ module Aws::CleanRooms
2484
2913
  # Specifies the type of the privacy budget.
2485
2914
  #
2486
2915
  # @option params [Integer] :max_results
2487
- # The maximum size of the results that is returned per call. Service
2488
- # chooses a default if it has not been set. Service may return a
2489
- # nextToken even if the maximum results has not been met.
2916
+ # The maximum number of results that are returned for an API request
2917
+ # call. The service chooses a default number if you don't set one. The
2918
+ # service might return a `nextToken` even if the `maxResults` value
2919
+ # has not been met.
2490
2920
  #
2491
2921
  # @option params [String] :next_token
2492
- # The token value retrieved from a previous call to access the next page
2493
- # of results.
2922
+ # The pagination token that's used to fetch the next set of results.
2494
2923
  #
2495
2924
  # @return [Types::ListCollaborationPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2496
2925
  #
@@ -2540,13 +2969,13 @@ module Aws::CleanRooms
2540
2969
  # invited to.
2541
2970
  #
2542
2971
  # @option params [String] :next_token
2543
- # The token value retrieved from a previous call to access the next page
2544
- # of results.
2972
+ # The pagination token that's used to fetch the next set of results.
2545
2973
  #
2546
2974
  # @option params [Integer] :max_results
2547
- # The maximum size of the results that is returned per call. Service
2548
- # chooses a default if it has not been set. Service may return a
2549
- # nextToken even if the maximum results has not been met.
2975
+ # The maximum number of results that are returned for an API request
2976
+ # call. The service chooses a default number if you don't set one. The
2977
+ # service might return a `nextToken` even if the `maxResults` value
2978
+ # has not been met.
2550
2979
  #
2551
2980
  # @option params [String] :member_status
2552
2981
  # The caller's status in a collaboration.
@@ -2598,13 +3027,13 @@ module Aws::CleanRooms
2598
3027
  # audience model associations that you want to retrieve.
2599
3028
  #
2600
3029
  # @option params [String] :next_token
2601
- # The token value retrieved from a previous call to access the next page
2602
- # of results.
3030
+ # The pagination token that's used to fetch the next set of results.
2603
3031
  #
2604
3032
  # @option params [Integer] :max_results
2605
- # The maximum size of the results that is returned per call. Service
2606
- # chooses a default if it has not been set. Service may return a
2607
- # nextToken even if the maximum results has not been met.
3033
+ # The maximum number of results that are returned for an API request
3034
+ # call. The service chooses a default number if you don't set one. The
3035
+ # service might return a `nextToken` even if the `maxResults` value
3036
+ # has not been met.
2608
3037
  #
2609
3038
  # @return [Types::ListConfiguredAudienceModelAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2610
3039
  #
@@ -2653,11 +3082,13 @@ module Aws::CleanRooms
2653
3082
  # associations for. Currently accepts the membership ID.
2654
3083
  #
2655
3084
  # @option params [String] :next_token
2656
- # The token value retrieved from a previous call to access the next page
2657
- # of results.
3085
+ # The pagination token that's used to fetch the next set of results.
2658
3086
  #
2659
3087
  # @option params [Integer] :max_results
2660
- # The maximum size of the results that is returned per call.
3088
+ # The maximum number of results that are returned for an API request
3089
+ # call. The service chooses a default number if you don't set one. The
3090
+ # service might return a `nextToken` even if the `maxResults` value
3091
+ # has not been met.
2661
3092
  #
2662
3093
  # @return [Types::ListConfiguredTableAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2663
3094
  #
@@ -2699,11 +3130,13 @@ module Aws::CleanRooms
2699
3130
  # Lists configured tables.
2700
3131
  #
2701
3132
  # @option params [String] :next_token
2702
- # The token value retrieved from a previous call to access the next page
2703
- # of results.
3133
+ # The pagination token that's used to fetch the next set of results.
2704
3134
  #
2705
3135
  # @option params [Integer] :max_results
2706
- # The maximum size of the results that is returned per call.
3136
+ # The maximum number of results that are returned for an API request
3137
+ # call. The service chooses a default number if you don't set one. The
3138
+ # service might return a `nextToken` even if the `maxResults` value
3139
+ # has not been met.
2707
3140
  #
2708
3141
  # @return [Types::ListConfiguredTablesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2709
3142
  #
@@ -2741,17 +3174,130 @@ module Aws::CleanRooms
2741
3174
  req.send_request(options)
2742
3175
  end
2743
3176
 
3177
+ # Returns a list of ID mapping tables.
3178
+ #
3179
+ # @option params [required, String] :membership_identifier
3180
+ # The unique identifier of the membership that contains the ID mapping
3181
+ # tables that you want to view.
3182
+ #
3183
+ # @option params [String] :next_token
3184
+ # The pagination token that's used to fetch the next set of results.
3185
+ #
3186
+ # @option params [Integer] :max_results
3187
+ # The maximum size of the results that is returned per call. Service
3188
+ # chooses a default if it has not been set. Service may return a
3189
+ # nextToken even if the maximum results has not been met.
3190
+ #
3191
+ # @return [Types::ListIdMappingTablesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3192
+ #
3193
+ # * {Types::ListIdMappingTablesOutput#id_mapping_table_summaries #id_mapping_table_summaries} => Array&lt;Types::IdMappingTableSummary&gt;
3194
+ # * {Types::ListIdMappingTablesOutput#next_token #next_token} => String
3195
+ #
3196
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3197
+ #
3198
+ # @example Request syntax with placeholder values
3199
+ #
3200
+ # resp = client.list_id_mapping_tables({
3201
+ # membership_identifier: "MembershipIdentifier", # required
3202
+ # next_token: "PaginationToken",
3203
+ # max_results: 1,
3204
+ # })
3205
+ #
3206
+ # @example Response structure
3207
+ #
3208
+ # resp.id_mapping_table_summaries #=> Array
3209
+ # resp.id_mapping_table_summaries[0].collaboration_arn #=> String
3210
+ # resp.id_mapping_table_summaries[0].collaboration_id #=> String
3211
+ # resp.id_mapping_table_summaries[0].membership_id #=> String
3212
+ # resp.id_mapping_table_summaries[0].membership_arn #=> String
3213
+ # resp.id_mapping_table_summaries[0].create_time #=> Time
3214
+ # resp.id_mapping_table_summaries[0].update_time #=> Time
3215
+ # resp.id_mapping_table_summaries[0].id #=> String
3216
+ # resp.id_mapping_table_summaries[0].arn #=> String
3217
+ # resp.id_mapping_table_summaries[0].description #=> String
3218
+ # resp.id_mapping_table_summaries[0].input_reference_config.input_reference_arn #=> String
3219
+ # resp.id_mapping_table_summaries[0].input_reference_config.manage_resource_policies #=> Boolean
3220
+ # resp.id_mapping_table_summaries[0].name #=> String
3221
+ # resp.next_token #=> String
3222
+ #
3223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdMappingTables AWS API Documentation
3224
+ #
3225
+ # @overload list_id_mapping_tables(params = {})
3226
+ # @param [Hash] params ({})
3227
+ def list_id_mapping_tables(params = {}, options = {})
3228
+ req = build_request(:list_id_mapping_tables, params)
3229
+ req.send_request(options)
3230
+ end
3231
+
3232
+ # Returns a list of ID namespace associations.
3233
+ #
3234
+ # @option params [required, String] :membership_identifier
3235
+ # The unique identifier of the membership that contains the ID namespace
3236
+ # association that you want to view.
3237
+ #
3238
+ # @option params [String] :next_token
3239
+ # The pagination token that's used to fetch the next set of results.
3240
+ #
3241
+ # @option params [Integer] :max_results
3242
+ # The maximum size of the results that is returned per call. Service
3243
+ # chooses a default if it has not been set. Service may return a
3244
+ # nextToken even if the maximum results has not been met.
3245
+ #
3246
+ # @return [Types::ListIdNamespaceAssociationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3247
+ #
3248
+ # * {Types::ListIdNamespaceAssociationsOutput#next_token #next_token} => String
3249
+ # * {Types::ListIdNamespaceAssociationsOutput#id_namespace_association_summaries #id_namespace_association_summaries} => Array&lt;Types::IdNamespaceAssociationSummary&gt;
3250
+ #
3251
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3252
+ #
3253
+ # @example Request syntax with placeholder values
3254
+ #
3255
+ # resp = client.list_id_namespace_associations({
3256
+ # membership_identifier: "MembershipIdentifier", # required
3257
+ # next_token: "PaginationToken",
3258
+ # max_results: 1,
3259
+ # })
3260
+ #
3261
+ # @example Response structure
3262
+ #
3263
+ # resp.next_token #=> String
3264
+ # resp.id_namespace_association_summaries #=> Array
3265
+ # resp.id_namespace_association_summaries[0].membership_id #=> String
3266
+ # resp.id_namespace_association_summaries[0].membership_arn #=> String
3267
+ # resp.id_namespace_association_summaries[0].collaboration_arn #=> String
3268
+ # resp.id_namespace_association_summaries[0].collaboration_id #=> String
3269
+ # resp.id_namespace_association_summaries[0].create_time #=> Time
3270
+ # resp.id_namespace_association_summaries[0].update_time #=> Time
3271
+ # resp.id_namespace_association_summaries[0].id #=> String
3272
+ # resp.id_namespace_association_summaries[0].arn #=> String
3273
+ # resp.id_namespace_association_summaries[0].input_reference_config.input_reference_arn #=> String
3274
+ # resp.id_namespace_association_summaries[0].input_reference_config.manage_resource_policies #=> Boolean
3275
+ # resp.id_namespace_association_summaries[0].name #=> String
3276
+ # resp.id_namespace_association_summaries[0].description #=> String
3277
+ # resp.id_namespace_association_summaries[0].input_reference_properties.id_namespace_type #=> String, one of "SOURCE", "TARGET"
3278
+ #
3279
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdNamespaceAssociations AWS API Documentation
3280
+ #
3281
+ # @overload list_id_namespace_associations(params = {})
3282
+ # @param [Hash] params ({})
3283
+ def list_id_namespace_associations(params = {}, options = {})
3284
+ req = build_request(:list_id_namespace_associations, params)
3285
+ req.send_request(options)
3286
+ end
3287
+
2744
3288
  # Lists all members within a collaboration.
2745
3289
  #
2746
3290
  # @option params [required, String] :collaboration_identifier
2747
3291
  # The identifier of the collaboration in which the members are listed.
2748
3292
  #
2749
3293
  # @option params [String] :next_token
2750
- # The token value retrieved from a previous call to access the next page
2751
- # of results.
3294
+ # The pagination token that's used to fetch the next set of results.
2752
3295
  #
2753
3296
  # @option params [Integer] :max_results
2754
- # The maximum size of the results that is returned per call.
3297
+ # The maximum number of results that are returned for an API request
3298
+ # call. The service chooses a default number if you don't set one. The
3299
+ # service might return a `nextToken` even if the `maxResults` value
3300
+ # has not been met.
2755
3301
  #
2756
3302
  # @return [Types::ListMembersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2757
3303
  #
@@ -2795,11 +3341,13 @@ module Aws::CleanRooms
2795
3341
  # Lists all memberships resources within the caller's account.
2796
3342
  #
2797
3343
  # @option params [String] :next_token
2798
- # The token value retrieved from a previous call to access the next page
2799
- # of results.
3344
+ # The pagination token that's used to fetch the next set of results.
2800
3345
  #
2801
3346
  # @option params [Integer] :max_results
2802
- # The maximum size of the results that is returned per call.
3347
+ # The maximum number of results that are returned for an API request
3348
+ # call. The service chooses a default number if you don't set one. The
3349
+ # service might return a `nextToken` even if the `maxResults` value
3350
+ # has not been met.
2803
3351
  #
2804
3352
  # @option params [String] :status
2805
3353
  # A filter which will return only memberships in the specified status.
@@ -2855,13 +3403,13 @@ module Aws::CleanRooms
2855
3403
  # this membership belongs to. Accepts a membership ID.
2856
3404
  #
2857
3405
  # @option params [String] :next_token
2858
- # The token value retrieved from a previous call to access the next page
2859
- # of results.
3406
+ # The pagination token that's used to fetch the next set of results.
2860
3407
  #
2861
3408
  # @option params [Integer] :max_results
2862
- # The maximum size of the results that is returned per call. Service
2863
- # chooses a default if it has not been set. Service may return a
2864
- # nextToken even if the maximum results has not been met.
3409
+ # The maximum number of results that are returned for an API request
3410
+ # call. The service chooses a default number if you don't set one. The
3411
+ # service might return a `nextToken` even if the `maxResults` value
3412
+ # has not been met.
2865
3413
  #
2866
3414
  # @return [Types::ListPrivacyBudgetTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2867
3415
  #
@@ -2913,13 +3461,13 @@ module Aws::CleanRooms
2913
3461
  # The privacy budget type.
2914
3462
  #
2915
3463
  # @option params [String] :next_token
2916
- # The token value retrieved from a previous call to access the next page
2917
- # of results.
3464
+ # The pagination token that's used to fetch the next set of results.
2918
3465
  #
2919
3466
  # @option params [Integer] :max_results
2920
- # The maximum size of the results that is returned per call. Service
2921
- # chooses a default if it has not been set. Service may return a
2922
- # nextToken even if the maximum results has not been met.
3467
+ # The maximum number of results that are returned for an API request
3468
+ # call. The service chooses a default number if you don't set one. The
3469
+ # service might return a `nextToken` even if the `maxResults` value
3470
+ # has not been met.
2923
3471
  #
2924
3472
  # @return [Types::ListPrivacyBudgetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2925
3473
  #
@@ -2975,13 +3523,13 @@ module Aws::CleanRooms
2975
3523
  # A filter on the status of the protected query.
2976
3524
  #
2977
3525
  # @option params [String] :next_token
2978
- # The token value retrieved from a previous call to access the next page
2979
- # of results.
3526
+ # The pagination token that's used to fetch the next set of results.
2980
3527
  #
2981
3528
  # @option params [Integer] :max_results
2982
- # The maximum size of the results that is returned per call. Service
2983
- # chooses a default if it has not been set. Service can return a
2984
- # nextToken even if the maximum results has not been met.
3529
+ # The maximum number of results that are returned for an API request
3530
+ # call. The service chooses a default number if you don't set one. The
3531
+ # service might return a `nextToken` even if the `maxResults` value
3532
+ # has not been met.
2985
3533
  #
2986
3534
  # @return [Types::ListProtectedQueriesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2987
3535
  #
@@ -3025,15 +3573,16 @@ module Aws::CleanRooms
3025
3573
  # Currently accepts a collaboration ID.
3026
3574
  #
3027
3575
  # @option params [String] :schema_type
3028
- # If present, filter schemas by schema type. The only valid schema type
3029
- # is currently `TABLE`.
3576
+ # If present, filter schemas by schema type.
3030
3577
  #
3031
3578
  # @option params [String] :next_token
3032
- # The token value retrieved from a previous call to access the next page
3033
- # of results.
3579
+ # The pagination token that's used to fetch the next set of results.
3034
3580
  #
3035
3581
  # @option params [Integer] :max_results
3036
- # The maximum size of the results that is returned per call.
3582
+ # The maximum number of results that are returned for an API request
3583
+ # call. The service chooses a default number if you don't set one. The
3584
+ # service might return a `nextToken` even if the `maxResults` value
3585
+ # has not been met.
3037
3586
  #
3038
3587
  # @return [Types::ListSchemasOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3039
3588
  #
@@ -3046,7 +3595,7 @@ module Aws::CleanRooms
3046
3595
  #
3047
3596
  # resp = client.list_schemas({
3048
3597
  # collaboration_identifier: "CollaborationIdentifier", # required
3049
- # schema_type: "TABLE", # accepts TABLE
3598
+ # schema_type: "TABLE", # accepts TABLE, ID_MAPPING_TABLE
3050
3599
  # next_token: "PaginationToken",
3051
3600
  # max_results: 1,
3052
3601
  # })
@@ -3055,14 +3604,14 @@ module Aws::CleanRooms
3055
3604
  #
3056
3605
  # resp.schema_summaries #=> Array
3057
3606
  # resp.schema_summaries[0].name #=> String
3058
- # resp.schema_summaries[0].type #=> String, one of "TABLE"
3607
+ # resp.schema_summaries[0].type #=> String, one of "TABLE", "ID_MAPPING_TABLE"
3059
3608
  # resp.schema_summaries[0].creator_account_id #=> String
3060
3609
  # resp.schema_summaries[0].create_time #=> Time
3061
3610
  # resp.schema_summaries[0].update_time #=> Time
3062
3611
  # resp.schema_summaries[0].collaboration_id #=> String
3063
3612
  # resp.schema_summaries[0].collaboration_arn #=> String
3064
3613
  # resp.schema_summaries[0].analysis_rule_types #=> Array
3065
- # resp.schema_summaries[0].analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM"
3614
+ # resp.schema_summaries[0].analysis_rule_types[0] #=> String, one of "AGGREGATION", "LIST", "CUSTOM", "ID_MAPPING_TABLE"
3066
3615
  # resp.schema_summaries[0].analysis_method #=> String, one of "DIRECT_QUERY"
3067
3616
  # resp.next_token #=> String
3068
3617
  #
@@ -3105,6 +3654,41 @@ module Aws::CleanRooms
3105
3654
  req.send_request(options)
3106
3655
  end
3107
3656
 
3657
+ # Defines the information that's necessary to populate an ID mapping
3658
+ # table.
3659
+ #
3660
+ # @option params [required, String] :id_mapping_table_identifier
3661
+ # The unique identifier of the ID mapping table that you want to
3662
+ # populate.
3663
+ #
3664
+ # @option params [required, String] :membership_identifier
3665
+ # The unique identifier of the membership that contains the ID mapping
3666
+ # table that you want to populate.
3667
+ #
3668
+ # @return [Types::PopulateIdMappingTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3669
+ #
3670
+ # * {Types::PopulateIdMappingTableOutput#id_mapping_job_id #id_mapping_job_id} => String
3671
+ #
3672
+ # @example Request syntax with placeholder values
3673
+ #
3674
+ # resp = client.populate_id_mapping_table({
3675
+ # id_mapping_table_identifier: "UUID", # required
3676
+ # membership_identifier: "MembershipIdentifier", # required
3677
+ # })
3678
+ #
3679
+ # @example Response structure
3680
+ #
3681
+ # resp.id_mapping_job_id #=> String
3682
+ #
3683
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTable AWS API Documentation
3684
+ #
3685
+ # @overload populate_id_mapping_table(params = {})
3686
+ # @param [Hash] params ({})
3687
+ def populate_id_mapping_table(params = {}, options = {})
3688
+ req = build_request(:populate_id_mapping_table, params)
3689
+ req.send_request(options)
3690
+ end
3691
+
3108
3692
  # An estimate of the number of aggregation functions that the member who
3109
3693
  # can query can run given epsilon and noise parameters.
3110
3694
  #
@@ -3658,6 +4242,125 @@ module Aws::CleanRooms
3658
4242
  req.send_request(options)
3659
4243
  end
3660
4244
 
4245
+ # Provides the details that are necessary to update an ID mapping table.
4246
+ #
4247
+ # @option params [required, String] :id_mapping_table_identifier
4248
+ # The unique identifier of the ID mapping table that you want to update.
4249
+ #
4250
+ # @option params [required, String] :membership_identifier
4251
+ # The unique identifier of the membership that contains the ID mapping
4252
+ # table that you want to update.
4253
+ #
4254
+ # @option params [String] :description
4255
+ # A new description for the ID mapping table.
4256
+ #
4257
+ # @option params [String] :kms_key_arn
4258
+ # The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
4259
+ #
4260
+ # @return [Types::UpdateIdMappingTableOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4261
+ #
4262
+ # * {Types::UpdateIdMappingTableOutput#id_mapping_table #id_mapping_table} => Types::IdMappingTable
4263
+ #
4264
+ # @example Request syntax with placeholder values
4265
+ #
4266
+ # resp = client.update_id_mapping_table({
4267
+ # id_mapping_table_identifier: "UUID", # required
4268
+ # membership_identifier: "MembershipIdentifier", # required
4269
+ # description: "ResourceDescription",
4270
+ # kms_key_arn: "KMSKeyArn",
4271
+ # })
4272
+ #
4273
+ # @example Response structure
4274
+ #
4275
+ # resp.id_mapping_table.id #=> String
4276
+ # resp.id_mapping_table.arn #=> String
4277
+ # resp.id_mapping_table.input_reference_config.input_reference_arn #=> String
4278
+ # resp.id_mapping_table.input_reference_config.manage_resource_policies #=> Boolean
4279
+ # resp.id_mapping_table.membership_id #=> String
4280
+ # resp.id_mapping_table.membership_arn #=> String
4281
+ # resp.id_mapping_table.collaboration_id #=> String
4282
+ # resp.id_mapping_table.collaboration_arn #=> String
4283
+ # resp.id_mapping_table.description #=> String
4284
+ # resp.id_mapping_table.name #=> String
4285
+ # resp.id_mapping_table.create_time #=> Time
4286
+ # resp.id_mapping_table.update_time #=> Time
4287
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source #=> Array
4288
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source[0].id_namespace_association_id #=> String
4289
+ # resp.id_mapping_table.input_reference_properties.id_mapping_table_input_source[0].type #=> String, one of "SOURCE", "TARGET"
4290
+ # resp.id_mapping_table.kms_key_arn #=> String
4291
+ #
4292
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdMappingTable AWS API Documentation
4293
+ #
4294
+ # @overload update_id_mapping_table(params = {})
4295
+ # @param [Hash] params ({})
4296
+ def update_id_mapping_table(params = {}, options = {})
4297
+ req = build_request(:update_id_mapping_table, params)
4298
+ req.send_request(options)
4299
+ end
4300
+
4301
+ # Provides the details that are necessary to update an ID namespace
4302
+ # association.
4303
+ #
4304
+ # @option params [required, String] :id_namespace_association_identifier
4305
+ # The unique identifier of the ID namespace association that you want to
4306
+ # update.
4307
+ #
4308
+ # @option params [required, String] :membership_identifier
4309
+ # The unique identifier of the membership that contains the ID namespace
4310
+ # association that you want to update.
4311
+ #
4312
+ # @option params [String] :name
4313
+ # A new name for the ID namespace association.
4314
+ #
4315
+ # @option params [String] :description
4316
+ # A new description for the ID namespace association.
4317
+ #
4318
+ # @option params [Types::IdMappingConfig] :id_mapping_config
4319
+ # The configuration settings for the ID mapping table.
4320
+ #
4321
+ # @return [Types::UpdateIdNamespaceAssociationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4322
+ #
4323
+ # * {Types::UpdateIdNamespaceAssociationOutput#id_namespace_association #id_namespace_association} => Types::IdNamespaceAssociation
4324
+ #
4325
+ # @example Request syntax with placeholder values
4326
+ #
4327
+ # resp = client.update_id_namespace_association({
4328
+ # id_namespace_association_identifier: "IdNamespaceAssociationIdentifier", # required
4329
+ # membership_identifier: "MembershipIdentifier", # required
4330
+ # name: "GenericResourceName",
4331
+ # description: "ResourceDescription",
4332
+ # id_mapping_config: {
4333
+ # allow_use_as_dimension_column: false, # required
4334
+ # },
4335
+ # })
4336
+ #
4337
+ # @example Response structure
4338
+ #
4339
+ # resp.id_namespace_association.id #=> String
4340
+ # resp.id_namespace_association.arn #=> String
4341
+ # resp.id_namespace_association.membership_id #=> String
4342
+ # resp.id_namespace_association.membership_arn #=> String
4343
+ # resp.id_namespace_association.collaboration_id #=> String
4344
+ # resp.id_namespace_association.collaboration_arn #=> String
4345
+ # resp.id_namespace_association.name #=> String
4346
+ # resp.id_namespace_association.description #=> String
4347
+ # resp.id_namespace_association.create_time #=> Time
4348
+ # resp.id_namespace_association.update_time #=> Time
4349
+ # resp.id_namespace_association.input_reference_config.input_reference_arn #=> String
4350
+ # resp.id_namespace_association.input_reference_config.manage_resource_policies #=> Boolean
4351
+ # resp.id_namespace_association.input_reference_properties.id_namespace_type #=> String, one of "SOURCE", "TARGET"
4352
+ # resp.id_namespace_association.input_reference_properties.id_mapping_workflows_supported #=> Array
4353
+ # resp.id_namespace_association.id_mapping_config.allow_use_as_dimension_column #=> Boolean
4354
+ #
4355
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdNamespaceAssociation AWS API Documentation
4356
+ #
4357
+ # @overload update_id_namespace_association(params = {})
4358
+ # @param [Hash] params ({})
4359
+ def update_id_namespace_association(params = {}, options = {})
4360
+ req = build_request(:update_id_namespace_association, params)
4361
+ req.send_request(options)
4362
+ end
4363
+
3661
4364
  # Updates a membership.
3662
4365
  #
3663
4366
  # @option params [required, String] :membership_identifier
@@ -3855,7 +4558,7 @@ module Aws::CleanRooms
3855
4558
  params: params,
3856
4559
  config: config)
3857
4560
  context[:gem_name] = 'aws-sdk-cleanrooms'
3858
- context[:gem_version] = '1.25.0'
4561
+ context[:gem_version] = '1.26.0'
3859
4562
  Seahorse::Client::Request.new(handlers, context)
3860
4563
  end
3861
4564