aws-sdk-cleanrooms 1.25.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -188,6 +188,15 @@ module Aws::CleanRooms
188
188
  # returned.
189
189
  # @return [Array<Types::AggregationConstraint>]
190
190
  #
191
+ # @!attribute [rw] additional_analyses
192
+ # An indicator as to whether additional analyses (such as Clean Rooms
193
+ # ML) can be applied to the output of the direct query.
194
+ #
195
+ # The `additionalAnalyses` parameter is currently supported for the
196
+ # list analysis rule (`AnalysisRuleList`) and the custom analysis rule
197
+ # (`AnalysisRuleCustom`).
198
+ # @return [String]
199
+ #
191
200
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRuleAggregation AWS API Documentation
192
201
  #
193
202
  class AnalysisRuleAggregation < Struct.new(
@@ -197,7 +206,8 @@ module Aws::CleanRooms
197
206
  :allowed_join_operators,
198
207
  :dimension_columns,
199
208
  :scalar_functions,
200
- :output_constraints)
209
+ :output_constraints,
210
+ :additional_analyses)
201
211
  SENSITIVE = []
202
212
  include Aws::Structure
203
213
  end
@@ -217,6 +227,16 @@ module Aws::CleanRooms
217
227
  # is `ANY_QUERY`.
218
228
  # @return [Array<String>]
219
229
  #
230
+ # @!attribute [rw] additional_analyses
231
+ # An indicator as to whether additional analyses (such as Clean Rooms
232
+ # ML) can be applied to the output of the direct query.
233
+ # @return [String]
234
+ #
235
+ # @!attribute [rw] disallowed_output_columns
236
+ # A list of columns that aren't allowed to be shown in the query
237
+ # output.
238
+ # @return [Array<String>]
239
+ #
220
240
  # @!attribute [rw] differential_privacy
221
241
  # The differential privacy configuration.
222
242
  # @return [Types::DifferentialPrivacyConfiguration]
@@ -226,11 +246,39 @@ module Aws::CleanRooms
226
246
  class AnalysisRuleCustom < Struct.new(
227
247
  :allowed_analyses,
228
248
  :allowed_analysis_providers,
249
+ :additional_analyses,
250
+ :disallowed_output_columns,
229
251
  :differential_privacy)
230
252
  SENSITIVE = []
231
253
  include Aws::Structure
232
254
  end
233
255
 
256
+ # Defines details for the analysis rule ID mapping table.
257
+ #
258
+ # @!attribute [rw] join_columns
259
+ # The columns that query runners are allowed to use in an INNER JOIN
260
+ # statement.
261
+ # @return [Array<String>]
262
+ #
263
+ # @!attribute [rw] query_constraints
264
+ # The query constraints of the analysis rule ID mapping table.
265
+ # @return [Array<Types::QueryConstraint>]
266
+ #
267
+ # @!attribute [rw] dimension_columns
268
+ # The columns that query runners are allowed to select, group by, or
269
+ # filter by.
270
+ # @return [Array<String>]
271
+ #
272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRuleIdMappingTable AWS API Documentation
273
+ #
274
+ class AnalysisRuleIdMappingTable < Struct.new(
275
+ :join_columns,
276
+ :query_constraints,
277
+ :dimension_columns)
278
+ SENSITIVE = []
279
+ include Aws::Structure
280
+ end
281
+
234
282
  # A type of analysis rule that enables row-level analysis.
235
283
  #
236
284
  # @!attribute [rw] join_columns
@@ -247,12 +295,18 @@ module Aws::CleanRooms
247
295
  # Columns that can be listed in the output.
248
296
  # @return [Array<String>]
249
297
  #
298
+ # @!attribute [rw] additional_analyses
299
+ # An indicator as to whether additional analyses (such as Clean Rooms
300
+ # ML) can be applied to the output of the direct query.
301
+ # @return [String]
302
+ #
250
303
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRuleList AWS API Documentation
251
304
  #
252
305
  class AnalysisRuleList < Struct.new(
253
306
  :join_columns,
254
307
  :allowed_join_operators,
255
- :list_columns)
308
+ :list_columns,
309
+ :additional_analyses)
256
310
  SENSITIVE = []
257
311
  include Aws::Structure
258
312
  end
@@ -300,12 +354,17 @@ module Aws::CleanRooms
300
354
  # table.
301
355
  # @return [Types::AnalysisRuleCustom]
302
356
  #
357
+ # @!attribute [rw] id_mapping_table
358
+ # The ID mapping table.
359
+ # @return [Types::AnalysisRuleIdMappingTable]
360
+ #
303
361
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRulePolicyV1 AWS API Documentation
304
362
  #
305
363
  class AnalysisRulePolicyV1 < Struct.new(
306
364
  :list,
307
365
  :aggregation,
308
366
  :custom,
367
+ :id_mapping_table,
309
368
  :unknown)
310
369
  SENSITIVE = []
311
370
  include Aws::Structure
@@ -314,6 +373,7 @@ module Aws::CleanRooms
314
373
  class List < AnalysisRulePolicyV1; end
315
374
  class Aggregation < AnalysisRulePolicyV1; end
316
375
  class Custom < AnalysisRulePolicyV1; end
376
+ class IdMappingTable < AnalysisRulePolicyV1; end
317
377
  class Unknown < AnalysisRulePolicyV1; end
318
378
  end
319
379
 
@@ -1091,6 +1151,156 @@ module Aws::CleanRooms
1091
1151
  include Aws::Structure
1092
1152
  end
1093
1153
 
1154
+ # Defines details for the collaboration ID namespace association.
1155
+ #
1156
+ # @!attribute [rw] id
1157
+ # The unique identifier of the collaboration ID namespace association.
1158
+ # @return [String]
1159
+ #
1160
+ # @!attribute [rw] arn
1161
+ # The Amazon Resource Name (ARN) of the collaboration ID namespace
1162
+ # association.
1163
+ # @return [String]
1164
+ #
1165
+ # @!attribute [rw] collaboration_id
1166
+ # The unique identifier of the collaboration that contains the
1167
+ # collaboration ID namespace association.
1168
+ # @return [String]
1169
+ #
1170
+ # @!attribute [rw] collaboration_arn
1171
+ # The Amazon Resource Name (ARN) of the collaboration that contains
1172
+ # the collaboration ID namespace association.
1173
+ # @return [String]
1174
+ #
1175
+ # @!attribute [rw] name
1176
+ # The name of the collaboration ID namespace association.
1177
+ # @return [String]
1178
+ #
1179
+ # @!attribute [rw] description
1180
+ # The description of the collaboration ID namespace association.
1181
+ # @return [String]
1182
+ #
1183
+ # @!attribute [rw] creator_account_id
1184
+ # The unique identifier of the Amazon Web Services account that
1185
+ # created the collaboration ID namespace association.
1186
+ # @return [String]
1187
+ #
1188
+ # @!attribute [rw] create_time
1189
+ # The time at which the collaboration ID namespace association was
1190
+ # created.
1191
+ # @return [Time]
1192
+ #
1193
+ # @!attribute [rw] update_time
1194
+ # The most recent time at which the collaboration ID namespace was
1195
+ # updated.
1196
+ # @return [Time]
1197
+ #
1198
+ # @!attribute [rw] input_reference_config
1199
+ # The input reference configuration that's necessary to create the
1200
+ # collaboration ID namespace association.
1201
+ # @return [Types::IdNamespaceAssociationInputReferenceConfig]
1202
+ #
1203
+ # @!attribute [rw] input_reference_properties
1204
+ # The input reference properties that are needed to create the
1205
+ # collaboration ID namespace association.
1206
+ # @return [Types::IdNamespaceAssociationInputReferenceProperties]
1207
+ #
1208
+ # @!attribute [rw] id_mapping_config
1209
+ # The configuration settings for the ID mapping table.
1210
+ # @return [Types::IdMappingConfig]
1211
+ #
1212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationIdNamespaceAssociation AWS API Documentation
1213
+ #
1214
+ class CollaborationIdNamespaceAssociation < Struct.new(
1215
+ :id,
1216
+ :arn,
1217
+ :collaboration_id,
1218
+ :collaboration_arn,
1219
+ :name,
1220
+ :description,
1221
+ :creator_account_id,
1222
+ :create_time,
1223
+ :update_time,
1224
+ :input_reference_config,
1225
+ :input_reference_properties,
1226
+ :id_mapping_config)
1227
+ SENSITIVE = []
1228
+ include Aws::Structure
1229
+ end
1230
+
1231
+ # Provides summary information about the collaboration ID namespace
1232
+ # association.
1233
+ #
1234
+ # @!attribute [rw] arn
1235
+ # The Amazon Resource Name (ARN) of the collaboration ID namespace
1236
+ # association.
1237
+ # @return [String]
1238
+ #
1239
+ # @!attribute [rw] create_time
1240
+ # The time at which the collaboration ID namespace association was
1241
+ # created.
1242
+ # @return [Time]
1243
+ #
1244
+ # @!attribute [rw] id
1245
+ # The unique identifier of the collaboration ID namespace association.
1246
+ # @return [String]
1247
+ #
1248
+ # @!attribute [rw] update_time
1249
+ # The most recent time at which the collaboration ID namespace
1250
+ # association was updated.
1251
+ # @return [Time]
1252
+ #
1253
+ # @!attribute [rw] collaboration_arn
1254
+ # The Amazon Resource Name (ARN) of the collaboration that contains
1255
+ # this collaboration ID namespace association.
1256
+ # @return [String]
1257
+ #
1258
+ # @!attribute [rw] collaboration_id
1259
+ # The unique identifier of the collaboration that contains this
1260
+ # collaboration ID namespace association.
1261
+ # @return [String]
1262
+ #
1263
+ # @!attribute [rw] creator_account_id
1264
+ # The Amazon Web Services account that created this collaboration ID
1265
+ # namespace association.
1266
+ # @return [String]
1267
+ #
1268
+ # @!attribute [rw] input_reference_config
1269
+ # The input reference configuration that's used to create the
1270
+ # collaboration ID namespace association.
1271
+ # @return [Types::IdNamespaceAssociationInputReferenceConfig]
1272
+ #
1273
+ # @!attribute [rw] name
1274
+ # The name of the collaboration ID namespace association.
1275
+ # @return [String]
1276
+ #
1277
+ # @!attribute [rw] description
1278
+ # The description of the collaboration ID namepsace association.
1279
+ # @return [String]
1280
+ #
1281
+ # @!attribute [rw] input_reference_properties
1282
+ # The input reference properties that are used to create the
1283
+ # collaboration ID namespace association.
1284
+ # @return [Types::IdNamespaceAssociationInputReferencePropertiesSummary]
1285
+ #
1286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationIdNamespaceAssociationSummary AWS API Documentation
1287
+ #
1288
+ class CollaborationIdNamespaceAssociationSummary < Struct.new(
1289
+ :arn,
1290
+ :create_time,
1291
+ :id,
1292
+ :update_time,
1293
+ :collaboration_arn,
1294
+ :collaboration_id,
1295
+ :creator_account_id,
1296
+ :input_reference_config,
1297
+ :name,
1298
+ :description,
1299
+ :input_reference_properties)
1300
+ SENSITIVE = []
1301
+ include Aws::Structure
1302
+ end
1303
+
1094
1304
  # A summary of the collaboration privacy budgets. This summary includes
1095
1305
  # the collaboration information, creation information, epsilon provided,
1096
1306
  # and utility in terms of aggregations.
@@ -1365,6 +1575,27 @@ module Aws::CleanRooms
1365
1575
  include Aws::Structure
1366
1576
  end
1367
1577
 
1578
+ # The configuration details.
1579
+ #
1580
+ # @note ConfigurationDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfigurationDetails corresponding to the set member.
1581
+ #
1582
+ # @!attribute [rw] direct_analysis_configuration_details
1583
+ # The direct analysis configuration details.
1584
+ # @return [Types::DirectAnalysisConfigurationDetails]
1585
+ #
1586
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfigurationDetails AWS API Documentation
1587
+ #
1588
+ class ConfigurationDetails < Struct.new(
1589
+ :direct_analysis_configuration_details,
1590
+ :unknown)
1591
+ SENSITIVE = []
1592
+ include Aws::Structure
1593
+ include Aws::Structure::Union
1594
+
1595
+ class DirectAnalysisConfigurationDetails < ConfigurationDetails; end
1596
+ class Unknown < ConfigurationDetails; end
1597
+ end
1598
+
1368
1599
  # Details about the configured audience model association.
1369
1600
  #
1370
1601
  # @!attribute [rw] id
@@ -1732,6 +1963,10 @@ module Aws::CleanRooms
1732
1963
  # A description of the configured table association.
1733
1964
  # @return [String]
1734
1965
  #
1966
+ # @!attribute [rw] analysis_rule_types
1967
+ # The analysis rule types for the configured table association.
1968
+ # @return [Array<String>]
1969
+ #
1735
1970
  # @!attribute [rw] create_time
1736
1971
  # The time the configured table association was created.
1737
1972
  # @return [Time]
@@ -1752,12 +1987,196 @@ module Aws::CleanRooms
1752
1987
  :role_arn,
1753
1988
  :name,
1754
1989
  :description,
1990
+ :analysis_rule_types,
1991
+ :create_time,
1992
+ :update_time)
1993
+ SENSITIVE = []
1994
+ include Aws::Structure
1995
+ end
1996
+
1997
+ # An analysis rule for a configured table association. This analysis
1998
+ # rule specifies how data from the table can be used within its
1999
+ # associated collaboration. In the console, the
2000
+ # `ConfiguredTableAssociationAnalysisRule` is referred to as the
2001
+ # *collaboration analysis rule*.
2002
+ #
2003
+ # @!attribute [rw] membership_identifier
2004
+ # The membership identifier for the configured table association
2005
+ # analysis rule.
2006
+ # @return [String]
2007
+ #
2008
+ # @!attribute [rw] configured_table_association_id
2009
+ # The unique identifier for the configured table association.
2010
+ # @return [String]
2011
+ #
2012
+ # @!attribute [rw] configured_table_association_arn
2013
+ # The Amazon Resource Name (ARN) of the configured table association.
2014
+ # @return [String]
2015
+ #
2016
+ # @!attribute [rw] policy
2017
+ # The policy of the configured table association analysis rule.
2018
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicy]
2019
+ #
2020
+ # @!attribute [rw] type
2021
+ # The type of the configured table association analysis rule.
2022
+ # @return [String]
2023
+ #
2024
+ # @!attribute [rw] create_time
2025
+ # The creation time of the configured table association analysis rule.
2026
+ # @return [Time]
2027
+ #
2028
+ # @!attribute [rw] update_time
2029
+ # The update time of the configured table association analysis rule.
2030
+ # @return [Time]
2031
+ #
2032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRule AWS API Documentation
2033
+ #
2034
+ class ConfiguredTableAssociationAnalysisRule < Struct.new(
2035
+ :membership_identifier,
2036
+ :configured_table_association_id,
2037
+ :configured_table_association_arn,
2038
+ :policy,
2039
+ :type,
1755
2040
  :create_time,
1756
2041
  :update_time)
1757
2042
  SENSITIVE = []
1758
2043
  include Aws::Structure
1759
2044
  end
1760
2045
 
2046
+ # The configured table association analysis rule applied to a configured
2047
+ # table with the aggregation analysis rule.
2048
+ #
2049
+ # @!attribute [rw] allowed_result_receivers
2050
+ # The list of collaboration members who are allowed to receive results
2051
+ # of queries run with this configured table.
2052
+ # @return [Array<String>]
2053
+ #
2054
+ # @!attribute [rw] allowed_additional_analyses
2055
+ # The list of resources or wildcards (ARNs) that are allowed to
2056
+ # perform additional analysis on query output.
2057
+ #
2058
+ # The `allowedAdditionalAnalyses` parameter is currently supported for
2059
+ # the list analysis rule (`AnalysisRuleList`) and the custom analysis
2060
+ # rule (`AnalysisRuleCustom`).
2061
+ # @return [Array<String>]
2062
+ #
2063
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRuleAggregation AWS API Documentation
2064
+ #
2065
+ class ConfiguredTableAssociationAnalysisRuleAggregation < Struct.new(
2066
+ :allowed_result_receivers,
2067
+ :allowed_additional_analyses)
2068
+ SENSITIVE = []
2069
+ include Aws::Structure
2070
+ end
2071
+
2072
+ # The configured table association analysis rule applied to a configured
2073
+ # table with the custom analysis rule.
2074
+ #
2075
+ # @!attribute [rw] allowed_result_receivers
2076
+ # The list of collaboration members who are allowed to receive results
2077
+ # of queries run with this configured table.
2078
+ # @return [Array<String>]
2079
+ #
2080
+ # @!attribute [rw] allowed_additional_analyses
2081
+ # The list of resources or wildcards (ARNs) that are allowed to
2082
+ # perform additional analysis on query output.
2083
+ # @return [Array<String>]
2084
+ #
2085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRuleCustom AWS API Documentation
2086
+ #
2087
+ class ConfiguredTableAssociationAnalysisRuleCustom < Struct.new(
2088
+ :allowed_result_receivers,
2089
+ :allowed_additional_analyses)
2090
+ SENSITIVE = []
2091
+ include Aws::Structure
2092
+ end
2093
+
2094
+ # The configured table association analysis rule applied to a configured
2095
+ # table with the list analysis rule.
2096
+ #
2097
+ # @!attribute [rw] allowed_result_receivers
2098
+ # The list of collaboration members who are allowed to receive results
2099
+ # of queries run with this configured table.
2100
+ # @return [Array<String>]
2101
+ #
2102
+ # @!attribute [rw] allowed_additional_analyses
2103
+ # The list of resources or wildcards (ARNs) that are allowed to
2104
+ # perform additional analysis on query output.
2105
+ # @return [Array<String>]
2106
+ #
2107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRuleList AWS API Documentation
2108
+ #
2109
+ class ConfiguredTableAssociationAnalysisRuleList < Struct.new(
2110
+ :allowed_result_receivers,
2111
+ :allowed_additional_analyses)
2112
+ SENSITIVE = []
2113
+ include Aws::Structure
2114
+ end
2115
+
2116
+ # Controls on the query specifications that can be run on an associated
2117
+ # configured table.
2118
+ #
2119
+ # @note ConfiguredTableAssociationAnalysisRulePolicy is a union - when making an API calls you must set exactly one of the members.
2120
+ #
2121
+ # @note ConfiguredTableAssociationAnalysisRulePolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAssociationAnalysisRulePolicy corresponding to the set member.
2122
+ #
2123
+ # @!attribute [rw] v1
2124
+ # The policy for the configured table association analysis rule.
2125
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicyV1]
2126
+ #
2127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRulePolicy AWS API Documentation
2128
+ #
2129
+ class ConfiguredTableAssociationAnalysisRulePolicy < Struct.new(
2130
+ :v1,
2131
+ :unknown)
2132
+ SENSITIVE = []
2133
+ include Aws::Structure
2134
+ include Aws::Structure::Union
2135
+
2136
+ class V1 < ConfiguredTableAssociationAnalysisRulePolicy; end
2137
+ class Unknown < ConfiguredTableAssociationAnalysisRulePolicy; end
2138
+ end
2139
+
2140
+ # Controls on the query specifications that can be run on an associated
2141
+ # configured table.
2142
+ #
2143
+ # @note ConfiguredTableAssociationAnalysisRulePolicyV1 is a union - when making an API calls you must set exactly one of the members.
2144
+ #
2145
+ # @note ConfiguredTableAssociationAnalysisRulePolicyV1 is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAssociationAnalysisRulePolicyV1 corresponding to the set member.
2146
+ #
2147
+ # @!attribute [rw] list
2148
+ # Analysis rule type that enables only list queries on a configured
2149
+ # table.
2150
+ # @return [Types::ConfiguredTableAssociationAnalysisRuleList]
2151
+ #
2152
+ # @!attribute [rw] aggregation
2153
+ # Analysis rule type that enables only aggregation queries on a
2154
+ # configured table.
2155
+ # @return [Types::ConfiguredTableAssociationAnalysisRuleAggregation]
2156
+ #
2157
+ # @!attribute [rw] custom
2158
+ # Analysis rule type that enables the table owner to approve custom
2159
+ # SQL queries on their configured tables. It supports differential
2160
+ # privacy.
2161
+ # @return [Types::ConfiguredTableAssociationAnalysisRuleCustom]
2162
+ #
2163
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ConfiguredTableAssociationAnalysisRulePolicyV1 AWS API Documentation
2164
+ #
2165
+ class ConfiguredTableAssociationAnalysisRulePolicyV1 < Struct.new(
2166
+ :list,
2167
+ :aggregation,
2168
+ :custom,
2169
+ :unknown)
2170
+ SENSITIVE = []
2171
+ include Aws::Structure
2172
+ include Aws::Structure::Union
2173
+
2174
+ class List < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2175
+ class Aggregation < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2176
+ class Custom < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2177
+ class Unknown < ConfiguredTableAssociationAnalysisRulePolicyV1; end
2178
+ end
2179
+
1761
2180
  # The configured table association summary for the objects listed by the
1762
2181
  # request.
1763
2182
  #
@@ -2009,7 +2428,7 @@ module Aws::CleanRooms
2009
2428
  end
2010
2429
 
2011
2430
  # @!attribute [rw] collaboration
2012
- # The entire created collaboration object.
2431
+ # The collaboration.
2013
2432
  # @return [Types::Collaboration]
2014
2433
  #
2015
2434
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateCollaborationOutput AWS API Documentation
@@ -2096,7 +2515,7 @@ module Aws::CleanRooms
2096
2515
  # @return [String]
2097
2516
  #
2098
2517
  # @!attribute [rw] analysis_rule_policy
2099
- # The entire created configured table analysis rule object.
2518
+ # The analysis rule policy that was created for the configured table.
2100
2519
  # @return [Types::ConfiguredTableAnalysisRulePolicy]
2101
2520
  #
2102
2521
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAnalysisRuleInput AWS API Documentation
@@ -2110,7 +2529,7 @@ module Aws::CleanRooms
2110
2529
  end
2111
2530
 
2112
2531
  # @!attribute [rw] analysis_rule
2113
- # The entire created analysis rule.
2532
+ # The analysis rule that was created for the configured table.
2114
2533
  # @return [Types::ConfiguredTableAnalysisRule]
2115
2534
  #
2116
2535
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAnalysisRuleOutput AWS API Documentation
@@ -2121,23 +2540,67 @@ module Aws::CleanRooms
2121
2540
  include Aws::Structure
2122
2541
  end
2123
2542
 
2124
- # @!attribute [rw] name
2125
- # The name of the configured table association. This name is used to
2126
- # query the underlying configured table.
2543
+ # @!attribute [rw] membership_identifier
2544
+ # A unique identifier for the membership that the configured table
2545
+ # association belongs to. Currently accepts the membership ID.
2127
2546
  # @return [String]
2128
2547
  #
2129
- # @!attribute [rw] description
2130
- # A description for the configured table association.
2548
+ # @!attribute [rw] configured_table_association_identifier
2549
+ # The unique ID for the configured table association. Currently
2550
+ # accepts the configured table association ID.
2131
2551
  # @return [String]
2132
2552
  #
2133
- # @!attribute [rw] membership_identifier
2134
- # A unique identifier for one of your memberships for a collaboration.
2135
- # The configured table is associated to the collaboration that this
2136
- # membership belongs to. Currently accepts a membership ID.
2553
+ # @!attribute [rw] analysis_rule_type
2554
+ # The type of analysis rule.
2137
2555
  # @return [String]
2138
2556
  #
2139
- # @!attribute [rw] configured_table_identifier
2140
- # A unique identifier for the configured table to be associated to.
2557
+ # @!attribute [rw] analysis_rule_policy
2558
+ # The analysis rule policy that was created for the configured table
2559
+ # association.
2560
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicy]
2561
+ #
2562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
2563
+ #
2564
+ class CreateConfiguredTableAssociationAnalysisRuleInput < Struct.new(
2565
+ :membership_identifier,
2566
+ :configured_table_association_identifier,
2567
+ :analysis_rule_type,
2568
+ :analysis_rule_policy)
2569
+ SENSITIVE = []
2570
+ include Aws::Structure
2571
+ end
2572
+
2573
+ # @!attribute [rw] analysis_rule
2574
+ # The analysis rule for the configured table association. In the
2575
+ # console, the `ConfiguredTableAssociationAnalysisRule` is referred to
2576
+ # as the *collaboration analysis rule*.
2577
+ # @return [Types::ConfiguredTableAssociationAnalysisRule]
2578
+ #
2579
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
2580
+ #
2581
+ class CreateConfiguredTableAssociationAnalysisRuleOutput < Struct.new(
2582
+ :analysis_rule)
2583
+ SENSITIVE = []
2584
+ include Aws::Structure
2585
+ end
2586
+
2587
+ # @!attribute [rw] name
2588
+ # The name of the configured table association. This name is used to
2589
+ # query the underlying configured table.
2590
+ # @return [String]
2591
+ #
2592
+ # @!attribute [rw] description
2593
+ # A description for the configured table association.
2594
+ # @return [String]
2595
+ #
2596
+ # @!attribute [rw] membership_identifier
2597
+ # A unique identifier for one of your memberships for a collaboration.
2598
+ # The configured table is associated to the collaboration that this
2599
+ # membership belongs to. Currently accepts a membership ID.
2600
+ # @return [String]
2601
+ #
2602
+ # @!attribute [rw] configured_table_identifier
2603
+ # A unique identifier for the configured table to be associated to.
2141
2604
  # Currently accepts a configured table ID.
2142
2605
  # @return [String]
2143
2606
  #
@@ -2167,7 +2630,7 @@ module Aws::CleanRooms
2167
2630
  end
2168
2631
 
2169
2632
  # @!attribute [rw] configured_table_association
2170
- # The entire configured table association object.
2633
+ # The configured table association.
2171
2634
  # @return [Types::ConfiguredTableAssociation]
2172
2635
  #
2173
2636
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateConfiguredTableAssociationOutput AWS API Documentation
@@ -2232,6 +2695,116 @@ module Aws::CleanRooms
2232
2695
  include Aws::Structure
2233
2696
  end
2234
2697
 
2698
+ # @!attribute [rw] membership_identifier
2699
+ # The unique identifier of the membership that contains the ID mapping
2700
+ # table.
2701
+ # @return [String]
2702
+ #
2703
+ # @!attribute [rw] name
2704
+ # A name for the ID mapping table.
2705
+ # @return [String]
2706
+ #
2707
+ # @!attribute [rw] description
2708
+ # A description of the ID mapping table.
2709
+ # @return [String]
2710
+ #
2711
+ # @!attribute [rw] input_reference_config
2712
+ # The input reference configuration needed to create the ID mapping
2713
+ # table.
2714
+ # @return [Types::IdMappingTableInputReferenceConfig]
2715
+ #
2716
+ # @!attribute [rw] tags
2717
+ # An optional label that you can assign to a resource when you create
2718
+ # it. Each tag consists of a key and an optional value, both of which
2719
+ # you define. When you use tagging, you can also use tag-based access
2720
+ # control in IAM policies to control access to this resource.
2721
+ # @return [Hash<String,String>]
2722
+ #
2723
+ # @!attribute [rw] kms_key_arn
2724
+ # The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
2725
+ # This value is used to encrypt the mapping table data that is stored
2726
+ # by Clean Rooms.
2727
+ # @return [String]
2728
+ #
2729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdMappingTableInput AWS API Documentation
2730
+ #
2731
+ class CreateIdMappingTableInput < Struct.new(
2732
+ :membership_identifier,
2733
+ :name,
2734
+ :description,
2735
+ :input_reference_config,
2736
+ :tags,
2737
+ :kms_key_arn)
2738
+ SENSITIVE = []
2739
+ include Aws::Structure
2740
+ end
2741
+
2742
+ # @!attribute [rw] id_mapping_table
2743
+ # The ID mapping table that was created.
2744
+ # @return [Types::IdMappingTable]
2745
+ #
2746
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdMappingTableOutput AWS API Documentation
2747
+ #
2748
+ class CreateIdMappingTableOutput < Struct.new(
2749
+ :id_mapping_table)
2750
+ SENSITIVE = []
2751
+ include Aws::Structure
2752
+ end
2753
+
2754
+ # @!attribute [rw] membership_identifier
2755
+ # The unique identifier of the membership that contains the ID
2756
+ # namespace association.
2757
+ # @return [String]
2758
+ #
2759
+ # @!attribute [rw] input_reference_config
2760
+ # The input reference configuration needed to create the ID namespace
2761
+ # association.
2762
+ # @return [Types::IdNamespaceAssociationInputReferenceConfig]
2763
+ #
2764
+ # @!attribute [rw] tags
2765
+ # An optional label that you can assign to a resource when you create
2766
+ # it. Each tag consists of a key and an optional value, both of which
2767
+ # you define. When you use tagging, you can also use tag-based access
2768
+ # control in IAM policies to control access to this resource.
2769
+ # @return [Hash<String,String>]
2770
+ #
2771
+ # @!attribute [rw] name
2772
+ # The name for the ID namespace association.
2773
+ # @return [String]
2774
+ #
2775
+ # @!attribute [rw] description
2776
+ # The description of the ID namespace association.
2777
+ # @return [String]
2778
+ #
2779
+ # @!attribute [rw] id_mapping_config
2780
+ # The configuration settings for the ID mapping table.
2781
+ # @return [Types::IdMappingConfig]
2782
+ #
2783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdNamespaceAssociationInput AWS API Documentation
2784
+ #
2785
+ class CreateIdNamespaceAssociationInput < Struct.new(
2786
+ :membership_identifier,
2787
+ :input_reference_config,
2788
+ :tags,
2789
+ :name,
2790
+ :description,
2791
+ :id_mapping_config)
2792
+ SENSITIVE = []
2793
+ include Aws::Structure
2794
+ end
2795
+
2796
+ # @!attribute [rw] id_namespace_association
2797
+ # The ID namespace association that was created.
2798
+ # @return [Types::IdNamespaceAssociation]
2799
+ #
2800
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdNamespaceAssociationOutput AWS API Documentation
2801
+ #
2802
+ class CreateIdNamespaceAssociationOutput < Struct.new(
2803
+ :id_namespace_association)
2804
+ SENSITIVE = []
2805
+ include Aws::Structure
2806
+ end
2807
+
2235
2808
  # @!attribute [rw] collaboration_identifier
2236
2809
  # The unique ID for the associated collaboration.
2237
2810
  # @return [String]
@@ -2465,6 +3038,34 @@ module Aws::CleanRooms
2465
3038
  #
2466
3039
  class DeleteConfiguredTableAnalysisRuleOutput < Aws::EmptyStructure; end
2467
3040
 
3041
+ # @!attribute [rw] membership_identifier
3042
+ # A unique identifier for the membership that the configured table
3043
+ # association belongs to. Currently accepts the membership ID.
3044
+ # @return [String]
3045
+ #
3046
+ # @!attribute [rw] configured_table_association_identifier
3047
+ # The identifier for the configured table association that's related to
3048
+ # the analysis rule that you want to delete.
3049
+ # @return [String]
3050
+ #
3051
+ # @!attribute [rw] analysis_rule_type
3052
+ # The type of the analysis rule that you want to delete.
3053
+ # @return [String]
3054
+ #
3055
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
3056
+ #
3057
+ class DeleteConfiguredTableAssociationAnalysisRuleInput < Struct.new(
3058
+ :membership_identifier,
3059
+ :configured_table_association_identifier,
3060
+ :analysis_rule_type)
3061
+ SENSITIVE = []
3062
+ include Aws::Structure
3063
+ end
3064
+
3065
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
3066
+ #
3067
+ class DeleteConfiguredTableAssociationAnalysisRuleOutput < Aws::EmptyStructure; end
3068
+
2468
3069
  # @!attribute [rw] configured_table_association_identifier
2469
3070
  # The unique ID for the configured table association to be deleted.
2470
3071
  # Currently accepts the configured table ID.
@@ -2506,6 +3107,52 @@ module Aws::CleanRooms
2506
3107
  #
2507
3108
  class DeleteConfiguredTableOutput < Aws::EmptyStructure; end
2508
3109
 
3110
+ # @!attribute [rw] id_mapping_table_identifier
3111
+ # The unique identifier of the ID mapping table that you want to
3112
+ # delete.
3113
+ # @return [String]
3114
+ #
3115
+ # @!attribute [rw] membership_identifier
3116
+ # The unique identifier of the membership that contains the ID mapping
3117
+ # table that you want to delete.
3118
+ # @return [String]
3119
+ #
3120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdMappingTableInput AWS API Documentation
3121
+ #
3122
+ class DeleteIdMappingTableInput < Struct.new(
3123
+ :id_mapping_table_identifier,
3124
+ :membership_identifier)
3125
+ SENSITIVE = []
3126
+ include Aws::Structure
3127
+ end
3128
+
3129
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdMappingTableOutput AWS API Documentation
3130
+ #
3131
+ class DeleteIdMappingTableOutput < Aws::EmptyStructure; end
3132
+
3133
+ # @!attribute [rw] id_namespace_association_identifier
3134
+ # The unique identifier of the ID namespace association that you want
3135
+ # to delete.
3136
+ # @return [String]
3137
+ #
3138
+ # @!attribute [rw] membership_identifier
3139
+ # The unique identifier of the membership that contains the ID
3140
+ # namespace association that you want to delete.
3141
+ # @return [String]
3142
+ #
3143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdNamespaceAssociationInput AWS API Documentation
3144
+ #
3145
+ class DeleteIdNamespaceAssociationInput < Struct.new(
3146
+ :id_namespace_association_identifier,
3147
+ :membership_identifier)
3148
+ SENSITIVE = []
3149
+ include Aws::Structure
3150
+ end
3151
+
3152
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdNamespaceAssociationOutput AWS API Documentation
3153
+ #
3154
+ class DeleteIdNamespaceAssociationOutput < Aws::EmptyStructure; end
3155
+
2509
3156
  # @!attribute [rw] collaboration_identifier
2510
3157
  # The unique identifier for the associated collaboration.
2511
3158
  # @return [String]
@@ -2824,6 +3471,21 @@ module Aws::CleanRooms
2824
3471
  include Aws::Structure
2825
3472
  end
2826
3473
 
3474
+ # The direct analysis configuration details.
3475
+ #
3476
+ # @!attribute [rw] receiver_account_ids
3477
+ # The account IDs for the member who received the results of a
3478
+ # protected query.
3479
+ # @return [Array<String>]
3480
+ #
3481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DirectAnalysisConfigurationDetails AWS API Documentation
3482
+ #
3483
+ class DirectAnalysisConfigurationDetails < Struct.new(
3484
+ :receiver_account_ids)
3485
+ SENSITIVE = []
3486
+ include Aws::Structure
3487
+ end
3488
+
2827
3489
  # @!attribute [rw] membership_identifier
2828
3490
  # The identifier for a membership resource.
2829
3491
  # @return [String]
@@ -2915,6 +3577,37 @@ module Aws::CleanRooms
2915
3577
  include Aws::Structure
2916
3578
  end
2917
3579
 
3580
+ # @!attribute [rw] collaboration_identifier
3581
+ # The unique identifier of the collaboration that contains the ID
3582
+ # namespace association that you want to retrieve.
3583
+ # @return [String]
3584
+ #
3585
+ # @!attribute [rw] id_namespace_association_identifier
3586
+ # The unique identifier of the ID namespace association that you want
3587
+ # to retrieve.
3588
+ # @return [String]
3589
+ #
3590
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationIdNamespaceAssociationInput AWS API Documentation
3591
+ #
3592
+ class GetCollaborationIdNamespaceAssociationInput < Struct.new(
3593
+ :collaboration_identifier,
3594
+ :id_namespace_association_identifier)
3595
+ SENSITIVE = []
3596
+ include Aws::Structure
3597
+ end
3598
+
3599
+ # @!attribute [rw] collaboration_id_namespace_association
3600
+ # The ID namespace association that you requested.
3601
+ # @return [Types::CollaborationIdNamespaceAssociation]
3602
+ #
3603
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationIdNamespaceAssociationOutput AWS API Documentation
3604
+ #
3605
+ class GetCollaborationIdNamespaceAssociationOutput < Struct.new(
3606
+ :collaboration_id_namespace_association)
3607
+ SENSITIVE = []
3608
+ include Aws::Structure
3609
+ end
3610
+
2918
3611
  # @!attribute [rw] collaboration_identifier
2919
3612
  # The identifier for the collaboration.
2920
3613
  # @return [String]
@@ -3033,6 +3726,44 @@ module Aws::CleanRooms
3033
3726
  include Aws::Structure
3034
3727
  end
3035
3728
 
3729
+ # @!attribute [rw] membership_identifier
3730
+ # A unique identifier for the membership that the configured table
3731
+ # association belongs to. Currently accepts the membership ID.
3732
+ # @return [String]
3733
+ #
3734
+ # @!attribute [rw] configured_table_association_identifier
3735
+ # The identifier for the configured table association that's related to
3736
+ # the analysis rule.
3737
+ # @return [String]
3738
+ #
3739
+ # @!attribute [rw] analysis_rule_type
3740
+ # The type of analysis rule that you want to retrieve.
3741
+ # @return [String]
3742
+ #
3743
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
3744
+ #
3745
+ class GetConfiguredTableAssociationAnalysisRuleInput < Struct.new(
3746
+ :membership_identifier,
3747
+ :configured_table_association_identifier,
3748
+ :analysis_rule_type)
3749
+ SENSITIVE = []
3750
+ include Aws::Structure
3751
+ end
3752
+
3753
+ # @!attribute [rw] analysis_rule
3754
+ # The analysis rule for the configured table association. In the
3755
+ # console, the `ConfiguredTableAssociationAnalysisRule` is referred to
3756
+ # as the *collaboration analysis rule*.
3757
+ # @return [Types::ConfiguredTableAssociationAnalysisRule]
3758
+ #
3759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
3760
+ #
3761
+ class GetConfiguredTableAssociationAnalysisRuleOutput < Struct.new(
3762
+ :analysis_rule)
3763
+ SENSITIVE = []
3764
+ include Aws::Structure
3765
+ end
3766
+
3036
3767
  # @!attribute [rw] configured_table_association_identifier
3037
3768
  # The unique ID for the configured table association to retrieve.
3038
3769
  # Currently accepts the configured table ID.
@@ -3088,6 +3819,68 @@ module Aws::CleanRooms
3088
3819
  include Aws::Structure
3089
3820
  end
3090
3821
 
3822
+ # @!attribute [rw] id_mapping_table_identifier
3823
+ # The unique identifier of the ID mapping table identifier that you
3824
+ # want to retrieve.
3825
+ # @return [String]
3826
+ #
3827
+ # @!attribute [rw] membership_identifier
3828
+ # The unique identifier of the membership that contains the ID mapping
3829
+ # table that you want to retrieve.
3830
+ # @return [String]
3831
+ #
3832
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdMappingTableInput AWS API Documentation
3833
+ #
3834
+ class GetIdMappingTableInput < Struct.new(
3835
+ :id_mapping_table_identifier,
3836
+ :membership_identifier)
3837
+ SENSITIVE = []
3838
+ include Aws::Structure
3839
+ end
3840
+
3841
+ # @!attribute [rw] id_mapping_table
3842
+ # The ID mapping table that you requested.
3843
+ # @return [Types::IdMappingTable]
3844
+ #
3845
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdMappingTableOutput AWS API Documentation
3846
+ #
3847
+ class GetIdMappingTableOutput < Struct.new(
3848
+ :id_mapping_table)
3849
+ SENSITIVE = []
3850
+ include Aws::Structure
3851
+ end
3852
+
3853
+ # @!attribute [rw] id_namespace_association_identifier
3854
+ # The unique identifier of the ID namespace association that you want
3855
+ # to retrieve.
3856
+ # @return [String]
3857
+ #
3858
+ # @!attribute [rw] membership_identifier
3859
+ # The unique identifier of the membership that contains the ID
3860
+ # namespace association that you want to retrieve.
3861
+ # @return [String]
3862
+ #
3863
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdNamespaceAssociationInput AWS API Documentation
3864
+ #
3865
+ class GetIdNamespaceAssociationInput < Struct.new(
3866
+ :id_namespace_association_identifier,
3867
+ :membership_identifier)
3868
+ SENSITIVE = []
3869
+ include Aws::Structure
3870
+ end
3871
+
3872
+ # @!attribute [rw] id_namespace_association
3873
+ # The ID namespace association that you requested.
3874
+ # @return [Types::IdNamespaceAssociation]
3875
+ #
3876
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdNamespaceAssociationOutput AWS API Documentation
3877
+ #
3878
+ class GetIdNamespaceAssociationOutput < Struct.new(
3879
+ :id_namespace_association)
3880
+ SENSITIVE = []
3881
+ include Aws::Structure
3882
+ end
3883
+
3091
3884
  # @!attribute [rw] membership_identifier
3092
3885
  # The identifier for a membership resource.
3093
3886
  # @return [String]
@@ -3260,6 +4053,458 @@ module Aws::CleanRooms
3260
4053
  include Aws::Structure
3261
4054
  end
3262
4055
 
4056
+ # The configuration settings for the ID mapping table.
4057
+ #
4058
+ # @!attribute [rw] allow_use_as_dimension_column
4059
+ # An indicator as to whether you can use your column as a dimension
4060
+ # column in the ID mapping table (`TRUE`) or not (`FALSE`).
4061
+ #
4062
+ # Default is `FALSE`.
4063
+ # @return [Boolean]
4064
+ #
4065
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingConfig AWS API Documentation
4066
+ #
4067
+ class IdMappingConfig < Struct.new(
4068
+ :allow_use_as_dimension_column)
4069
+ SENSITIVE = []
4070
+ include Aws::Structure
4071
+ end
4072
+
4073
+ # Describes information about the ID mapping table.
4074
+ #
4075
+ # @!attribute [rw] id
4076
+ # The unique identifier of the ID mapping table.
4077
+ # @return [String]
4078
+ #
4079
+ # @!attribute [rw] arn
4080
+ # The Amazon Resource Name (ARN) of the ID mapping table.
4081
+ # @return [String]
4082
+ #
4083
+ # @!attribute [rw] input_reference_config
4084
+ # The input reference configuration for the ID mapping table.
4085
+ # @return [Types::IdMappingTableInputReferenceConfig]
4086
+ #
4087
+ # @!attribute [rw] membership_id
4088
+ # The unique identifier of the membership resource for the ID mapping
4089
+ # table.
4090
+ # @return [String]
4091
+ #
4092
+ # @!attribute [rw] membership_arn
4093
+ # The Amazon Resource Name (ARN) of the membership resource for the ID
4094
+ # mapping table.
4095
+ # @return [String]
4096
+ #
4097
+ # @!attribute [rw] collaboration_id
4098
+ # The unique identifier of the collaboration that contains this ID
4099
+ # mapping table.
4100
+ # @return [String]
4101
+ #
4102
+ # @!attribute [rw] collaboration_arn
4103
+ # The Amazon Resource Name (ARN) of the collaboration that contains
4104
+ # this ID mapping table.
4105
+ # @return [String]
4106
+ #
4107
+ # @!attribute [rw] description
4108
+ # The description of the ID mapping table.
4109
+ # @return [String]
4110
+ #
4111
+ # @!attribute [rw] name
4112
+ # The name of the ID mapping table.
4113
+ # @return [String]
4114
+ #
4115
+ # @!attribute [rw] create_time
4116
+ # The time at which the ID mapping table was created.
4117
+ # @return [Time]
4118
+ #
4119
+ # @!attribute [rw] update_time
4120
+ # The most recent time at which the ID mapping table was updated.
4121
+ # @return [Time]
4122
+ #
4123
+ # @!attribute [rw] input_reference_properties
4124
+ # The input reference properties for the ID mapping table.
4125
+ # @return [Types::IdMappingTableInputReferenceProperties]
4126
+ #
4127
+ # @!attribute [rw] kms_key_arn
4128
+ # The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
4129
+ # @return [String]
4130
+ #
4131
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTable AWS API Documentation
4132
+ #
4133
+ class IdMappingTable < Struct.new(
4134
+ :id,
4135
+ :arn,
4136
+ :input_reference_config,
4137
+ :membership_id,
4138
+ :membership_arn,
4139
+ :collaboration_id,
4140
+ :collaboration_arn,
4141
+ :description,
4142
+ :name,
4143
+ :create_time,
4144
+ :update_time,
4145
+ :input_reference_properties,
4146
+ :kms_key_arn)
4147
+ SENSITIVE = []
4148
+ include Aws::Structure
4149
+ end
4150
+
4151
+ # Provides the input reference configuration for the ID mapping table.
4152
+ #
4153
+ # @!attribute [rw] input_reference_arn
4154
+ # The Amazon Resource Name (ARN) of the referenced resource in Entity
4155
+ # Resolution. Valid values are ID mapping workflow ARNs.
4156
+ # @return [String]
4157
+ #
4158
+ # @!attribute [rw] manage_resource_policies
4159
+ # When `TRUE`, Clean Rooms manages permissions for the ID mapping
4160
+ # table resource.
4161
+ #
4162
+ # When `FALSE`, the resource owner manages permissions for the ID
4163
+ # mapping table resource.
4164
+ # @return [Boolean]
4165
+ #
4166
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableInputReferenceConfig AWS API Documentation
4167
+ #
4168
+ class IdMappingTableInputReferenceConfig < Struct.new(
4169
+ :input_reference_arn,
4170
+ :manage_resource_policies)
4171
+ SENSITIVE = []
4172
+ include Aws::Structure
4173
+ end
4174
+
4175
+ # The input reference properties for the ID mapping table.
4176
+ #
4177
+ # @!attribute [rw] id_mapping_table_input_source
4178
+ # The input source of the ID mapping table.
4179
+ # @return [Array<Types::IdMappingTableInputSource>]
4180
+ #
4181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableInputReferenceProperties AWS API Documentation
4182
+ #
4183
+ class IdMappingTableInputReferenceProperties < Struct.new(
4184
+ :id_mapping_table_input_source)
4185
+ SENSITIVE = []
4186
+ include Aws::Structure
4187
+ end
4188
+
4189
+ # The input source of the ID mapping table.
4190
+ #
4191
+ # @!attribute [rw] id_namespace_association_id
4192
+ # The unique identifier of the ID namespace association.
4193
+ # @return [String]
4194
+ #
4195
+ # @!attribute [rw] type
4196
+ # The type of the input source of the ID mapping table.
4197
+ # @return [String]
4198
+ #
4199
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableInputSource AWS API Documentation
4200
+ #
4201
+ class IdMappingTableInputSource < Struct.new(
4202
+ :id_namespace_association_id,
4203
+ :type)
4204
+ SENSITIVE = []
4205
+ include Aws::Structure
4206
+ end
4207
+
4208
+ # Additional properties that are specific to the type of the associated
4209
+ # schema.
4210
+ #
4211
+ # @!attribute [rw] id_mapping_table_input_source
4212
+ # Defines which ID namespace associations are used to create the ID
4213
+ # mapping table.
4214
+ # @return [Array<Types::IdMappingTableInputSource>]
4215
+ #
4216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableSchemaTypeProperties AWS API Documentation
4217
+ #
4218
+ class IdMappingTableSchemaTypeProperties < Struct.new(
4219
+ :id_mapping_table_input_source)
4220
+ SENSITIVE = []
4221
+ include Aws::Structure
4222
+ end
4223
+
4224
+ # Detailed information about the ID mapping table.
4225
+ #
4226
+ # @!attribute [rw] collaboration_arn
4227
+ # The Amazon Resource Name (ARN) of the collaboration that contains
4228
+ # this ID mapping table.
4229
+ # @return [String]
4230
+ #
4231
+ # @!attribute [rw] collaboration_id
4232
+ # The unique identifier of the collaboration that contains this ID
4233
+ # mapping table.
4234
+ # @return [String]
4235
+ #
4236
+ # @!attribute [rw] membership_id
4237
+ # The unique identifier of the membership resource for this ID mapping
4238
+ # table.
4239
+ # @return [String]
4240
+ #
4241
+ # @!attribute [rw] membership_arn
4242
+ # The Amazon Resource Name (ARN) of the membership resource for this
4243
+ # ID mapping table.
4244
+ # @return [String]
4245
+ #
4246
+ # @!attribute [rw] create_time
4247
+ # The time at which this ID mapping table was created.
4248
+ # @return [Time]
4249
+ #
4250
+ # @!attribute [rw] update_time
4251
+ # The most recent time at which this ID mapping table was updated.
4252
+ # @return [Time]
4253
+ #
4254
+ # @!attribute [rw] id
4255
+ # The unique identifier of this ID mapping table.
4256
+ # @return [String]
4257
+ #
4258
+ # @!attribute [rw] arn
4259
+ # The Amazon Resource Name (ARN) of this ID mapping table.
4260
+ # @return [String]
4261
+ #
4262
+ # @!attribute [rw] description
4263
+ # The description of this ID mapping table.
4264
+ # @return [String]
4265
+ #
4266
+ # @!attribute [rw] input_reference_config
4267
+ # The input reference configuration for the ID mapping table.
4268
+ # @return [Types::IdMappingTableInputReferenceConfig]
4269
+ #
4270
+ # @!attribute [rw] name
4271
+ # The name of this ID mapping table.
4272
+ # @return [String]
4273
+ #
4274
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableSummary AWS API Documentation
4275
+ #
4276
+ class IdMappingTableSummary < Struct.new(
4277
+ :collaboration_arn,
4278
+ :collaboration_id,
4279
+ :membership_id,
4280
+ :membership_arn,
4281
+ :create_time,
4282
+ :update_time,
4283
+ :id,
4284
+ :arn,
4285
+ :description,
4286
+ :input_reference_config,
4287
+ :name)
4288
+ SENSITIVE = []
4289
+ include Aws::Structure
4290
+ end
4291
+
4292
+ # Provides information to create the ID namespace association.
4293
+ #
4294
+ # @!attribute [rw] id
4295
+ # The unique identifier for this ID namespace association.
4296
+ # @return [String]
4297
+ #
4298
+ # @!attribute [rw] arn
4299
+ # The Amazon Resource Name (ARN) of the ID namespace association.
4300
+ # @return [String]
4301
+ #
4302
+ # @!attribute [rw] membership_id
4303
+ # The unique identifier of the membership resource for this ID
4304
+ # namespace association.
4305
+ # @return [String]
4306
+ #
4307
+ # @!attribute [rw] membership_arn
4308
+ # The Amazon Resource Name (ARN) of the membership resource for this
4309
+ # ID namespace association.
4310
+ # @return [String]
4311
+ #
4312
+ # @!attribute [rw] collaboration_id
4313
+ # The unique identifier of the collaboration that contains this ID
4314
+ # namespace association.
4315
+ # @return [String]
4316
+ #
4317
+ # @!attribute [rw] collaboration_arn
4318
+ # The Amazon Resource Name (ARN) of the collaboration that contains
4319
+ # this ID namespace association.
4320
+ # @return [String]
4321
+ #
4322
+ # @!attribute [rw] name
4323
+ # The name of this ID namespace association.
4324
+ # @return [String]
4325
+ #
4326
+ # @!attribute [rw] description
4327
+ # The description of the ID namespace association.
4328
+ # @return [String]
4329
+ #
4330
+ # @!attribute [rw] create_time
4331
+ # The time at which the ID namespace association was created.
4332
+ # @return [Time]
4333
+ #
4334
+ # @!attribute [rw] update_time
4335
+ # The most recent time at which the ID namespace association was
4336
+ # updated.
4337
+ # @return [Time]
4338
+ #
4339
+ # @!attribute [rw] input_reference_config
4340
+ # The input reference configuration for the ID namespace association.
4341
+ # @return [Types::IdNamespaceAssociationInputReferenceConfig]
4342
+ #
4343
+ # @!attribute [rw] input_reference_properties
4344
+ # The input reference properties for the ID namespace association.
4345
+ # @return [Types::IdNamespaceAssociationInputReferenceProperties]
4346
+ #
4347
+ # @!attribute [rw] id_mapping_config
4348
+ # The configuration settings for the ID mapping table.
4349
+ # @return [Types::IdMappingConfig]
4350
+ #
4351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociation AWS API Documentation
4352
+ #
4353
+ class IdNamespaceAssociation < Struct.new(
4354
+ :id,
4355
+ :arn,
4356
+ :membership_id,
4357
+ :membership_arn,
4358
+ :collaboration_id,
4359
+ :collaboration_arn,
4360
+ :name,
4361
+ :description,
4362
+ :create_time,
4363
+ :update_time,
4364
+ :input_reference_config,
4365
+ :input_reference_properties,
4366
+ :id_mapping_config)
4367
+ SENSITIVE = []
4368
+ include Aws::Structure
4369
+ end
4370
+
4371
+ # Provides the information for the ID namespace association input
4372
+ # reference configuration.
4373
+ #
4374
+ # @!attribute [rw] input_reference_arn
4375
+ # The Amazon Resource Name (ARN) of the Entity Resolution resource
4376
+ # that is being associated to the collaboration. Valid resource ARNs
4377
+ # are from the ID namespaces that you own.
4378
+ # @return [String]
4379
+ #
4380
+ # @!attribute [rw] manage_resource_policies
4381
+ # When `TRUE`, Clean Rooms manages permissions for the ID namespace
4382
+ # association resource.
4383
+ #
4384
+ # When `FALSE`, the resource owner manages permissions for the ID
4385
+ # namespace association resource.
4386
+ # @return [Boolean]
4387
+ #
4388
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationInputReferenceConfig AWS API Documentation
4389
+ #
4390
+ class IdNamespaceAssociationInputReferenceConfig < Struct.new(
4391
+ :input_reference_arn,
4392
+ :manage_resource_policies)
4393
+ SENSITIVE = []
4394
+ include Aws::Structure
4395
+ end
4396
+
4397
+ # Provides the information for the ID namespace association input
4398
+ # reference properties.
4399
+ #
4400
+ # @!attribute [rw] id_namespace_type
4401
+ # The ID namespace type for this ID namespace association.
4402
+ # @return [String]
4403
+ #
4404
+ # @!attribute [rw] id_mapping_workflows_supported
4405
+ # Defines how ID mapping workflows are supported for this ID namespace
4406
+ # association.
4407
+ # @return [Array<Hash,Array,String,Numeric,Boolean>]
4408
+ #
4409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationInputReferenceProperties AWS API Documentation
4410
+ #
4411
+ class IdNamespaceAssociationInputReferenceProperties < Struct.new(
4412
+ :id_namespace_type,
4413
+ :id_mapping_workflows_supported)
4414
+ SENSITIVE = []
4415
+ include Aws::Structure
4416
+ end
4417
+
4418
+ # Detailed information about the ID namespace association input
4419
+ # reference properties.
4420
+ #
4421
+ # @!attribute [rw] id_namespace_type
4422
+ # The ID namespace type for this ID namespace association.
4423
+ # @return [String]
4424
+ #
4425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationInputReferencePropertiesSummary AWS API Documentation
4426
+ #
4427
+ class IdNamespaceAssociationInputReferencePropertiesSummary < Struct.new(
4428
+ :id_namespace_type)
4429
+ SENSITIVE = []
4430
+ include Aws::Structure
4431
+ end
4432
+
4433
+ # Detailed information about the ID namespace association.
4434
+ #
4435
+ # @!attribute [rw] membership_id
4436
+ # The unique identifier of the membership resource for this ID
4437
+ # namespace association.
4438
+ # @return [String]
4439
+ #
4440
+ # @!attribute [rw] membership_arn
4441
+ # The Amazon Resource Name (ARN) of the membership resource for this
4442
+ # ID namespace association.
4443
+ # @return [String]
4444
+ #
4445
+ # @!attribute [rw] collaboration_arn
4446
+ # The Amazon Resource Name (ARN) of the collaboration that contains
4447
+ # this ID namespace association.
4448
+ # @return [String]
4449
+ #
4450
+ # @!attribute [rw] collaboration_id
4451
+ # The unique identifier of the collaboration that contains this ID
4452
+ # namespace association.
4453
+ # @return [String]
4454
+ #
4455
+ # @!attribute [rw] create_time
4456
+ # The time at which this ID namespace association was created.
4457
+ # @return [Time]
4458
+ #
4459
+ # @!attribute [rw] update_time
4460
+ # The most recent time at which this ID namespace association has been
4461
+ # updated.
4462
+ # @return [Time]
4463
+ #
4464
+ # @!attribute [rw] id
4465
+ # The unique identifier of this ID namespace association.
4466
+ # @return [String]
4467
+ #
4468
+ # @!attribute [rw] arn
4469
+ # The Amazon Resource Name (ARN) of this ID namespace association.
4470
+ # @return [String]
4471
+ #
4472
+ # @!attribute [rw] input_reference_config
4473
+ # The input reference configuration details for this ID namespace
4474
+ # association.
4475
+ # @return [Types::IdNamespaceAssociationInputReferenceConfig]
4476
+ #
4477
+ # @!attribute [rw] name
4478
+ # The name of the ID namespace association.
4479
+ # @return [String]
4480
+ #
4481
+ # @!attribute [rw] description
4482
+ # The description of the ID namespace association.
4483
+ # @return [String]
4484
+ #
4485
+ # @!attribute [rw] input_reference_properties
4486
+ # The input reference properties for this ID namespace association.
4487
+ # @return [Types::IdNamespaceAssociationInputReferencePropertiesSummary]
4488
+ #
4489
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationSummary AWS API Documentation
4490
+ #
4491
+ class IdNamespaceAssociationSummary < Struct.new(
4492
+ :membership_id,
4493
+ :membership_arn,
4494
+ :collaboration_arn,
4495
+ :collaboration_id,
4496
+ :create_time,
4497
+ :update_time,
4498
+ :id,
4499
+ :arn,
4500
+ :input_reference_config,
4501
+ :name,
4502
+ :description,
4503
+ :input_reference_properties)
4504
+ SENSITIVE = []
4505
+ include Aws::Structure
4506
+ end
4507
+
3263
4508
  # Unexpected error during processing of request.
3264
4509
  #
3265
4510
  # @!attribute [rw] message
@@ -3399,6 +4644,49 @@ module Aws::CleanRooms
3399
4644
  include Aws::Structure
3400
4645
  end
3401
4646
 
4647
+ # @!attribute [rw] collaboration_identifier
4648
+ # The unique identifier of the collaboration that contains the ID
4649
+ # namespace associations that you want to retrieve.
4650
+ # @return [String]
4651
+ #
4652
+ # @!attribute [rw] next_token
4653
+ # The pagination token that's used to fetch the next set of results.
4654
+ # @return [String]
4655
+ #
4656
+ # @!attribute [rw] max_results
4657
+ # The maximum size of the results that is returned per call. Service
4658
+ # chooses a default if it has not been set. Service may return a
4659
+ # nextToken even if the maximum results has not been met.&gt;
4660
+ # @return [Integer]
4661
+ #
4662
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationIdNamespaceAssociationsInput AWS API Documentation
4663
+ #
4664
+ class ListCollaborationIdNamespaceAssociationsInput < Struct.new(
4665
+ :collaboration_identifier,
4666
+ :next_token,
4667
+ :max_results)
4668
+ SENSITIVE = []
4669
+ include Aws::Structure
4670
+ end
4671
+
4672
+ # @!attribute [rw] next_token
4673
+ # The token value provided to access the next page of results.
4674
+ # @return [String]
4675
+ #
4676
+ # @!attribute [rw] collaboration_id_namespace_association_summaries
4677
+ # The summary information of the collaboration ID namespace
4678
+ # associations that you requested.
4679
+ # @return [Array<Types::CollaborationIdNamespaceAssociationSummary>]
4680
+ #
4681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationIdNamespaceAssociationsOutput AWS API Documentation
4682
+ #
4683
+ class ListCollaborationIdNamespaceAssociationsOutput < Struct.new(
4684
+ :next_token,
4685
+ :collaboration_id_namespace_association_summaries)
4686
+ SENSITIVE = []
4687
+ include Aws::Structure
4688
+ end
4689
+
3402
4690
  # @!attribute [rw] collaboration_identifier
3403
4691
  # A unique identifier for one of your collaborations.
3404
4692
  # @return [String]
@@ -3657,6 +4945,91 @@ module Aws::CleanRooms
3657
4945
  include Aws::Structure
3658
4946
  end
3659
4947
 
4948
+ # @!attribute [rw] membership_identifier
4949
+ # The unique identifier of the membership that contains the ID mapping
4950
+ # tables that you want to view.
4951
+ # @return [String]
4952
+ #
4953
+ # @!attribute [rw] next_token
4954
+ # The pagination token that's used to fetch the next set of results.
4955
+ # @return [String]
4956
+ #
4957
+ # @!attribute [rw] max_results
4958
+ # The maximum size of the results that is returned per call. Service
4959
+ # chooses a default if it has not been set. Service may return a
4960
+ # nextToken even if the maximum results has not been met.
4961
+ # @return [Integer]
4962
+ #
4963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdMappingTablesInput AWS API Documentation
4964
+ #
4965
+ class ListIdMappingTablesInput < Struct.new(
4966
+ :membership_identifier,
4967
+ :next_token,
4968
+ :max_results)
4969
+ SENSITIVE = []
4970
+ include Aws::Structure
4971
+ end
4972
+
4973
+ # @!attribute [rw] id_mapping_table_summaries
4974
+ # The summary information of the ID mapping tables that you requested.
4975
+ # @return [Array<Types::IdMappingTableSummary>]
4976
+ #
4977
+ # @!attribute [rw] next_token
4978
+ # The token value provided to access the next page of results.
4979
+ # @return [String]
4980
+ #
4981
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdMappingTablesOutput AWS API Documentation
4982
+ #
4983
+ class ListIdMappingTablesOutput < Struct.new(
4984
+ :id_mapping_table_summaries,
4985
+ :next_token)
4986
+ SENSITIVE = []
4987
+ include Aws::Structure
4988
+ end
4989
+
4990
+ # @!attribute [rw] membership_identifier
4991
+ # The unique identifier of the membership that contains the ID
4992
+ # namespace association that you want to view.
4993
+ # @return [String]
4994
+ #
4995
+ # @!attribute [rw] next_token
4996
+ # The pagination token that's used to fetch the next set of results.
4997
+ # @return [String]
4998
+ #
4999
+ # @!attribute [rw] max_results
5000
+ # The maximum size of the results that is returned per call. Service
5001
+ # chooses a default if it has not been set. Service may return a
5002
+ # nextToken even if the maximum results has not been met.
5003
+ # @return [Integer]
5004
+ #
5005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdNamespaceAssociationsInput AWS API Documentation
5006
+ #
5007
+ class ListIdNamespaceAssociationsInput < Struct.new(
5008
+ :membership_identifier,
5009
+ :next_token,
5010
+ :max_results)
5011
+ SENSITIVE = []
5012
+ include Aws::Structure
5013
+ end
5014
+
5015
+ # @!attribute [rw] next_token
5016
+ # The token value provided to access the next page of results.
5017
+ # @return [String]
5018
+ #
5019
+ # @!attribute [rw] id_namespace_association_summaries
5020
+ # The summary information of the ID namespace associations that you
5021
+ # requested.
5022
+ # @return [Array<Types::IdNamespaceAssociationSummary>]
5023
+ #
5024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdNamespaceAssociationsOutput AWS API Documentation
5025
+ #
5026
+ class ListIdNamespaceAssociationsOutput < Struct.new(
5027
+ :next_token,
5028
+ :id_namespace_association_summaries)
5029
+ SENSITIVE = []
5030
+ include Aws::Structure
5031
+ end
5032
+
3660
5033
  # @!attribute [rw] collaboration_identifier
3661
5034
  # The identifier of the collaboration in which the members are listed.
3662
5035
  # @return [String]
@@ -4308,6 +5681,38 @@ module Aws::CleanRooms
4308
5681
  include Aws::Structure
4309
5682
  end
4310
5683
 
5684
+ # @!attribute [rw] id_mapping_table_identifier
5685
+ # The unique identifier of the ID mapping table that you want to
5686
+ # populate.
5687
+ # @return [String]
5688
+ #
5689
+ # @!attribute [rw] membership_identifier
5690
+ # The unique identifier of the membership that contains the ID mapping
5691
+ # table that you want to populate.
5692
+ # @return [String]
5693
+ #
5694
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTableInput AWS API Documentation
5695
+ #
5696
+ class PopulateIdMappingTableInput < Struct.new(
5697
+ :id_mapping_table_identifier,
5698
+ :membership_identifier)
5699
+ SENSITIVE = []
5700
+ include Aws::Structure
5701
+ end
5702
+
5703
+ # @!attribute [rw] id_mapping_job_id
5704
+ # The unique identifier of the mapping job that will populate the ID
5705
+ # mapping table.
5706
+ # @return [String]
5707
+ #
5708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTableOutput AWS API Documentation
5709
+ #
5710
+ class PopulateIdMappingTableOutput < Struct.new(
5711
+ :id_mapping_job_id)
5712
+ SENSITIVE = []
5713
+ include Aws::Structure
5714
+ end
5715
+
4311
5716
  # @!attribute [rw] membership_identifier
4312
5717
  # A unique identifier for one of your memberships for a collaboration.
4313
5718
  # Accepts a membership ID.
@@ -4510,7 +5915,7 @@ module Aws::CleanRooms
4510
5915
  # @return [String]
4511
5916
  #
4512
5917
  # @!attribute [rw] parameters
4513
- # Specifies the epislon and noise parameters for the privacy budget
5918
+ # Specifies the epsilon and noise parameters for the privacy budget
4514
5919
  # template.
4515
5920
  # @return [Types::PrivacyBudgetTemplateParametersOutput]
4516
5921
  #
@@ -4766,6 +6171,20 @@ module Aws::CleanRooms
4766
6171
  include Aws::Structure
4767
6172
  end
4768
6173
 
6174
+ # Contains configuration details for the protected query member output.
6175
+ #
6176
+ # @!attribute [rw] account_id
6177
+ # The unique identifier for the account.
6178
+ # @return [String]
6179
+ #
6180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryMemberOutputConfiguration AWS API Documentation
6181
+ #
6182
+ class ProtectedQueryMemberOutputConfiguration < Struct.new(
6183
+ :account_id)
6184
+ SENSITIVE = []
6185
+ include Aws::Structure
6186
+ end
6187
+
4769
6188
  # Contains details about the protected query output.
4770
6189
  #
4771
6190
  # @note ProtectedQueryOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryOutput corresponding to the set member.
@@ -4802,20 +6221,27 @@ module Aws::CleanRooms
4802
6221
  # @note ProtectedQueryOutputConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedQueryOutputConfiguration corresponding to the set member.
4803
6222
  #
4804
6223
  # @!attribute [rw] s3
4805
- # Required configuration for a protected query with an `S3` output
6224
+ # Required configuration for a protected query with an `s3` output
4806
6225
  # type.
4807
6226
  # @return [Types::ProtectedQueryS3OutputConfiguration]
4808
6227
  #
6228
+ # @!attribute [rw] member
6229
+ # Required configuration for a protected query with a `member` output
6230
+ # type.
6231
+ # @return [Types::ProtectedQueryMemberOutputConfiguration]
6232
+ #
4809
6233
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQueryOutputConfiguration AWS API Documentation
4810
6234
  #
4811
6235
  class ProtectedQueryOutputConfiguration < Struct.new(
4812
6236
  :s3,
6237
+ :member,
4813
6238
  :unknown)
4814
6239
  SENSITIVE = []
4815
6240
  include Aws::Structure
4816
6241
  include Aws::Structure::Union
4817
6242
 
4818
6243
  class S3 < ProtectedQueryOutputConfiguration; end
6244
+ class Member < ProtectedQueryOutputConfiguration; end
4819
6245
  class Unknown < ProtectedQueryOutputConfiguration; end
4820
6246
  end
4821
6247
 
@@ -4929,7 +6355,7 @@ module Aws::CleanRooms
4929
6355
  # Contains statistics about the execution of the protected query.
4930
6356
  #
4931
6357
  # @!attribute [rw] total_duration_in_millis
4932
- # The duration of the Protected Query, from creation until query
6358
+ # The duration of the protected query, from creation until query
4933
6359
  # completion.
4934
6360
  # @return [Integer]
4935
6361
  #
@@ -4966,6 +6392,10 @@ module Aws::CleanRooms
4966
6392
  # `TIMED\_OUT`.
4967
6393
  # @return [String]
4968
6394
  #
6395
+ # @!attribute [rw] receiver_configurations
6396
+ # The receiver configuration.
6397
+ # @return [Array<Types::ReceiverConfiguration>]
6398
+ #
4969
6399
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ProtectedQuerySummary AWS API Documentation
4970
6400
  #
4971
6401
  class ProtectedQuerySummary < Struct.new(
@@ -4973,7 +6403,8 @@ module Aws::CleanRooms
4973
6403
  :membership_id,
4974
6404
  :membership_arn,
4975
6405
  :create_time,
4976
- :status)
6406
+ :status,
6407
+ :receiver_configurations)
4977
6408
  SENSITIVE = []
4978
6409
  include Aws::Structure
4979
6410
  end
@@ -5006,6 +6437,64 @@ module Aws::CleanRooms
5006
6437
  include Aws::Structure
5007
6438
  end
5008
6439
 
6440
+ # Provides any necessary query constraint information.
6441
+ #
6442
+ # @note QueryConstraint is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of QueryConstraint corresponding to the set member.
6443
+ #
6444
+ # @!attribute [rw] require_overlap
6445
+ # An array of column names that specifies which columns are required
6446
+ # in the JOIN statement.
6447
+ # @return [Types::QueryConstraintRequireOverlap]
6448
+ #
6449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/QueryConstraint AWS API Documentation
6450
+ #
6451
+ class QueryConstraint < Struct.new(
6452
+ :require_overlap,
6453
+ :unknown)
6454
+ SENSITIVE = []
6455
+ include Aws::Structure
6456
+ include Aws::Structure::Union
6457
+
6458
+ class RequireOverlap < QueryConstraint; end
6459
+ class Unknown < QueryConstraint; end
6460
+ end
6461
+
6462
+ # Provides the name of the columns that are required to overlap.
6463
+ #
6464
+ # @!attribute [rw] columns
6465
+ # The columns that are required to overlap.
6466
+ # @return [Array<String>]
6467
+ #
6468
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/QueryConstraintRequireOverlap AWS API Documentation
6469
+ #
6470
+ class QueryConstraintRequireOverlap < Struct.new(
6471
+ :columns)
6472
+ SENSITIVE = []
6473
+ include Aws::Structure
6474
+ end
6475
+
6476
+ # The receiver configuration for a protected query.
6477
+ #
6478
+ # @!attribute [rw] analysis_type
6479
+ # The type of analysis for the protected query. The results of the
6480
+ # query can be analyzed directly (`DIRECT_ANALYSIS`) or used as input
6481
+ # into additional analyses (`ADDITIONAL_ANALYSIS`), such as a query
6482
+ # that is a seed for a lookalike ML model.
6483
+ # @return [String]
6484
+ #
6485
+ # @!attribute [rw] configuration_details
6486
+ # The configuration details of the receiver configuration.
6487
+ # @return [Types::ConfigurationDetails]
6488
+ #
6489
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ReceiverConfiguration AWS API Documentation
6490
+ #
6491
+ class ReceiverConfiguration < Struct.new(
6492
+ :analysis_type,
6493
+ :configuration_details)
6494
+ SENSITIVE = []
6495
+ include Aws::Structure
6496
+ end
6497
+
5009
6498
  # Request references a resource which does not exist.
5010
6499
  #
5011
6500
  # @!attribute [rw] message
@@ -5088,6 +6577,10 @@ module Aws::CleanRooms
5088
6577
  # present.
5089
6578
  # @return [Array<Types::SchemaStatusDetail>]
5090
6579
  #
6580
+ # @!attribute [rw] schema_type_properties
6581
+ # The schema type properties.
6582
+ # @return [Types::SchemaTypeProperties]
6583
+ #
5091
6584
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Schema AWS API Documentation
5092
6585
  #
5093
6586
  class Schema < Struct.new(
@@ -5103,7 +6596,8 @@ module Aws::CleanRooms
5103
6596
  :create_time,
5104
6597
  :update_time,
5105
6598
  :type,
5106
- :schema_status_details)
6599
+ :schema_status_details,
6600
+ :schema_type_properties)
5107
6601
  SENSITIVE = []
5108
6602
  include Aws::Structure
5109
6603
  end
@@ -5137,7 +6631,7 @@ module Aws::CleanRooms
5137
6631
  # queries on this schema.
5138
6632
  #
5139
6633
  # @!attribute [rw] status
5140
- # The status of the schema.
6634
+ # The status of the schema, indicating if it is ready to query.
5141
6635
  # @return [String]
5142
6636
  #
5143
6637
  # @!attribute [rw] reasons
@@ -5154,13 +6648,21 @@ module Aws::CleanRooms
5154
6648
  # type.
5155
6649
  # @return [Array<String>]
5156
6650
  #
6651
+ # @!attribute [rw] analysis_type
6652
+ # The type of analysis that can be performed on the schema.
6653
+ #
6654
+ # A schema can have an `analysisType` of `DIRECT_ANALYSIS`,
6655
+ # `ADDITIONAL_ANALYSIS_FOR_AUDIENCE_GENERATION`, or both.
6656
+ # @return [String]
6657
+ #
5157
6658
  # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SchemaStatusDetail AWS API Documentation
5158
6659
  #
5159
6660
  class SchemaStatusDetail < Struct.new(
5160
6661
  :status,
5161
6662
  :reasons,
5162
6663
  :analysis_rule_type,
5163
- :configurations)
6664
+ :configurations,
6665
+ :analysis_type)
5164
6666
  SENSITIVE = []
5165
6667
  include Aws::Structure
5166
6668
  end
@@ -5242,6 +6744,27 @@ module Aws::CleanRooms
5242
6744
  include Aws::Structure
5243
6745
  end
5244
6746
 
6747
+ # Information about the schema type properties.
6748
+ #
6749
+ # @note SchemaTypeProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SchemaTypeProperties corresponding to the set member.
6750
+ #
6751
+ # @!attribute [rw] id_mapping_table
6752
+ # The ID mapping table for the schema type properties.
6753
+ # @return [Types::IdMappingTableSchemaTypeProperties]
6754
+ #
6755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SchemaTypeProperties AWS API Documentation
6756
+ #
6757
+ class SchemaTypeProperties < Struct.new(
6758
+ :id_mapping_table,
6759
+ :unknown)
6760
+ SENSITIVE = []
6761
+ include Aws::Structure
6762
+ include Aws::Structure::Union
6763
+
6764
+ class IdMappingTable < SchemaTypeProperties; end
6765
+ class Unknown < SchemaTypeProperties; end
6766
+ end
6767
+
5245
6768
  # Request denied because service quota has been exceeded.
5246
6769
  #
5247
6770
  # @!attribute [rw] message
@@ -5535,6 +7058,49 @@ module Aws::CleanRooms
5535
7058
  include Aws::Structure
5536
7059
  end
5537
7060
 
7061
+ # @!attribute [rw] membership_identifier
7062
+ # A unique identifier for the membership that the configured table
7063
+ # association belongs to. Currently accepts the membership ID.
7064
+ # @return [String]
7065
+ #
7066
+ # @!attribute [rw] configured_table_association_identifier
7067
+ # The identifier for the configured table association to update.
7068
+ # @return [String]
7069
+ #
7070
+ # @!attribute [rw] analysis_rule_type
7071
+ # The analysis rule type that you want to update.
7072
+ # @return [String]
7073
+ #
7074
+ # @!attribute [rw] analysis_rule_policy
7075
+ # The updated analysis rule policy for the configured table
7076
+ # association.
7077
+ # @return [Types::ConfiguredTableAssociationAnalysisRulePolicy]
7078
+ #
7079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociationAnalysisRuleInput AWS API Documentation
7080
+ #
7081
+ class UpdateConfiguredTableAssociationAnalysisRuleInput < Struct.new(
7082
+ :membership_identifier,
7083
+ :configured_table_association_identifier,
7084
+ :analysis_rule_type,
7085
+ :analysis_rule_policy)
7086
+ SENSITIVE = []
7087
+ include Aws::Structure
7088
+ end
7089
+
7090
+ # @!attribute [rw] analysis_rule
7091
+ # The updated analysis rule for the configured table association. In
7092
+ # the console, the `ConfiguredTableAssociationAnalysisRule` is
7093
+ # referred to as the *collaboration analysis rule*.
7094
+ # @return [Types::ConfiguredTableAssociationAnalysisRule]
7095
+ #
7096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateConfiguredTableAssociationAnalysisRuleOutput AWS API Documentation
7097
+ #
7098
+ class UpdateConfiguredTableAssociationAnalysisRuleOutput < Struct.new(
7099
+ :analysis_rule)
7100
+ SENSITIVE = []
7101
+ include Aws::Structure
7102
+ end
7103
+
5538
7104
  # @!attribute [rw] configured_table_association_identifier
5539
7105
  # The unique identifier for the configured table association to
5540
7106
  # update. Currently accepts the configured table association ID.
@@ -5612,6 +7178,93 @@ module Aws::CleanRooms
5612
7178
  include Aws::Structure
5613
7179
  end
5614
7180
 
7181
+ # @!attribute [rw] id_mapping_table_identifier
7182
+ # The unique identifier of the ID mapping table that you want to
7183
+ # update.
7184
+ # @return [String]
7185
+ #
7186
+ # @!attribute [rw] membership_identifier
7187
+ # The unique identifier of the membership that contains the ID mapping
7188
+ # table that you want to update.
7189
+ # @return [String]
7190
+ #
7191
+ # @!attribute [rw] description
7192
+ # A new description for the ID mapping table.
7193
+ # @return [String]
7194
+ #
7195
+ # @!attribute [rw] kms_key_arn
7196
+ # The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
7197
+ # @return [String]
7198
+ #
7199
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdMappingTableInput AWS API Documentation
7200
+ #
7201
+ class UpdateIdMappingTableInput < Struct.new(
7202
+ :id_mapping_table_identifier,
7203
+ :membership_identifier,
7204
+ :description,
7205
+ :kms_key_arn)
7206
+ SENSITIVE = []
7207
+ include Aws::Structure
7208
+ end
7209
+
7210
+ # @!attribute [rw] id_mapping_table
7211
+ # The updated ID mapping table.
7212
+ # @return [Types::IdMappingTable]
7213
+ #
7214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdMappingTableOutput AWS API Documentation
7215
+ #
7216
+ class UpdateIdMappingTableOutput < Struct.new(
7217
+ :id_mapping_table)
7218
+ SENSITIVE = []
7219
+ include Aws::Structure
7220
+ end
7221
+
7222
+ # @!attribute [rw] id_namespace_association_identifier
7223
+ # The unique identifier of the ID namespace association that you want
7224
+ # to update.
7225
+ # @return [String]
7226
+ #
7227
+ # @!attribute [rw] membership_identifier
7228
+ # The unique identifier of the membership that contains the ID
7229
+ # namespace association that you want to update.
7230
+ # @return [String]
7231
+ #
7232
+ # @!attribute [rw] name
7233
+ # A new name for the ID namespace association.
7234
+ # @return [String]
7235
+ #
7236
+ # @!attribute [rw] description
7237
+ # A new description for the ID namespace association.
7238
+ # @return [String]
7239
+ #
7240
+ # @!attribute [rw] id_mapping_config
7241
+ # The configuration settings for the ID mapping table.
7242
+ # @return [Types::IdMappingConfig]
7243
+ #
7244
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdNamespaceAssociationInput AWS API Documentation
7245
+ #
7246
+ class UpdateIdNamespaceAssociationInput < Struct.new(
7247
+ :id_namespace_association_identifier,
7248
+ :membership_identifier,
7249
+ :name,
7250
+ :description,
7251
+ :id_mapping_config)
7252
+ SENSITIVE = []
7253
+ include Aws::Structure
7254
+ end
7255
+
7256
+ # @!attribute [rw] id_namespace_association
7257
+ # The updated ID namespace association.
7258
+ # @return [Types::IdNamespaceAssociation]
7259
+ #
7260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdNamespaceAssociationOutput AWS API Documentation
7261
+ #
7262
+ class UpdateIdNamespaceAssociationOutput < Struct.new(
7263
+ :id_namespace_association)
7264
+ SENSITIVE = []
7265
+ include Aws::Structure
7266
+ end
7267
+
5615
7268
  # @!attribute [rw] membership_identifier
5616
7269
  # The unique identifier of the membership.
5617
7270
  # @return [String]