aws-sdk-cleanrooms 1.24.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +783 -80
- data/lib/aws-sdk-cleanrooms/client_api.rb +511 -1
- data/lib/aws-sdk-cleanrooms/endpoints.rb +182 -0
- data/lib/aws-sdk-cleanrooms/plugins/endpoints.rb +26 -0
- data/lib/aws-sdk-cleanrooms/types.rb +1338 -145
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +173 -3
- data/sig/types.rbs +348 -12
- metadata +4 -4
@@ -231,6 +231,32 @@ module Aws::CleanRooms
|
|
231
231
|
include Aws::Structure
|
232
232
|
end
|
233
233
|
|
234
|
+
# Defines details for the analysis rule ID mapping table.
|
235
|
+
#
|
236
|
+
# @!attribute [rw] join_columns
|
237
|
+
# The columns that query runners are allowed to use in an INNER JOIN
|
238
|
+
# statement.
|
239
|
+
# @return [Array<String>]
|
240
|
+
#
|
241
|
+
# @!attribute [rw] query_constraints
|
242
|
+
# The query constraints of the analysis rule ID mapping table.
|
243
|
+
# @return [Array<Types::QueryConstraint>]
|
244
|
+
#
|
245
|
+
# @!attribute [rw] dimension_columns
|
246
|
+
# The columns that query runners are allowed to select, group by, or
|
247
|
+
# filter by.
|
248
|
+
# @return [Array<String>]
|
249
|
+
#
|
250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRuleIdMappingTable AWS API Documentation
|
251
|
+
#
|
252
|
+
class AnalysisRuleIdMappingTable < Struct.new(
|
253
|
+
:join_columns,
|
254
|
+
:query_constraints,
|
255
|
+
:dimension_columns)
|
256
|
+
SENSITIVE = []
|
257
|
+
include Aws::Structure
|
258
|
+
end
|
259
|
+
|
234
260
|
# A type of analysis rule that enables row-level analysis.
|
235
261
|
#
|
236
262
|
# @!attribute [rw] join_columns
|
@@ -300,12 +326,17 @@ module Aws::CleanRooms
|
|
300
326
|
# table.
|
301
327
|
# @return [Types::AnalysisRuleCustom]
|
302
328
|
#
|
329
|
+
# @!attribute [rw] id_mapping_table
|
330
|
+
# The ID mapping table.
|
331
|
+
# @return [Types::AnalysisRuleIdMappingTable]
|
332
|
+
#
|
303
333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AnalysisRulePolicyV1 AWS API Documentation
|
304
334
|
#
|
305
335
|
class AnalysisRulePolicyV1 < Struct.new(
|
306
336
|
:list,
|
307
337
|
:aggregation,
|
308
338
|
:custom,
|
339
|
+
:id_mapping_table,
|
309
340
|
:unknown)
|
310
341
|
SENSITIVE = []
|
311
342
|
include Aws::Structure
|
@@ -314,6 +345,7 @@ module Aws::CleanRooms
|
|
314
345
|
class List < AnalysisRulePolicyV1; end
|
315
346
|
class Aggregation < AnalysisRulePolicyV1; end
|
316
347
|
class Custom < AnalysisRulePolicyV1; end
|
348
|
+
class IdMappingTable < AnalysisRulePolicyV1; end
|
317
349
|
class Unknown < AnalysisRulePolicyV1; end
|
318
350
|
end
|
319
351
|
|
@@ -437,7 +469,7 @@ module Aws::CleanRooms
|
|
437
469
|
:source,
|
438
470
|
:analysis_parameters,
|
439
471
|
:validations)
|
440
|
-
SENSITIVE = [:source]
|
472
|
+
SENSITIVE = [:source, :analysis_parameters]
|
441
473
|
include Aws::Structure
|
442
474
|
end
|
443
475
|
|
@@ -903,7 +935,7 @@ module Aws::CleanRooms
|
|
903
935
|
:source,
|
904
936
|
:analysis_parameters,
|
905
937
|
:validations)
|
906
|
-
SENSITIVE = [:source]
|
938
|
+
SENSITIVE = [:source, :analysis_parameters]
|
907
939
|
include Aws::Structure
|
908
940
|
end
|
909
941
|
|
@@ -1000,7 +1032,7 @@ module Aws::CleanRooms
|
|
1000
1032
|
#
|
1001
1033
|
# @!attribute [rw] creator_account_id
|
1002
1034
|
# The identifier used to reference members of the collaboration. Only
|
1003
|
-
# supports
|
1035
|
+
# supports Amazon Web Services account ID.
|
1004
1036
|
# @return [String]
|
1005
1037
|
#
|
1006
1038
|
# @!attribute [rw] create_time
|
@@ -1068,7 +1100,7 @@ module Aws::CleanRooms
|
|
1068
1100
|
#
|
1069
1101
|
# @!attribute [rw] creator_account_id
|
1070
1102
|
# The identifier used to reference members of the collaboration. Only
|
1071
|
-
# supports
|
1103
|
+
# supports Amazon Web Services account ID.
|
1072
1104
|
# @return [String]
|
1073
1105
|
#
|
1074
1106
|
# @!attribute [rw] description
|
@@ -1091,6 +1123,156 @@ module Aws::CleanRooms
|
|
1091
1123
|
include Aws::Structure
|
1092
1124
|
end
|
1093
1125
|
|
1126
|
+
# Defines details for the collaboration ID namespace association.
|
1127
|
+
#
|
1128
|
+
# @!attribute [rw] id
|
1129
|
+
# The unique identifier of the collaboration ID namespace association.
|
1130
|
+
# @return [String]
|
1131
|
+
#
|
1132
|
+
# @!attribute [rw] arn
|
1133
|
+
# The Amazon Resource Name (ARN) of the collaboration ID namespace
|
1134
|
+
# association.
|
1135
|
+
# @return [String]
|
1136
|
+
#
|
1137
|
+
# @!attribute [rw] collaboration_id
|
1138
|
+
# The unique identifier of the collaboration that contains the
|
1139
|
+
# collaboration ID namespace association.
|
1140
|
+
# @return [String]
|
1141
|
+
#
|
1142
|
+
# @!attribute [rw] collaboration_arn
|
1143
|
+
# The Amazon Resource Name (ARN) of the collaboration that contains
|
1144
|
+
# the collaboration ID namespace association.
|
1145
|
+
# @return [String]
|
1146
|
+
#
|
1147
|
+
# @!attribute [rw] name
|
1148
|
+
# The name of the collaboration ID namespace association.
|
1149
|
+
# @return [String]
|
1150
|
+
#
|
1151
|
+
# @!attribute [rw] description
|
1152
|
+
# The description of the collaboration ID namespace association.
|
1153
|
+
# @return [String]
|
1154
|
+
#
|
1155
|
+
# @!attribute [rw] creator_account_id
|
1156
|
+
# The unique identifier of the Amazon Web Services account that
|
1157
|
+
# created the collaboration ID namespace association.
|
1158
|
+
# @return [String]
|
1159
|
+
#
|
1160
|
+
# @!attribute [rw] create_time
|
1161
|
+
# The time at which the collaboration ID namespace association was
|
1162
|
+
# created.
|
1163
|
+
# @return [Time]
|
1164
|
+
#
|
1165
|
+
# @!attribute [rw] update_time
|
1166
|
+
# The most recent time at which the collaboration ID namespace was
|
1167
|
+
# updated.
|
1168
|
+
# @return [Time]
|
1169
|
+
#
|
1170
|
+
# @!attribute [rw] input_reference_config
|
1171
|
+
# The input reference configuration that's necessary to create the
|
1172
|
+
# collaboration ID namespace association.
|
1173
|
+
# @return [Types::IdNamespaceAssociationInputReferenceConfig]
|
1174
|
+
#
|
1175
|
+
# @!attribute [rw] input_reference_properties
|
1176
|
+
# The input reference properties that are needed to create the
|
1177
|
+
# collaboration ID namespace association.
|
1178
|
+
# @return [Types::IdNamespaceAssociationInputReferenceProperties]
|
1179
|
+
#
|
1180
|
+
# @!attribute [rw] id_mapping_config
|
1181
|
+
# The configuration settings for the ID mapping table.
|
1182
|
+
# @return [Types::IdMappingConfig]
|
1183
|
+
#
|
1184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationIdNamespaceAssociation AWS API Documentation
|
1185
|
+
#
|
1186
|
+
class CollaborationIdNamespaceAssociation < Struct.new(
|
1187
|
+
:id,
|
1188
|
+
:arn,
|
1189
|
+
:collaboration_id,
|
1190
|
+
:collaboration_arn,
|
1191
|
+
:name,
|
1192
|
+
:description,
|
1193
|
+
:creator_account_id,
|
1194
|
+
:create_time,
|
1195
|
+
:update_time,
|
1196
|
+
:input_reference_config,
|
1197
|
+
:input_reference_properties,
|
1198
|
+
:id_mapping_config)
|
1199
|
+
SENSITIVE = []
|
1200
|
+
include Aws::Structure
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
# Provides summary information about the collaboration ID namespace
|
1204
|
+
# association.
|
1205
|
+
#
|
1206
|
+
# @!attribute [rw] arn
|
1207
|
+
# The Amazon Resource Name (ARN) of the collaboration ID namespace
|
1208
|
+
# association.
|
1209
|
+
# @return [String]
|
1210
|
+
#
|
1211
|
+
# @!attribute [rw] create_time
|
1212
|
+
# The time at which the collaboration ID namespace association was
|
1213
|
+
# created.
|
1214
|
+
# @return [Time]
|
1215
|
+
#
|
1216
|
+
# @!attribute [rw] id
|
1217
|
+
# The unique identifier of the collaboration ID namespace association.
|
1218
|
+
# @return [String]
|
1219
|
+
#
|
1220
|
+
# @!attribute [rw] update_time
|
1221
|
+
# The most recent time at which the collaboration ID namespace
|
1222
|
+
# association was updated.
|
1223
|
+
# @return [Time]
|
1224
|
+
#
|
1225
|
+
# @!attribute [rw] collaboration_arn
|
1226
|
+
# The Amazon Resource Name (ARN) of the collaboration that contains
|
1227
|
+
# this collaboration ID namespace association.
|
1228
|
+
# @return [String]
|
1229
|
+
#
|
1230
|
+
# @!attribute [rw] collaboration_id
|
1231
|
+
# The unique identifier of the collaboration that contains this
|
1232
|
+
# collaboration ID namespace association.
|
1233
|
+
# @return [String]
|
1234
|
+
#
|
1235
|
+
# @!attribute [rw] creator_account_id
|
1236
|
+
# The Amazon Web Services account that created this collaboration ID
|
1237
|
+
# namespace association.
|
1238
|
+
# @return [String]
|
1239
|
+
#
|
1240
|
+
# @!attribute [rw] input_reference_config
|
1241
|
+
# The input reference configuration that's used to create the
|
1242
|
+
# collaboration ID namespace association.
|
1243
|
+
# @return [Types::IdNamespaceAssociationInputReferenceConfig]
|
1244
|
+
#
|
1245
|
+
# @!attribute [rw] name
|
1246
|
+
# The name of the collaboration ID namespace association.
|
1247
|
+
# @return [String]
|
1248
|
+
#
|
1249
|
+
# @!attribute [rw] description
|
1250
|
+
# The description of the collaboration ID namepsace association.
|
1251
|
+
# @return [String]
|
1252
|
+
#
|
1253
|
+
# @!attribute [rw] input_reference_properties
|
1254
|
+
# The input reference properties that are used to create the
|
1255
|
+
# collaboration ID namespace association.
|
1256
|
+
# @return [Types::IdNamespaceAssociationInputReferencePropertiesSummary]
|
1257
|
+
#
|
1258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CollaborationIdNamespaceAssociationSummary AWS API Documentation
|
1259
|
+
#
|
1260
|
+
class CollaborationIdNamespaceAssociationSummary < Struct.new(
|
1261
|
+
:arn,
|
1262
|
+
:create_time,
|
1263
|
+
:id,
|
1264
|
+
:update_time,
|
1265
|
+
:collaboration_arn,
|
1266
|
+
:collaboration_id,
|
1267
|
+
:creator_account_id,
|
1268
|
+
:input_reference_config,
|
1269
|
+
:name,
|
1270
|
+
:description,
|
1271
|
+
:input_reference_properties)
|
1272
|
+
SENSITIVE = []
|
1273
|
+
include Aws::Structure
|
1274
|
+
end
|
1275
|
+
|
1094
1276
|
# A summary of the collaboration privacy budgets. This summary includes
|
1095
1277
|
# the collaboration information, creation information, epsilon provided,
|
1096
1278
|
# and utility in terms of aggregations.
|
@@ -1928,7 +2110,7 @@ module Aws::CleanRooms
|
|
1928
2110
|
:source,
|
1929
2111
|
:tags,
|
1930
2112
|
:analysis_parameters)
|
1931
|
-
SENSITIVE = [:source]
|
2113
|
+
SENSITIVE = [:source, :analysis_parameters]
|
1932
2114
|
include Aws::Structure
|
1933
2115
|
end
|
1934
2116
|
|
@@ -2232,6 +2414,116 @@ module Aws::CleanRooms
|
|
2232
2414
|
include Aws::Structure
|
2233
2415
|
end
|
2234
2416
|
|
2417
|
+
# @!attribute [rw] membership_identifier
|
2418
|
+
# The unique identifier of the membership that contains the ID mapping
|
2419
|
+
# table.
|
2420
|
+
# @return [String]
|
2421
|
+
#
|
2422
|
+
# @!attribute [rw] name
|
2423
|
+
# A name for the ID mapping table.
|
2424
|
+
# @return [String]
|
2425
|
+
#
|
2426
|
+
# @!attribute [rw] description
|
2427
|
+
# A description of the ID mapping table.
|
2428
|
+
# @return [String]
|
2429
|
+
#
|
2430
|
+
# @!attribute [rw] input_reference_config
|
2431
|
+
# The input reference configuration needed to create the ID mapping
|
2432
|
+
# table.
|
2433
|
+
# @return [Types::IdMappingTableInputReferenceConfig]
|
2434
|
+
#
|
2435
|
+
# @!attribute [rw] tags
|
2436
|
+
# An optional label that you can assign to a resource when you create
|
2437
|
+
# it. Each tag consists of a key and an optional value, both of which
|
2438
|
+
# you define. When you use tagging, you can also use tag-based access
|
2439
|
+
# control in IAM policies to control access to this resource.
|
2440
|
+
# @return [Hash<String,String>]
|
2441
|
+
#
|
2442
|
+
# @!attribute [rw] kms_key_arn
|
2443
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
|
2444
|
+
# This value is used to encrypt the mapping table data that is stored
|
2445
|
+
# by Clean Rooms.
|
2446
|
+
# @return [String]
|
2447
|
+
#
|
2448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdMappingTableInput AWS API Documentation
|
2449
|
+
#
|
2450
|
+
class CreateIdMappingTableInput < Struct.new(
|
2451
|
+
:membership_identifier,
|
2452
|
+
:name,
|
2453
|
+
:description,
|
2454
|
+
:input_reference_config,
|
2455
|
+
:tags,
|
2456
|
+
:kms_key_arn)
|
2457
|
+
SENSITIVE = []
|
2458
|
+
include Aws::Structure
|
2459
|
+
end
|
2460
|
+
|
2461
|
+
# @!attribute [rw] id_mapping_table
|
2462
|
+
# The ID mapping table that was created.
|
2463
|
+
# @return [Types::IdMappingTable]
|
2464
|
+
#
|
2465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdMappingTableOutput AWS API Documentation
|
2466
|
+
#
|
2467
|
+
class CreateIdMappingTableOutput < Struct.new(
|
2468
|
+
:id_mapping_table)
|
2469
|
+
SENSITIVE = []
|
2470
|
+
include Aws::Structure
|
2471
|
+
end
|
2472
|
+
|
2473
|
+
# @!attribute [rw] membership_identifier
|
2474
|
+
# The unique identifier of the membership that contains the ID
|
2475
|
+
# namespace association.
|
2476
|
+
# @return [String]
|
2477
|
+
#
|
2478
|
+
# @!attribute [rw] input_reference_config
|
2479
|
+
# The input reference configuration needed to create the ID namespace
|
2480
|
+
# association.
|
2481
|
+
# @return [Types::IdNamespaceAssociationInputReferenceConfig]
|
2482
|
+
#
|
2483
|
+
# @!attribute [rw] tags
|
2484
|
+
# An optional label that you can assign to a resource when you create
|
2485
|
+
# it. Each tag consists of a key and an optional value, both of which
|
2486
|
+
# you define. When you use tagging, you can also use tag-based access
|
2487
|
+
# control in IAM policies to control access to this resource.
|
2488
|
+
# @return [Hash<String,String>]
|
2489
|
+
#
|
2490
|
+
# @!attribute [rw] name
|
2491
|
+
# The name for the ID namespace association.
|
2492
|
+
# @return [String]
|
2493
|
+
#
|
2494
|
+
# @!attribute [rw] description
|
2495
|
+
# The description of the ID namespace association.
|
2496
|
+
# @return [String]
|
2497
|
+
#
|
2498
|
+
# @!attribute [rw] id_mapping_config
|
2499
|
+
# The configuration settings for the ID mapping table.
|
2500
|
+
# @return [Types::IdMappingConfig]
|
2501
|
+
#
|
2502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdNamespaceAssociationInput AWS API Documentation
|
2503
|
+
#
|
2504
|
+
class CreateIdNamespaceAssociationInput < Struct.new(
|
2505
|
+
:membership_identifier,
|
2506
|
+
:input_reference_config,
|
2507
|
+
:tags,
|
2508
|
+
:name,
|
2509
|
+
:description,
|
2510
|
+
:id_mapping_config)
|
2511
|
+
SENSITIVE = []
|
2512
|
+
include Aws::Structure
|
2513
|
+
end
|
2514
|
+
|
2515
|
+
# @!attribute [rw] id_namespace_association
|
2516
|
+
# The ID namespace association that was created.
|
2517
|
+
# @return [Types::IdNamespaceAssociation]
|
2518
|
+
#
|
2519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/CreateIdNamespaceAssociationOutput AWS API Documentation
|
2520
|
+
#
|
2521
|
+
class CreateIdNamespaceAssociationOutput < Struct.new(
|
2522
|
+
:id_namespace_association)
|
2523
|
+
SENSITIVE = []
|
2524
|
+
include Aws::Structure
|
2525
|
+
end
|
2526
|
+
|
2235
2527
|
# @!attribute [rw] collaboration_identifier
|
2236
2528
|
# The unique ID for the associated collaboration.
|
2237
2529
|
# @return [String]
|
@@ -2506,6 +2798,52 @@ module Aws::CleanRooms
|
|
2506
2798
|
#
|
2507
2799
|
class DeleteConfiguredTableOutput < Aws::EmptyStructure; end
|
2508
2800
|
|
2801
|
+
# @!attribute [rw] id_mapping_table_identifier
|
2802
|
+
# The unique identifier of the ID mapping table that you want to
|
2803
|
+
# delete.
|
2804
|
+
# @return [String]
|
2805
|
+
#
|
2806
|
+
# @!attribute [rw] membership_identifier
|
2807
|
+
# The unique identifier of the membership that contains the ID mapping
|
2808
|
+
# table that you want to delete.
|
2809
|
+
# @return [String]
|
2810
|
+
#
|
2811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdMappingTableInput AWS API Documentation
|
2812
|
+
#
|
2813
|
+
class DeleteIdMappingTableInput < Struct.new(
|
2814
|
+
:id_mapping_table_identifier,
|
2815
|
+
:membership_identifier)
|
2816
|
+
SENSITIVE = []
|
2817
|
+
include Aws::Structure
|
2818
|
+
end
|
2819
|
+
|
2820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdMappingTableOutput AWS API Documentation
|
2821
|
+
#
|
2822
|
+
class DeleteIdMappingTableOutput < Aws::EmptyStructure; end
|
2823
|
+
|
2824
|
+
# @!attribute [rw] id_namespace_association_identifier
|
2825
|
+
# The unique identifier of the ID namespace association that you want
|
2826
|
+
# to delete.
|
2827
|
+
# @return [String]
|
2828
|
+
#
|
2829
|
+
# @!attribute [rw] membership_identifier
|
2830
|
+
# The unique identifier of the membership that contains the ID
|
2831
|
+
# namespace association that you want to delete.
|
2832
|
+
# @return [String]
|
2833
|
+
#
|
2834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdNamespaceAssociationInput AWS API Documentation
|
2835
|
+
#
|
2836
|
+
class DeleteIdNamespaceAssociationInput < Struct.new(
|
2837
|
+
:id_namespace_association_identifier,
|
2838
|
+
:membership_identifier)
|
2839
|
+
SENSITIVE = []
|
2840
|
+
include Aws::Structure
|
2841
|
+
end
|
2842
|
+
|
2843
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/DeleteIdNamespaceAssociationOutput AWS API Documentation
|
2844
|
+
#
|
2845
|
+
class DeleteIdNamespaceAssociationOutput < Aws::EmptyStructure; end
|
2846
|
+
|
2509
2847
|
# @!attribute [rw] collaboration_identifier
|
2510
2848
|
# The unique identifier for the associated collaboration.
|
2511
2849
|
# @return [String]
|
@@ -2915,6 +3253,37 @@ module Aws::CleanRooms
|
|
2915
3253
|
include Aws::Structure
|
2916
3254
|
end
|
2917
3255
|
|
3256
|
+
# @!attribute [rw] collaboration_identifier
|
3257
|
+
# The unique identifier of the collaboration that contains the ID
|
3258
|
+
# namespace association that you want to retrieve.
|
3259
|
+
# @return [String]
|
3260
|
+
#
|
3261
|
+
# @!attribute [rw] id_namespace_association_identifier
|
3262
|
+
# The unique identifier of the ID namespace association that you want
|
3263
|
+
# to retrieve.
|
3264
|
+
# @return [String]
|
3265
|
+
#
|
3266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationIdNamespaceAssociationInput AWS API Documentation
|
3267
|
+
#
|
3268
|
+
class GetCollaborationIdNamespaceAssociationInput < Struct.new(
|
3269
|
+
:collaboration_identifier,
|
3270
|
+
:id_namespace_association_identifier)
|
3271
|
+
SENSITIVE = []
|
3272
|
+
include Aws::Structure
|
3273
|
+
end
|
3274
|
+
|
3275
|
+
# @!attribute [rw] collaboration_id_namespace_association
|
3276
|
+
# The ID namespace association that you requested.
|
3277
|
+
# @return [Types::CollaborationIdNamespaceAssociation]
|
3278
|
+
#
|
3279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetCollaborationIdNamespaceAssociationOutput AWS API Documentation
|
3280
|
+
#
|
3281
|
+
class GetCollaborationIdNamespaceAssociationOutput < Struct.new(
|
3282
|
+
:collaboration_id_namespace_association)
|
3283
|
+
SENSITIVE = []
|
3284
|
+
include Aws::Structure
|
3285
|
+
end
|
3286
|
+
|
2918
3287
|
# @!attribute [rw] collaboration_identifier
|
2919
3288
|
# The identifier for the collaboration.
|
2920
3289
|
# @return [String]
|
@@ -3088,55 +3457,117 @@ module Aws::CleanRooms
|
|
3088
3457
|
include Aws::Structure
|
3089
3458
|
end
|
3090
3459
|
|
3460
|
+
# @!attribute [rw] id_mapping_table_identifier
|
3461
|
+
# The unique identifier of the ID mapping table identifier that you
|
3462
|
+
# want to retrieve.
|
3463
|
+
# @return [String]
|
3464
|
+
#
|
3091
3465
|
# @!attribute [rw] membership_identifier
|
3092
|
-
# The identifier
|
3466
|
+
# The unique identifier of the membership that contains the ID mapping
|
3467
|
+
# table that you want to retrieve.
|
3093
3468
|
# @return [String]
|
3094
3469
|
#
|
3095
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/
|
3470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdMappingTableInput AWS API Documentation
|
3096
3471
|
#
|
3097
|
-
class
|
3472
|
+
class GetIdMappingTableInput < Struct.new(
|
3473
|
+
:id_mapping_table_identifier,
|
3098
3474
|
:membership_identifier)
|
3099
3475
|
SENSITIVE = []
|
3100
3476
|
include Aws::Structure
|
3101
3477
|
end
|
3102
3478
|
|
3103
|
-
# @!attribute [rw]
|
3104
|
-
# The
|
3105
|
-
# @return [Types::
|
3479
|
+
# @!attribute [rw] id_mapping_table
|
3480
|
+
# The ID mapping table that you requested.
|
3481
|
+
# @return [Types::IdMappingTable]
|
3106
3482
|
#
|
3107
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/
|
3483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdMappingTableOutput AWS API Documentation
|
3108
3484
|
#
|
3109
|
-
class
|
3110
|
-
:
|
3485
|
+
class GetIdMappingTableOutput < Struct.new(
|
3486
|
+
:id_mapping_table)
|
3111
3487
|
SENSITIVE = []
|
3112
3488
|
include Aws::Structure
|
3113
3489
|
end
|
3114
3490
|
|
3115
|
-
# @!attribute [rw]
|
3116
|
-
#
|
3117
|
-
#
|
3118
|
-
# this membership belongs to. Accepts a membership ID.
|
3491
|
+
# @!attribute [rw] id_namespace_association_identifier
|
3492
|
+
# The unique identifier of the ID namespace association that you want
|
3493
|
+
# to retrieve.
|
3119
3494
|
# @return [String]
|
3120
3495
|
#
|
3121
|
-
# @!attribute [rw]
|
3122
|
-
#
|
3496
|
+
# @!attribute [rw] membership_identifier
|
3497
|
+
# The unique identifier of the membership that contains the ID
|
3498
|
+
# namespace association that you want to retrieve.
|
3123
3499
|
# @return [String]
|
3124
3500
|
#
|
3125
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/
|
3501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdNamespaceAssociationInput AWS API Documentation
|
3126
3502
|
#
|
3127
|
-
class
|
3128
|
-
:
|
3129
|
-
:
|
3503
|
+
class GetIdNamespaceAssociationInput < Struct.new(
|
3504
|
+
:id_namespace_association_identifier,
|
3505
|
+
:membership_identifier)
|
3130
3506
|
SENSITIVE = []
|
3131
3507
|
include Aws::Structure
|
3132
3508
|
end
|
3133
3509
|
|
3134
|
-
# @!attribute [rw]
|
3135
|
-
#
|
3136
|
-
#
|
3137
|
-
# @return [Types::PrivacyBudgetTemplate]
|
3510
|
+
# @!attribute [rw] id_namespace_association
|
3511
|
+
# The ID namespace association that you requested.
|
3512
|
+
# @return [Types::IdNamespaceAssociation]
|
3138
3513
|
#
|
3139
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/
|
3514
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetIdNamespaceAssociationOutput AWS API Documentation
|
3515
|
+
#
|
3516
|
+
class GetIdNamespaceAssociationOutput < Struct.new(
|
3517
|
+
:id_namespace_association)
|
3518
|
+
SENSITIVE = []
|
3519
|
+
include Aws::Structure
|
3520
|
+
end
|
3521
|
+
|
3522
|
+
# @!attribute [rw] membership_identifier
|
3523
|
+
# The identifier for a membership resource.
|
3524
|
+
# @return [String]
|
3525
|
+
#
|
3526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembershipInput AWS API Documentation
|
3527
|
+
#
|
3528
|
+
class GetMembershipInput < Struct.new(
|
3529
|
+
:membership_identifier)
|
3530
|
+
SENSITIVE = []
|
3531
|
+
include Aws::Structure
|
3532
|
+
end
|
3533
|
+
|
3534
|
+
# @!attribute [rw] membership
|
3535
|
+
# The membership retrieved for the provided identifier.
|
3536
|
+
# @return [Types::Membership]
|
3537
|
+
#
|
3538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetMembershipOutput AWS API Documentation
|
3539
|
+
#
|
3540
|
+
class GetMembershipOutput < Struct.new(
|
3541
|
+
:membership)
|
3542
|
+
SENSITIVE = []
|
3543
|
+
include Aws::Structure
|
3544
|
+
end
|
3545
|
+
|
3546
|
+
# @!attribute [rw] membership_identifier
|
3547
|
+
# A unique identifier for one of your memberships for a collaboration.
|
3548
|
+
# The privacy budget template is retrieved from the collaboration that
|
3549
|
+
# this membership belongs to. Accepts a membership ID.
|
3550
|
+
# @return [String]
|
3551
|
+
#
|
3552
|
+
# @!attribute [rw] privacy_budget_template_identifier
|
3553
|
+
# A unique identifier for your privacy budget template.
|
3554
|
+
# @return [String]
|
3555
|
+
#
|
3556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetPrivacyBudgetTemplateInput AWS API Documentation
|
3557
|
+
#
|
3558
|
+
class GetPrivacyBudgetTemplateInput < Struct.new(
|
3559
|
+
:membership_identifier,
|
3560
|
+
:privacy_budget_template_identifier)
|
3561
|
+
SENSITIVE = []
|
3562
|
+
include Aws::Structure
|
3563
|
+
end
|
3564
|
+
|
3565
|
+
# @!attribute [rw] privacy_budget_template
|
3566
|
+
# Returns the details of the privacy budget template that you
|
3567
|
+
# requested.
|
3568
|
+
# @return [Types::PrivacyBudgetTemplate]
|
3569
|
+
#
|
3570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetPrivacyBudgetTemplateOutput AWS API Documentation
|
3140
3571
|
#
|
3141
3572
|
class GetPrivacyBudgetTemplateOutput < Struct.new(
|
3142
3573
|
:privacy_budget_template)
|
@@ -3233,29 +3664,481 @@ module Aws::CleanRooms
|
|
3233
3664
|
# The entire schema object.
|
3234
3665
|
# @return [Types::Schema]
|
3235
3666
|
#
|
3236
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchemaOutput AWS API Documentation
|
3667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GetSchemaOutput AWS API Documentation
|
3668
|
+
#
|
3669
|
+
class GetSchemaOutput < Struct.new(
|
3670
|
+
:schema)
|
3671
|
+
SENSITIVE = []
|
3672
|
+
include Aws::Structure
|
3673
|
+
end
|
3674
|
+
|
3675
|
+
# A reference to a table within an Glue data catalog.
|
3676
|
+
#
|
3677
|
+
# @!attribute [rw] table_name
|
3678
|
+
# The name of the Glue table.
|
3679
|
+
# @return [String]
|
3680
|
+
#
|
3681
|
+
# @!attribute [rw] database_name
|
3682
|
+
# The name of the database the Glue table belongs to.
|
3683
|
+
# @return [String]
|
3684
|
+
#
|
3685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/GlueTableReference AWS API Documentation
|
3686
|
+
#
|
3687
|
+
class GlueTableReference < Struct.new(
|
3688
|
+
:table_name,
|
3689
|
+
:database_name)
|
3690
|
+
SENSITIVE = []
|
3691
|
+
include Aws::Structure
|
3692
|
+
end
|
3693
|
+
|
3694
|
+
# The configuration settings for the ID mapping table.
|
3695
|
+
#
|
3696
|
+
# @!attribute [rw] allow_use_as_dimension_column
|
3697
|
+
# An indicator as to whether you can use your column as a dimension
|
3698
|
+
# column in the ID mapping table (`TRUE`) or not (`FALSE`).
|
3699
|
+
#
|
3700
|
+
# Default is `FALSE`.
|
3701
|
+
# @return [Boolean]
|
3702
|
+
#
|
3703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingConfig AWS API Documentation
|
3704
|
+
#
|
3705
|
+
class IdMappingConfig < Struct.new(
|
3706
|
+
:allow_use_as_dimension_column)
|
3707
|
+
SENSITIVE = []
|
3708
|
+
include Aws::Structure
|
3709
|
+
end
|
3710
|
+
|
3711
|
+
# Describes information about the ID mapping table.
|
3712
|
+
#
|
3713
|
+
# @!attribute [rw] id
|
3714
|
+
# The unique identifier of the ID mapping table.
|
3715
|
+
# @return [String]
|
3716
|
+
#
|
3717
|
+
# @!attribute [rw] arn
|
3718
|
+
# The Amazon Resource Name (ARN) of the ID mapping table.
|
3719
|
+
# @return [String]
|
3720
|
+
#
|
3721
|
+
# @!attribute [rw] input_reference_config
|
3722
|
+
# The input reference configuration for the ID mapping table.
|
3723
|
+
# @return [Types::IdMappingTableInputReferenceConfig]
|
3724
|
+
#
|
3725
|
+
# @!attribute [rw] membership_id
|
3726
|
+
# The unique identifier of the membership resource for the ID mapping
|
3727
|
+
# table.
|
3728
|
+
# @return [String]
|
3729
|
+
#
|
3730
|
+
# @!attribute [rw] membership_arn
|
3731
|
+
# The Amazon Resource Name (ARN) of the membership resource for the ID
|
3732
|
+
# mapping table.
|
3733
|
+
# @return [String]
|
3734
|
+
#
|
3735
|
+
# @!attribute [rw] collaboration_id
|
3736
|
+
# The unique identifier of the collaboration that contains this ID
|
3737
|
+
# mapping table.
|
3738
|
+
# @return [String]
|
3739
|
+
#
|
3740
|
+
# @!attribute [rw] collaboration_arn
|
3741
|
+
# The Amazon Resource Name (ARN) of the collaboration that contains
|
3742
|
+
# this ID mapping table.
|
3743
|
+
# @return [String]
|
3744
|
+
#
|
3745
|
+
# @!attribute [rw] description
|
3746
|
+
# The description of the ID mapping table.
|
3747
|
+
# @return [String]
|
3748
|
+
#
|
3749
|
+
# @!attribute [rw] name
|
3750
|
+
# The name of the ID mapping table.
|
3751
|
+
# @return [String]
|
3752
|
+
#
|
3753
|
+
# @!attribute [rw] create_time
|
3754
|
+
# The time at which the ID mapping table was created.
|
3755
|
+
# @return [Time]
|
3756
|
+
#
|
3757
|
+
# @!attribute [rw] update_time
|
3758
|
+
# The most recent time at which the ID mapping table was updated.
|
3759
|
+
# @return [Time]
|
3760
|
+
#
|
3761
|
+
# @!attribute [rw] input_reference_properties
|
3762
|
+
# The input reference properties for the ID mapping table.
|
3763
|
+
# @return [Types::IdMappingTableInputReferenceProperties]
|
3764
|
+
#
|
3765
|
+
# @!attribute [rw] kms_key_arn
|
3766
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
|
3767
|
+
# @return [String]
|
3768
|
+
#
|
3769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTable AWS API Documentation
|
3770
|
+
#
|
3771
|
+
class IdMappingTable < Struct.new(
|
3772
|
+
:id,
|
3773
|
+
:arn,
|
3774
|
+
:input_reference_config,
|
3775
|
+
:membership_id,
|
3776
|
+
:membership_arn,
|
3777
|
+
:collaboration_id,
|
3778
|
+
:collaboration_arn,
|
3779
|
+
:description,
|
3780
|
+
:name,
|
3781
|
+
:create_time,
|
3782
|
+
:update_time,
|
3783
|
+
:input_reference_properties,
|
3784
|
+
:kms_key_arn)
|
3785
|
+
SENSITIVE = []
|
3786
|
+
include Aws::Structure
|
3787
|
+
end
|
3788
|
+
|
3789
|
+
# Provides the input reference configuration for the ID mapping table.
|
3790
|
+
#
|
3791
|
+
# @!attribute [rw] input_reference_arn
|
3792
|
+
# The Amazon Resource Name (ARN) of the referenced resource in Entity
|
3793
|
+
# Resolution. Valid values are ID mapping workflow ARNs.
|
3794
|
+
# @return [String]
|
3795
|
+
#
|
3796
|
+
# @!attribute [rw] manage_resource_policies
|
3797
|
+
# When `TRUE`, Clean Rooms manages permissions for the ID mapping
|
3798
|
+
# table resource.
|
3799
|
+
#
|
3800
|
+
# When `FALSE`, the resource owner manages permissions for the ID
|
3801
|
+
# mapping table resource.
|
3802
|
+
# @return [Boolean]
|
3803
|
+
#
|
3804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableInputReferenceConfig AWS API Documentation
|
3805
|
+
#
|
3806
|
+
class IdMappingTableInputReferenceConfig < Struct.new(
|
3807
|
+
:input_reference_arn,
|
3808
|
+
:manage_resource_policies)
|
3809
|
+
SENSITIVE = []
|
3810
|
+
include Aws::Structure
|
3811
|
+
end
|
3812
|
+
|
3813
|
+
# The input reference properties for the ID mapping table.
|
3814
|
+
#
|
3815
|
+
# @!attribute [rw] id_mapping_table_input_source
|
3816
|
+
# The input source of the ID mapping table.
|
3817
|
+
# @return [Array<Types::IdMappingTableInputSource>]
|
3818
|
+
#
|
3819
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableInputReferenceProperties AWS API Documentation
|
3820
|
+
#
|
3821
|
+
class IdMappingTableInputReferenceProperties < Struct.new(
|
3822
|
+
:id_mapping_table_input_source)
|
3823
|
+
SENSITIVE = []
|
3824
|
+
include Aws::Structure
|
3825
|
+
end
|
3826
|
+
|
3827
|
+
# The input source of the ID mapping table.
|
3828
|
+
#
|
3829
|
+
# @!attribute [rw] id_namespace_association_id
|
3830
|
+
# The unique identifier of the ID namespace association.
|
3831
|
+
# @return [String]
|
3832
|
+
#
|
3833
|
+
# @!attribute [rw] type
|
3834
|
+
# The type of the input source of the ID mapping table.
|
3835
|
+
# @return [String]
|
3836
|
+
#
|
3837
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableInputSource AWS API Documentation
|
3838
|
+
#
|
3839
|
+
class IdMappingTableInputSource < Struct.new(
|
3840
|
+
:id_namespace_association_id,
|
3841
|
+
:type)
|
3842
|
+
SENSITIVE = []
|
3843
|
+
include Aws::Structure
|
3844
|
+
end
|
3845
|
+
|
3846
|
+
# Additional properties that are specific to the type of the associated
|
3847
|
+
# schema.
|
3848
|
+
#
|
3849
|
+
# @!attribute [rw] id_mapping_table_input_source
|
3850
|
+
# Defines which ID namespace associations are used to create the ID
|
3851
|
+
# mapping table.
|
3852
|
+
# @return [Array<Types::IdMappingTableInputSource>]
|
3853
|
+
#
|
3854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableSchemaTypeProperties AWS API Documentation
|
3855
|
+
#
|
3856
|
+
class IdMappingTableSchemaTypeProperties < Struct.new(
|
3857
|
+
:id_mapping_table_input_source)
|
3858
|
+
SENSITIVE = []
|
3859
|
+
include Aws::Structure
|
3860
|
+
end
|
3861
|
+
|
3862
|
+
# Detailed information about the ID mapping table.
|
3863
|
+
#
|
3864
|
+
# @!attribute [rw] collaboration_arn
|
3865
|
+
# The Amazon Resource Name (ARN) of the collaboration that contains
|
3866
|
+
# this ID mapping table.
|
3867
|
+
# @return [String]
|
3868
|
+
#
|
3869
|
+
# @!attribute [rw] collaboration_id
|
3870
|
+
# The unique identifier of the collaboration that contains this ID
|
3871
|
+
# mapping table.
|
3872
|
+
# @return [String]
|
3873
|
+
#
|
3874
|
+
# @!attribute [rw] membership_id
|
3875
|
+
# The unique identifier of the membership resource for this ID mapping
|
3876
|
+
# table.
|
3877
|
+
# @return [String]
|
3878
|
+
#
|
3879
|
+
# @!attribute [rw] membership_arn
|
3880
|
+
# The Amazon Resource Name (ARN) of the membership resource for this
|
3881
|
+
# ID mapping table.
|
3882
|
+
# @return [String]
|
3883
|
+
#
|
3884
|
+
# @!attribute [rw] create_time
|
3885
|
+
# The time at which this ID mapping table was created.
|
3886
|
+
# @return [Time]
|
3887
|
+
#
|
3888
|
+
# @!attribute [rw] update_time
|
3889
|
+
# The most recent time at which this ID mapping table was updated.
|
3890
|
+
# @return [Time]
|
3891
|
+
#
|
3892
|
+
# @!attribute [rw] id
|
3893
|
+
# The unique identifier of this ID mapping table.
|
3894
|
+
# @return [String]
|
3895
|
+
#
|
3896
|
+
# @!attribute [rw] arn
|
3897
|
+
# The Amazon Resource Name (ARN) of this ID mapping table.
|
3898
|
+
# @return [String]
|
3899
|
+
#
|
3900
|
+
# @!attribute [rw] description
|
3901
|
+
# The description of this ID mapping table.
|
3902
|
+
# @return [String]
|
3903
|
+
#
|
3904
|
+
# @!attribute [rw] input_reference_config
|
3905
|
+
# The input reference configuration for the ID mapping table.
|
3906
|
+
# @return [Types::IdMappingTableInputReferenceConfig]
|
3907
|
+
#
|
3908
|
+
# @!attribute [rw] name
|
3909
|
+
# The name of this ID mapping table.
|
3910
|
+
# @return [String]
|
3911
|
+
#
|
3912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdMappingTableSummary AWS API Documentation
|
3913
|
+
#
|
3914
|
+
class IdMappingTableSummary < Struct.new(
|
3915
|
+
:collaboration_arn,
|
3916
|
+
:collaboration_id,
|
3917
|
+
:membership_id,
|
3918
|
+
:membership_arn,
|
3919
|
+
:create_time,
|
3920
|
+
:update_time,
|
3921
|
+
:id,
|
3922
|
+
:arn,
|
3923
|
+
:description,
|
3924
|
+
:input_reference_config,
|
3925
|
+
:name)
|
3926
|
+
SENSITIVE = []
|
3927
|
+
include Aws::Structure
|
3928
|
+
end
|
3929
|
+
|
3930
|
+
# Provides information to create the ID namespace association.
|
3931
|
+
#
|
3932
|
+
# @!attribute [rw] id
|
3933
|
+
# The unique identifier for this ID namespace association.
|
3934
|
+
# @return [String]
|
3935
|
+
#
|
3936
|
+
# @!attribute [rw] arn
|
3937
|
+
# The Amazon Resource Name (ARN) of the ID namespace association.
|
3938
|
+
# @return [String]
|
3939
|
+
#
|
3940
|
+
# @!attribute [rw] membership_id
|
3941
|
+
# The unique identifier of the membership resource for this ID
|
3942
|
+
# namespace association.
|
3943
|
+
# @return [String]
|
3944
|
+
#
|
3945
|
+
# @!attribute [rw] membership_arn
|
3946
|
+
# The Amazon Resource Name (ARN) of the membership resource for this
|
3947
|
+
# ID namespace association.
|
3948
|
+
# @return [String]
|
3949
|
+
#
|
3950
|
+
# @!attribute [rw] collaboration_id
|
3951
|
+
# The unique identifier of the collaboration that contains this ID
|
3952
|
+
# namespace association.
|
3953
|
+
# @return [String]
|
3954
|
+
#
|
3955
|
+
# @!attribute [rw] collaboration_arn
|
3956
|
+
# The Amazon Resource Name (ARN) of the collaboration that contains
|
3957
|
+
# this ID namespace association.
|
3958
|
+
# @return [String]
|
3959
|
+
#
|
3960
|
+
# @!attribute [rw] name
|
3961
|
+
# The name of this ID namespace association.
|
3962
|
+
# @return [String]
|
3963
|
+
#
|
3964
|
+
# @!attribute [rw] description
|
3965
|
+
# The description of the ID namespace association.
|
3966
|
+
# @return [String]
|
3967
|
+
#
|
3968
|
+
# @!attribute [rw] create_time
|
3969
|
+
# The time at which the ID namespace association was created.
|
3970
|
+
# @return [Time]
|
3971
|
+
#
|
3972
|
+
# @!attribute [rw] update_time
|
3973
|
+
# The most recent time at which the ID namespace association was
|
3974
|
+
# updated.
|
3975
|
+
# @return [Time]
|
3976
|
+
#
|
3977
|
+
# @!attribute [rw] input_reference_config
|
3978
|
+
# The input reference configuration for the ID namespace association.
|
3979
|
+
# @return [Types::IdNamespaceAssociationInputReferenceConfig]
|
3980
|
+
#
|
3981
|
+
# @!attribute [rw] input_reference_properties
|
3982
|
+
# The input reference properties for the ID namespace association.
|
3983
|
+
# @return [Types::IdNamespaceAssociationInputReferenceProperties]
|
3984
|
+
#
|
3985
|
+
# @!attribute [rw] id_mapping_config
|
3986
|
+
# The configuration settings for the ID mapping table.
|
3987
|
+
# @return [Types::IdMappingConfig]
|
3988
|
+
#
|
3989
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociation AWS API Documentation
|
3990
|
+
#
|
3991
|
+
class IdNamespaceAssociation < Struct.new(
|
3992
|
+
:id,
|
3993
|
+
:arn,
|
3994
|
+
:membership_id,
|
3995
|
+
:membership_arn,
|
3996
|
+
:collaboration_id,
|
3997
|
+
:collaboration_arn,
|
3998
|
+
:name,
|
3999
|
+
:description,
|
4000
|
+
:create_time,
|
4001
|
+
:update_time,
|
4002
|
+
:input_reference_config,
|
4003
|
+
:input_reference_properties,
|
4004
|
+
:id_mapping_config)
|
4005
|
+
SENSITIVE = []
|
4006
|
+
include Aws::Structure
|
4007
|
+
end
|
4008
|
+
|
4009
|
+
# Provides the information for the ID namespace association input
|
4010
|
+
# reference configuration.
|
4011
|
+
#
|
4012
|
+
# @!attribute [rw] input_reference_arn
|
4013
|
+
# The Amazon Resource Name (ARN) of the Entity Resolution resource
|
4014
|
+
# that is being associated to the collaboration. Valid resource ARNs
|
4015
|
+
# are from the ID namespaces that you own.
|
4016
|
+
# @return [String]
|
4017
|
+
#
|
4018
|
+
# @!attribute [rw] manage_resource_policies
|
4019
|
+
# When `TRUE`, Clean Rooms manages permissions for the ID namespace
|
4020
|
+
# association resource.
|
4021
|
+
#
|
4022
|
+
# When `FALSE`, the resource owner manages permissions for the ID
|
4023
|
+
# namespace association resource.
|
4024
|
+
# @return [Boolean]
|
4025
|
+
#
|
4026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationInputReferenceConfig AWS API Documentation
|
4027
|
+
#
|
4028
|
+
class IdNamespaceAssociationInputReferenceConfig < Struct.new(
|
4029
|
+
:input_reference_arn,
|
4030
|
+
:manage_resource_policies)
|
4031
|
+
SENSITIVE = []
|
4032
|
+
include Aws::Structure
|
4033
|
+
end
|
4034
|
+
|
4035
|
+
# Provides the information for the ID namespace association input
|
4036
|
+
# reference properties.
|
4037
|
+
#
|
4038
|
+
# @!attribute [rw] id_namespace_type
|
4039
|
+
# The ID namespace type for this ID namespace association.
|
4040
|
+
# @return [String]
|
4041
|
+
#
|
4042
|
+
# @!attribute [rw] id_mapping_workflows_supported
|
4043
|
+
# Defines how ID mapping workflows are supported for this ID namespace
|
4044
|
+
# association.
|
4045
|
+
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
4046
|
+
#
|
4047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationInputReferenceProperties AWS API Documentation
|
4048
|
+
#
|
4049
|
+
class IdNamespaceAssociationInputReferenceProperties < Struct.new(
|
4050
|
+
:id_namespace_type,
|
4051
|
+
:id_mapping_workflows_supported)
|
4052
|
+
SENSITIVE = []
|
4053
|
+
include Aws::Structure
|
4054
|
+
end
|
4055
|
+
|
4056
|
+
# Detailed information about the ID namespace association input
|
4057
|
+
# reference properties.
|
4058
|
+
#
|
4059
|
+
# @!attribute [rw] id_namespace_type
|
4060
|
+
# The ID namespace type for this ID namespace association.
|
4061
|
+
# @return [String]
|
4062
|
+
#
|
4063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationInputReferencePropertiesSummary AWS API Documentation
|
4064
|
+
#
|
4065
|
+
class IdNamespaceAssociationInputReferencePropertiesSummary < Struct.new(
|
4066
|
+
:id_namespace_type)
|
4067
|
+
SENSITIVE = []
|
4068
|
+
include Aws::Structure
|
4069
|
+
end
|
4070
|
+
|
4071
|
+
# Detailed information about the ID namespace association.
|
4072
|
+
#
|
4073
|
+
# @!attribute [rw] membership_id
|
4074
|
+
# The unique identifier of the membership resource for this ID
|
4075
|
+
# namespace association.
|
4076
|
+
# @return [String]
|
4077
|
+
#
|
4078
|
+
# @!attribute [rw] membership_arn
|
4079
|
+
# The Amazon Resource Name (ARN) of the membership resource for this
|
4080
|
+
# ID namespace association.
|
4081
|
+
# @return [String]
|
4082
|
+
#
|
4083
|
+
# @!attribute [rw] collaboration_arn
|
4084
|
+
# The Amazon Resource Name (ARN) of the collaboration that contains
|
4085
|
+
# this ID namespace association.
|
4086
|
+
# @return [String]
|
4087
|
+
#
|
4088
|
+
# @!attribute [rw] collaboration_id
|
4089
|
+
# The unique identifier of the collaboration that contains this ID
|
4090
|
+
# namespace association.
|
4091
|
+
# @return [String]
|
4092
|
+
#
|
4093
|
+
# @!attribute [rw] create_time
|
4094
|
+
# The time at which this ID namespace association was created.
|
4095
|
+
# @return [Time]
|
3237
4096
|
#
|
3238
|
-
|
3239
|
-
|
3240
|
-
|
3241
|
-
|
3242
|
-
end
|
3243
|
-
|
3244
|
-
# A reference to a table within an Glue data catalog.
|
4097
|
+
# @!attribute [rw] update_time
|
4098
|
+
# The most recent time at which this ID namespace association has been
|
4099
|
+
# updated.
|
4100
|
+
# @return [Time]
|
3245
4101
|
#
|
3246
|
-
# @!attribute [rw]
|
3247
|
-
# The
|
4102
|
+
# @!attribute [rw] id
|
4103
|
+
# The unique identifier of this ID namespace association.
|
3248
4104
|
# @return [String]
|
3249
4105
|
#
|
3250
|
-
# @!attribute [rw]
|
3251
|
-
# The
|
4106
|
+
# @!attribute [rw] arn
|
4107
|
+
# The Amazon Resource Name (ARN) of this ID namespace association.
|
3252
4108
|
# @return [String]
|
3253
4109
|
#
|
3254
|
-
#
|
4110
|
+
# @!attribute [rw] input_reference_config
|
4111
|
+
# The input reference configuration details for this ID namespace
|
4112
|
+
# association.
|
4113
|
+
# @return [Types::IdNamespaceAssociationInputReferenceConfig]
|
3255
4114
|
#
|
3256
|
-
|
3257
|
-
|
3258
|
-
|
4115
|
+
# @!attribute [rw] name
|
4116
|
+
# The name of the ID namespace association.
|
4117
|
+
# @return [String]
|
4118
|
+
#
|
4119
|
+
# @!attribute [rw] description
|
4120
|
+
# The description of the ID namespace association.
|
4121
|
+
# @return [String]
|
4122
|
+
#
|
4123
|
+
# @!attribute [rw] input_reference_properties
|
4124
|
+
# The input reference properties for this ID namespace association.
|
4125
|
+
# @return [Types::IdNamespaceAssociationInputReferencePropertiesSummary]
|
4126
|
+
#
|
4127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/IdNamespaceAssociationSummary AWS API Documentation
|
4128
|
+
#
|
4129
|
+
class IdNamespaceAssociationSummary < Struct.new(
|
4130
|
+
:membership_id,
|
4131
|
+
:membership_arn,
|
4132
|
+
:collaboration_arn,
|
4133
|
+
:collaboration_id,
|
4134
|
+
:create_time,
|
4135
|
+
:update_time,
|
4136
|
+
:id,
|
4137
|
+
:arn,
|
4138
|
+
:input_reference_config,
|
4139
|
+
:name,
|
4140
|
+
:description,
|
4141
|
+
:input_reference_properties)
|
3259
4142
|
SENSITIVE = []
|
3260
4143
|
include Aws::Structure
|
3261
4144
|
end
|
@@ -3278,12 +4161,14 @@ module Aws::CleanRooms
|
|
3278
4161
|
# @return [String]
|
3279
4162
|
#
|
3280
4163
|
# @!attribute [rw] next_token
|
3281
|
-
# The token
|
3282
|
-
# page of results.
|
4164
|
+
# The pagination token that's used to fetch the next set of results.
|
3283
4165
|
# @return [String]
|
3284
4166
|
#
|
3285
4167
|
# @!attribute [rw] max_results
|
3286
|
-
# The maximum
|
4168
|
+
# The maximum number of results that are returned for an API request
|
4169
|
+
# call. The service chooses a default number if you don't set one.
|
4170
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4171
|
+
# value has not been met.
|
3287
4172
|
# @return [Integer]
|
3288
4173
|
#
|
3289
4174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListAnalysisTemplatesInput AWS API Documentation
|
@@ -3297,8 +4182,7 @@ module Aws::CleanRooms
|
|
3297
4182
|
end
|
3298
4183
|
|
3299
4184
|
# @!attribute [rw] next_token
|
3300
|
-
# The token
|
3301
|
-
# page of results.
|
4185
|
+
# The pagination token that's used to fetch the next set of results.
|
3302
4186
|
# @return [String]
|
3303
4187
|
#
|
3304
4188
|
# @!attribute [rw] analysis_template_summaries
|
@@ -3320,12 +4204,14 @@ module Aws::CleanRooms
|
|
3320
4204
|
# @return [String]
|
3321
4205
|
#
|
3322
4206
|
# @!attribute [rw] next_token
|
3323
|
-
# The token
|
3324
|
-
# page of results.
|
4207
|
+
# The pagination token that's used to fetch the next set of results.
|
3325
4208
|
# @return [String]
|
3326
4209
|
#
|
3327
4210
|
# @!attribute [rw] max_results
|
3328
|
-
# The maximum
|
4211
|
+
# The maximum number of results that are returned for an API request
|
4212
|
+
# call. The service chooses a default number if you don't set one.
|
4213
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4214
|
+
# value has not been met.
|
3329
4215
|
# @return [Integer]
|
3330
4216
|
#
|
3331
4217
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationAnalysisTemplatesInput AWS API Documentation
|
@@ -3339,8 +4225,7 @@ module Aws::CleanRooms
|
|
3339
4225
|
end
|
3340
4226
|
|
3341
4227
|
# @!attribute [rw] next_token
|
3342
|
-
# The token
|
3343
|
-
# page of results.
|
4228
|
+
# The pagination token that's used to fetch the next set of results.
|
3344
4229
|
# @return [String]
|
3345
4230
|
#
|
3346
4231
|
# @!attribute [rw] collaboration_analysis_template_summaries
|
@@ -3362,12 +4247,14 @@ module Aws::CleanRooms
|
|
3362
4247
|
# @return [String]
|
3363
4248
|
#
|
3364
4249
|
# @!attribute [rw] next_token
|
3365
|
-
# The token
|
3366
|
-
# page of results.
|
4250
|
+
# The pagination token that's used to fetch the next set of results.
|
3367
4251
|
# @return [String]
|
3368
4252
|
#
|
3369
4253
|
# @!attribute [rw] max_results
|
3370
|
-
# The maximum
|
4254
|
+
# The maximum number of results that are returned for an API request
|
4255
|
+
# call. The service chooses a default number if you don't set one.
|
4256
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4257
|
+
# value has not been met.
|
3371
4258
|
# @return [Integer]
|
3372
4259
|
#
|
3373
4260
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsInput AWS API Documentation
|
@@ -3386,8 +4273,7 @@ module Aws::CleanRooms
|
|
3386
4273
|
# @return [Array<Types::CollaborationConfiguredAudienceModelAssociationSummary>]
|
3387
4274
|
#
|
3388
4275
|
# @!attribute [rw] next_token
|
3389
|
-
# The token
|
3390
|
-
# page of results.
|
4276
|
+
# The pagination token that's used to fetch the next set of results.
|
3391
4277
|
# @return [String]
|
3392
4278
|
#
|
3393
4279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationConfiguredAudienceModelAssociationsOutput AWS API Documentation
|
@@ -3400,18 +4286,61 @@ module Aws::CleanRooms
|
|
3400
4286
|
end
|
3401
4287
|
|
3402
4288
|
# @!attribute [rw] collaboration_identifier
|
3403
|
-
#
|
4289
|
+
# The unique identifier of the collaboration that contains the ID
|
4290
|
+
# namespace associations that you want to retrieve.
|
3404
4291
|
# @return [String]
|
3405
4292
|
#
|
3406
4293
|
# @!attribute [rw] next_token
|
3407
|
-
# The token
|
3408
|
-
# page of results.
|
4294
|
+
# The pagination token that's used to fetch the next set of results.
|
3409
4295
|
# @return [String]
|
3410
4296
|
#
|
3411
4297
|
# @!attribute [rw] max_results
|
3412
4298
|
# The maximum size of the results that is returned per call. Service
|
3413
4299
|
# chooses a default if it has not been set. Service may return a
|
3414
|
-
# nextToken even if the maximum results has not been met
|
4300
|
+
# nextToken even if the maximum results has not been met.>
|
4301
|
+
# @return [Integer]
|
4302
|
+
#
|
4303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationIdNamespaceAssociationsInput AWS API Documentation
|
4304
|
+
#
|
4305
|
+
class ListCollaborationIdNamespaceAssociationsInput < Struct.new(
|
4306
|
+
:collaboration_identifier,
|
4307
|
+
:next_token,
|
4308
|
+
:max_results)
|
4309
|
+
SENSITIVE = []
|
4310
|
+
include Aws::Structure
|
4311
|
+
end
|
4312
|
+
|
4313
|
+
# @!attribute [rw] next_token
|
4314
|
+
# The token value provided to access the next page of results.
|
4315
|
+
# @return [String]
|
4316
|
+
#
|
4317
|
+
# @!attribute [rw] collaboration_id_namespace_association_summaries
|
4318
|
+
# The summary information of the collaboration ID namespace
|
4319
|
+
# associations that you requested.
|
4320
|
+
# @return [Array<Types::CollaborationIdNamespaceAssociationSummary>]
|
4321
|
+
#
|
4322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationIdNamespaceAssociationsOutput AWS API Documentation
|
4323
|
+
#
|
4324
|
+
class ListCollaborationIdNamespaceAssociationsOutput < Struct.new(
|
4325
|
+
:next_token,
|
4326
|
+
:collaboration_id_namespace_association_summaries)
|
4327
|
+
SENSITIVE = []
|
4328
|
+
include Aws::Structure
|
4329
|
+
end
|
4330
|
+
|
4331
|
+
# @!attribute [rw] collaboration_identifier
|
4332
|
+
# A unique identifier for one of your collaborations.
|
4333
|
+
# @return [String]
|
4334
|
+
#
|
4335
|
+
# @!attribute [rw] next_token
|
4336
|
+
# The pagination token that's used to fetch the next set of results.
|
4337
|
+
# @return [String]
|
4338
|
+
#
|
4339
|
+
# @!attribute [rw] max_results
|
4340
|
+
# The maximum number of results that are returned for an API request
|
4341
|
+
# call. The service chooses a default number if you don't set one.
|
4342
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4343
|
+
# value has not been met.
|
3415
4344
|
# @return [Integer]
|
3416
4345
|
#
|
3417
4346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetTemplatesInput AWS API Documentation
|
@@ -3425,8 +4354,7 @@ module Aws::CleanRooms
|
|
3425
4354
|
end
|
3426
4355
|
|
3427
4356
|
# @!attribute [rw] next_token
|
3428
|
-
# The token
|
3429
|
-
# page of results.
|
4357
|
+
# The pagination token that's used to fetch the next set of results.
|
3430
4358
|
# @return [String]
|
3431
4359
|
#
|
3432
4360
|
# @!attribute [rw] collaboration_privacy_budget_template_summaries
|
@@ -3453,14 +4381,14 @@ module Aws::CleanRooms
|
|
3453
4381
|
# @return [String]
|
3454
4382
|
#
|
3455
4383
|
# @!attribute [rw] max_results
|
3456
|
-
# The maximum
|
3457
|
-
# chooses a default if
|
3458
|
-
#
|
4384
|
+
# The maximum number of results that are returned for an API request
|
4385
|
+
# call. The service chooses a default number if you don't set one.
|
4386
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4387
|
+
# value has not been met.
|
3459
4388
|
# @return [Integer]
|
3460
4389
|
#
|
3461
4390
|
# @!attribute [rw] next_token
|
3462
|
-
# The token
|
3463
|
-
# page of results.
|
4391
|
+
# The pagination token that's used to fetch the next set of results.
|
3464
4392
|
# @return [String]
|
3465
4393
|
#
|
3466
4394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsInput AWS API Documentation
|
@@ -3479,8 +4407,7 @@ module Aws::CleanRooms
|
|
3479
4407
|
# @return [Array<Types::CollaborationPrivacyBudgetSummary>]
|
3480
4408
|
#
|
3481
4409
|
# @!attribute [rw] next_token
|
3482
|
-
# The token
|
3483
|
-
# page of results.
|
4410
|
+
# The pagination token that's used to fetch the next set of results.
|
3484
4411
|
# @return [String]
|
3485
4412
|
#
|
3486
4413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListCollaborationPrivacyBudgetsOutput AWS API Documentation
|
@@ -3493,14 +4420,14 @@ module Aws::CleanRooms
|
|
3493
4420
|
end
|
3494
4421
|
|
3495
4422
|
# @!attribute [rw] next_token
|
3496
|
-
# The token
|
3497
|
-
# page of results.
|
4423
|
+
# The pagination token that's used to fetch the next set of results.
|
3498
4424
|
# @return [String]
|
3499
4425
|
#
|
3500
4426
|
# @!attribute [rw] max_results
|
3501
|
-
# The maximum
|
3502
|
-
# chooses a default if
|
3503
|
-
#
|
4427
|
+
# The maximum number of results that are returned for an API request
|
4428
|
+
# call. The service chooses a default number if you don't set one.
|
4429
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4430
|
+
# value has not been met.
|
3504
4431
|
# @return [Integer]
|
3505
4432
|
#
|
3506
4433
|
# @!attribute [rw] member_status
|
@@ -3518,8 +4445,7 @@ module Aws::CleanRooms
|
|
3518
4445
|
end
|
3519
4446
|
|
3520
4447
|
# @!attribute [rw] next_token
|
3521
|
-
# The token
|
3522
|
-
# page of results.
|
4448
|
+
# The pagination token that's used to fetch the next set of results.
|
3523
4449
|
# @return [String]
|
3524
4450
|
#
|
3525
4451
|
# @!attribute [rw] collaboration_list
|
@@ -3541,14 +4467,14 @@ module Aws::CleanRooms
|
|
3541
4467
|
# @return [String]
|
3542
4468
|
#
|
3543
4469
|
# @!attribute [rw] next_token
|
3544
|
-
# The token
|
3545
|
-
# page of results.
|
4470
|
+
# The pagination token that's used to fetch the next set of results.
|
3546
4471
|
# @return [String]
|
3547
4472
|
#
|
3548
4473
|
# @!attribute [rw] max_results
|
3549
|
-
# The maximum
|
3550
|
-
# chooses a default if
|
3551
|
-
#
|
4474
|
+
# The maximum number of results that are returned for an API request
|
4475
|
+
# call. The service chooses a default number if you don't set one.
|
4476
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4477
|
+
# value has not been met.
|
3552
4478
|
# @return [Integer]
|
3553
4479
|
#
|
3554
4480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredAudienceModelAssociationsInput AWS API Documentation
|
@@ -3585,12 +4511,14 @@ module Aws::CleanRooms
|
|
3585
4511
|
# @return [String]
|
3586
4512
|
#
|
3587
4513
|
# @!attribute [rw] next_token
|
3588
|
-
# The token
|
3589
|
-
# page of results.
|
4514
|
+
# The pagination token that's used to fetch the next set of results.
|
3590
4515
|
# @return [String]
|
3591
4516
|
#
|
3592
4517
|
# @!attribute [rw] max_results
|
3593
|
-
# The maximum
|
4518
|
+
# The maximum number of results that are returned for an API request
|
4519
|
+
# call. The service chooses a default number if you don't set one.
|
4520
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4521
|
+
# value has not been met.
|
3594
4522
|
# @return [Integer]
|
3595
4523
|
#
|
3596
4524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsInput AWS API Documentation
|
@@ -3608,8 +4536,7 @@ module Aws::CleanRooms
|
|
3608
4536
|
# @return [Array<Types::ConfiguredTableAssociationSummary>]
|
3609
4537
|
#
|
3610
4538
|
# @!attribute [rw] next_token
|
3611
|
-
# The token
|
3612
|
-
# page of results.
|
4539
|
+
# The pagination token that's used to fetch the next set of results.
|
3613
4540
|
# @return [String]
|
3614
4541
|
#
|
3615
4542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTableAssociationsOutput AWS API Documentation
|
@@ -3622,12 +4549,14 @@ module Aws::CleanRooms
|
|
3622
4549
|
end
|
3623
4550
|
|
3624
4551
|
# @!attribute [rw] next_token
|
3625
|
-
# The token
|
3626
|
-
# page of results.
|
4552
|
+
# The pagination token that's used to fetch the next set of results.
|
3627
4553
|
# @return [String]
|
3628
4554
|
#
|
3629
4555
|
# @!attribute [rw] max_results
|
3630
|
-
# The maximum
|
4556
|
+
# The maximum number of results that are returned for an API request
|
4557
|
+
# call. The service chooses a default number if you don't set one.
|
4558
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4559
|
+
# value has not been met.
|
3631
4560
|
# @return [Integer]
|
3632
4561
|
#
|
3633
4562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesInput AWS API Documentation
|
@@ -3644,8 +4573,7 @@ module Aws::CleanRooms
|
|
3644
4573
|
# @return [Array<Types::ConfiguredTableSummary>]
|
3645
4574
|
#
|
3646
4575
|
# @!attribute [rw] next_token
|
3647
|
-
# The token
|
3648
|
-
# page of results.
|
4576
|
+
# The pagination token that's used to fetch the next set of results.
|
3649
4577
|
# @return [String]
|
3650
4578
|
#
|
3651
4579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListConfiguredTablesOutput AWS API Documentation
|
@@ -3657,17 +4585,104 @@ module Aws::CleanRooms
|
|
3657
4585
|
include Aws::Structure
|
3658
4586
|
end
|
3659
4587
|
|
4588
|
+
# @!attribute [rw] membership_identifier
|
4589
|
+
# The unique identifier of the membership that contains the ID mapping
|
4590
|
+
# tables that you want to view.
|
4591
|
+
# @return [String]
|
4592
|
+
#
|
4593
|
+
# @!attribute [rw] next_token
|
4594
|
+
# The pagination token that's used to fetch the next set of results.
|
4595
|
+
# @return [String]
|
4596
|
+
#
|
4597
|
+
# @!attribute [rw] max_results
|
4598
|
+
# The maximum size of the results that is returned per call. Service
|
4599
|
+
# chooses a default if it has not been set. Service may return a
|
4600
|
+
# nextToken even if the maximum results has not been met.
|
4601
|
+
# @return [Integer]
|
4602
|
+
#
|
4603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdMappingTablesInput AWS API Documentation
|
4604
|
+
#
|
4605
|
+
class ListIdMappingTablesInput < Struct.new(
|
4606
|
+
:membership_identifier,
|
4607
|
+
:next_token,
|
4608
|
+
:max_results)
|
4609
|
+
SENSITIVE = []
|
4610
|
+
include Aws::Structure
|
4611
|
+
end
|
4612
|
+
|
4613
|
+
# @!attribute [rw] id_mapping_table_summaries
|
4614
|
+
# The summary information of the ID mapping tables that you requested.
|
4615
|
+
# @return [Array<Types::IdMappingTableSummary>]
|
4616
|
+
#
|
4617
|
+
# @!attribute [rw] next_token
|
4618
|
+
# The token value provided to access the next page of results.
|
4619
|
+
# @return [String]
|
4620
|
+
#
|
4621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdMappingTablesOutput AWS API Documentation
|
4622
|
+
#
|
4623
|
+
class ListIdMappingTablesOutput < Struct.new(
|
4624
|
+
:id_mapping_table_summaries,
|
4625
|
+
:next_token)
|
4626
|
+
SENSITIVE = []
|
4627
|
+
include Aws::Structure
|
4628
|
+
end
|
4629
|
+
|
4630
|
+
# @!attribute [rw] membership_identifier
|
4631
|
+
# The unique identifier of the membership that contains the ID
|
4632
|
+
# namespace association that you want to view.
|
4633
|
+
# @return [String]
|
4634
|
+
#
|
4635
|
+
# @!attribute [rw] next_token
|
4636
|
+
# The pagination token that's used to fetch the next set of results.
|
4637
|
+
# @return [String]
|
4638
|
+
#
|
4639
|
+
# @!attribute [rw] max_results
|
4640
|
+
# The maximum size of the results that is returned per call. Service
|
4641
|
+
# chooses a default if it has not been set. Service may return a
|
4642
|
+
# nextToken even if the maximum results has not been met.
|
4643
|
+
# @return [Integer]
|
4644
|
+
#
|
4645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdNamespaceAssociationsInput AWS API Documentation
|
4646
|
+
#
|
4647
|
+
class ListIdNamespaceAssociationsInput < Struct.new(
|
4648
|
+
:membership_identifier,
|
4649
|
+
:next_token,
|
4650
|
+
:max_results)
|
4651
|
+
SENSITIVE = []
|
4652
|
+
include Aws::Structure
|
4653
|
+
end
|
4654
|
+
|
4655
|
+
# @!attribute [rw] next_token
|
4656
|
+
# The token value provided to access the next page of results.
|
4657
|
+
# @return [String]
|
4658
|
+
#
|
4659
|
+
# @!attribute [rw] id_namespace_association_summaries
|
4660
|
+
# The summary information of the ID namespace associations that you
|
4661
|
+
# requested.
|
4662
|
+
# @return [Array<Types::IdNamespaceAssociationSummary>]
|
4663
|
+
#
|
4664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListIdNamespaceAssociationsOutput AWS API Documentation
|
4665
|
+
#
|
4666
|
+
class ListIdNamespaceAssociationsOutput < Struct.new(
|
4667
|
+
:next_token,
|
4668
|
+
:id_namespace_association_summaries)
|
4669
|
+
SENSITIVE = []
|
4670
|
+
include Aws::Structure
|
4671
|
+
end
|
4672
|
+
|
3660
4673
|
# @!attribute [rw] collaboration_identifier
|
3661
4674
|
# The identifier of the collaboration in which the members are listed.
|
3662
4675
|
# @return [String]
|
3663
4676
|
#
|
3664
4677
|
# @!attribute [rw] next_token
|
3665
|
-
# The token
|
3666
|
-
# page of results.
|
4678
|
+
# The pagination token that's used to fetch the next set of results.
|
3667
4679
|
# @return [String]
|
3668
4680
|
#
|
3669
4681
|
# @!attribute [rw] max_results
|
3670
|
-
# The maximum
|
4682
|
+
# The maximum number of results that are returned for an API request
|
4683
|
+
# call. The service chooses a default number if you don't set one.
|
4684
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4685
|
+
# value has not been met.
|
3671
4686
|
# @return [Integer]
|
3672
4687
|
#
|
3673
4688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListMembersInput AWS API Documentation
|
@@ -3681,8 +4696,7 @@ module Aws::CleanRooms
|
|
3681
4696
|
end
|
3682
4697
|
|
3683
4698
|
# @!attribute [rw] next_token
|
3684
|
-
# The token
|
3685
|
-
# page of results.
|
4699
|
+
# The pagination token that's used to fetch the next set of results.
|
3686
4700
|
# @return [String]
|
3687
4701
|
#
|
3688
4702
|
# @!attribute [rw] member_summaries
|
@@ -3699,12 +4713,14 @@ module Aws::CleanRooms
|
|
3699
4713
|
end
|
3700
4714
|
|
3701
4715
|
# @!attribute [rw] next_token
|
3702
|
-
# The token
|
3703
|
-
# page of results.
|
4716
|
+
# The pagination token that's used to fetch the next set of results.
|
3704
4717
|
# @return [String]
|
3705
4718
|
#
|
3706
4719
|
# @!attribute [rw] max_results
|
3707
|
-
# The maximum
|
4720
|
+
# The maximum number of results that are returned for an API request
|
4721
|
+
# call. The service chooses a default number if you don't set one.
|
4722
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4723
|
+
# value has not been met.
|
3708
4724
|
# @return [Integer]
|
3709
4725
|
#
|
3710
4726
|
# @!attribute [rw] status
|
@@ -3722,8 +4738,7 @@ module Aws::CleanRooms
|
|
3722
4738
|
end
|
3723
4739
|
|
3724
4740
|
# @!attribute [rw] next_token
|
3725
|
-
# The token
|
3726
|
-
# page of results.
|
4741
|
+
# The pagination token that's used to fetch the next set of results.
|
3727
4742
|
# @return [String]
|
3728
4743
|
#
|
3729
4744
|
# @!attribute [rw] membership_summaries
|
@@ -3746,14 +4761,14 @@ module Aws::CleanRooms
|
|
3746
4761
|
# @return [String]
|
3747
4762
|
#
|
3748
4763
|
# @!attribute [rw] next_token
|
3749
|
-
# The token
|
3750
|
-
# page of results.
|
4764
|
+
# The pagination token that's used to fetch the next set of results.
|
3751
4765
|
# @return [String]
|
3752
4766
|
#
|
3753
4767
|
# @!attribute [rw] max_results
|
3754
|
-
# The maximum
|
3755
|
-
# chooses a default if
|
3756
|
-
#
|
4768
|
+
# The maximum number of results that are returned for an API request
|
4769
|
+
# call. The service chooses a default number if you don't set one.
|
4770
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4771
|
+
# value has not been met.
|
3757
4772
|
# @return [Integer]
|
3758
4773
|
#
|
3759
4774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetTemplatesInput AWS API Documentation
|
@@ -3767,8 +4782,7 @@ module Aws::CleanRooms
|
|
3767
4782
|
end
|
3768
4783
|
|
3769
4784
|
# @!attribute [rw] next_token
|
3770
|
-
# The token
|
3771
|
-
# page of results.
|
4785
|
+
# The pagination token that's used to fetch the next set of results.
|
3772
4786
|
# @return [String]
|
3773
4787
|
#
|
3774
4788
|
# @!attribute [rw] privacy_budget_template_summaries
|
@@ -3797,14 +4811,14 @@ module Aws::CleanRooms
|
|
3797
4811
|
# @return [String]
|
3798
4812
|
#
|
3799
4813
|
# @!attribute [rw] next_token
|
3800
|
-
# The token
|
3801
|
-
# page of results.
|
4814
|
+
# The pagination token that's used to fetch the next set of results.
|
3802
4815
|
# @return [String]
|
3803
4816
|
#
|
3804
4817
|
# @!attribute [rw] max_results
|
3805
|
-
# The maximum
|
3806
|
-
# chooses a default if
|
3807
|
-
#
|
4818
|
+
# The maximum number of results that are returned for an API request
|
4819
|
+
# call. The service chooses a default number if you don't set one.
|
4820
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4821
|
+
# value has not been met.
|
3808
4822
|
# @return [Integer]
|
3809
4823
|
#
|
3810
4824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsInput AWS API Documentation
|
@@ -3825,8 +4839,7 @@ module Aws::CleanRooms
|
|
3825
4839
|
# @return [Array<Types::PrivacyBudgetSummary>]
|
3826
4840
|
#
|
3827
4841
|
# @!attribute [rw] next_token
|
3828
|
-
# The token
|
3829
|
-
# page of results.
|
4842
|
+
# The pagination token that's used to fetch the next set of results.
|
3830
4843
|
# @return [String]
|
3831
4844
|
#
|
3832
4845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListPrivacyBudgetsOutput AWS API Documentation
|
@@ -3847,14 +4860,14 @@ module Aws::CleanRooms
|
|
3847
4860
|
# @return [String]
|
3848
4861
|
#
|
3849
4862
|
# @!attribute [rw] next_token
|
3850
|
-
# The token
|
3851
|
-
# page of results.
|
4863
|
+
# The pagination token that's used to fetch the next set of results.
|
3852
4864
|
# @return [String]
|
3853
4865
|
#
|
3854
4866
|
# @!attribute [rw] max_results
|
3855
|
-
# The maximum
|
3856
|
-
# chooses a default if
|
3857
|
-
#
|
4867
|
+
# The maximum number of results that are returned for an API request
|
4868
|
+
# call. The service chooses a default number if you don't set one.
|
4869
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4870
|
+
# value has not been met.
|
3858
4871
|
# @return [Integer]
|
3859
4872
|
#
|
3860
4873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListProtectedQueriesInput AWS API Documentation
|
@@ -3869,8 +4882,7 @@ module Aws::CleanRooms
|
|
3869
4882
|
end
|
3870
4883
|
|
3871
4884
|
# @!attribute [rw] next_token
|
3872
|
-
# The token
|
3873
|
-
# page of results.
|
4885
|
+
# The pagination token that's used to fetch the next set of results.
|
3874
4886
|
# @return [String]
|
3875
4887
|
#
|
3876
4888
|
# @!attribute [rw] protected_queries
|
@@ -3892,17 +4904,18 @@ module Aws::CleanRooms
|
|
3892
4904
|
# @return [String]
|
3893
4905
|
#
|
3894
4906
|
# @!attribute [rw] schema_type
|
3895
|
-
# If present, filter schemas by schema type.
|
3896
|
-
# type is currently `TABLE`.
|
4907
|
+
# If present, filter schemas by schema type.
|
3897
4908
|
# @return [String]
|
3898
4909
|
#
|
3899
4910
|
# @!attribute [rw] next_token
|
3900
|
-
# The token
|
3901
|
-
# page of results.
|
4911
|
+
# The pagination token that's used to fetch the next set of results.
|
3902
4912
|
# @return [String]
|
3903
4913
|
#
|
3904
4914
|
# @!attribute [rw] max_results
|
3905
|
-
# The maximum
|
4915
|
+
# The maximum number of results that are returned for an API request
|
4916
|
+
# call. The service chooses a default number if you don't set one.
|
4917
|
+
# The service might return a `nextToken` even if the `maxResults`
|
4918
|
+
# value has not been met.
|
3906
4919
|
# @return [Integer]
|
3907
4920
|
#
|
3908
4921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasInput AWS API Documentation
|
@@ -3921,8 +4934,7 @@ module Aws::CleanRooms
|
|
3921
4934
|
# @return [Array<Types::SchemaSummary>]
|
3922
4935
|
#
|
3923
4936
|
# @!attribute [rw] next_token
|
3924
|
-
# The token
|
3925
|
-
# page of results.
|
4937
|
+
# The pagination token that's used to fetch the next set of results.
|
3926
4938
|
# @return [String]
|
3927
4939
|
#
|
3928
4940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListSchemasOutput AWS API Documentation
|
@@ -4308,6 +5320,38 @@ module Aws::CleanRooms
|
|
4308
5320
|
include Aws::Structure
|
4309
5321
|
end
|
4310
5322
|
|
5323
|
+
# @!attribute [rw] id_mapping_table_identifier
|
5324
|
+
# The unique identifier of the ID mapping table that you want to
|
5325
|
+
# populate.
|
5326
|
+
# @return [String]
|
5327
|
+
#
|
5328
|
+
# @!attribute [rw] membership_identifier
|
5329
|
+
# The unique identifier of the membership that contains the ID mapping
|
5330
|
+
# table that you want to populate.
|
5331
|
+
# @return [String]
|
5332
|
+
#
|
5333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTableInput AWS API Documentation
|
5334
|
+
#
|
5335
|
+
class PopulateIdMappingTableInput < Struct.new(
|
5336
|
+
:id_mapping_table_identifier,
|
5337
|
+
:membership_identifier)
|
5338
|
+
SENSITIVE = []
|
5339
|
+
include Aws::Structure
|
5340
|
+
end
|
5341
|
+
|
5342
|
+
# @!attribute [rw] id_mapping_job_id
|
5343
|
+
# The unique identifier of the mapping job that will populate the ID
|
5344
|
+
# mapping table.
|
5345
|
+
# @return [String]
|
5346
|
+
#
|
5347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/PopulateIdMappingTableOutput AWS API Documentation
|
5348
|
+
#
|
5349
|
+
class PopulateIdMappingTableOutput < Struct.new(
|
5350
|
+
:id_mapping_job_id)
|
5351
|
+
SENSITIVE = []
|
5352
|
+
include Aws::Structure
|
5353
|
+
end
|
5354
|
+
|
4311
5355
|
# @!attribute [rw] membership_identifier
|
4312
5356
|
# A unique identifier for one of your memberships for a collaboration.
|
4313
5357
|
# Accepts a membership ID.
|
@@ -4510,7 +5554,7 @@ module Aws::CleanRooms
|
|
4510
5554
|
# @return [String]
|
4511
5555
|
#
|
4512
5556
|
# @!attribute [rw] parameters
|
4513
|
-
# Specifies the
|
5557
|
+
# Specifies the epsilon and noise parameters for the privacy budget
|
4514
5558
|
# template.
|
4515
5559
|
# @return [Types::PrivacyBudgetTemplateParametersOutput]
|
4516
5560
|
#
|
@@ -5006,6 +6050,42 @@ module Aws::CleanRooms
|
|
5006
6050
|
include Aws::Structure
|
5007
6051
|
end
|
5008
6052
|
|
6053
|
+
# Provides any necessary query constraint information.
|
6054
|
+
#
|
6055
|
+
# @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.
|
6056
|
+
#
|
6057
|
+
# @!attribute [rw] require_overlap
|
6058
|
+
# An array of column names that specifies which columns are required
|
6059
|
+
# in the JOIN statement.
|
6060
|
+
# @return [Types::QueryConstraintRequireOverlap]
|
6061
|
+
#
|
6062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/QueryConstraint AWS API Documentation
|
6063
|
+
#
|
6064
|
+
class QueryConstraint < Struct.new(
|
6065
|
+
:require_overlap,
|
6066
|
+
:unknown)
|
6067
|
+
SENSITIVE = []
|
6068
|
+
include Aws::Structure
|
6069
|
+
include Aws::Structure::Union
|
6070
|
+
|
6071
|
+
class RequireOverlap < QueryConstraint; end
|
6072
|
+
class Unknown < QueryConstraint; end
|
6073
|
+
end
|
6074
|
+
|
6075
|
+
# Provides the name of the columns that are required to overlap.
|
6076
|
+
#
|
6077
|
+
# @!attribute [rw] columns
|
6078
|
+
# The columns that are required to overlap.
|
6079
|
+
# @return [Array<String>]
|
6080
|
+
#
|
6081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/QueryConstraintRequireOverlap AWS API Documentation
|
6082
|
+
#
|
6083
|
+
class QueryConstraintRequireOverlap < Struct.new(
|
6084
|
+
:columns)
|
6085
|
+
SENSITIVE = []
|
6086
|
+
include Aws::Structure
|
6087
|
+
end
|
6088
|
+
|
5009
6089
|
# Request references a resource which does not exist.
|
5010
6090
|
#
|
5011
6091
|
# @!attribute [rw] message
|
@@ -5032,7 +6112,7 @@ module Aws::CleanRooms
|
|
5032
6112
|
# A schema is a relation within a collaboration.
|
5033
6113
|
#
|
5034
6114
|
# @!attribute [rw] columns
|
5035
|
-
# The columns for the relation this schema represents.
|
6115
|
+
# The columns for the relation that this schema represents.
|
5036
6116
|
# @return [Array<Types::Column>]
|
5037
6117
|
#
|
5038
6118
|
# @!attribute [rw] partition_keys
|
@@ -5040,13 +6120,13 @@ module Aws::CleanRooms
|
|
5040
6120
|
# @return [Array<Types::Column>]
|
5041
6121
|
#
|
5042
6122
|
# @!attribute [rw] analysis_rule_types
|
5043
|
-
# The analysis rule types associated with the schema.
|
5044
|
-
# one entry is present.
|
6123
|
+
# The analysis rule types that are associated with the schema.
|
6124
|
+
# Currently, only one entry is present.
|
5045
6125
|
# @return [Array<String>]
|
5046
6126
|
#
|
5047
6127
|
# @!attribute [rw] analysis_method
|
5048
6128
|
# The analysis method for the schema. The only valid value is
|
5049
|
-
# currently
|
6129
|
+
# currently `DIRECT_QUERY`.
|
5050
6130
|
# @return [String]
|
5051
6131
|
#
|
5052
6132
|
# @!attribute [rw] creator_account_id
|
@@ -5064,7 +6144,8 @@ module Aws::CleanRooms
|
|
5064
6144
|
# @return [String]
|
5065
6145
|
#
|
5066
6146
|
# @!attribute [rw] collaboration_arn
|
5067
|
-
# The unique ARN for the collaboration that the
|
6147
|
+
# The unique Amazon Resource Name (ARN) for the collaboration that the
|
6148
|
+
# schema belongs to.
|
5068
6149
|
# @return [String]
|
5069
6150
|
#
|
5070
6151
|
# @!attribute [rw] description
|
@@ -5072,15 +6153,15 @@ module Aws::CleanRooms
|
|
5072
6153
|
# @return [String]
|
5073
6154
|
#
|
5074
6155
|
# @!attribute [rw] create_time
|
5075
|
-
# The time the schema was created.
|
6156
|
+
# The time at which the schema was created.
|
5076
6157
|
# @return [Time]
|
5077
6158
|
#
|
5078
6159
|
# @!attribute [rw] update_time
|
5079
|
-
# The time the schema was
|
6160
|
+
# The most recent time at which the schema was updated.
|
5080
6161
|
# @return [Time]
|
5081
6162
|
#
|
5082
6163
|
# @!attribute [rw] type
|
5083
|
-
# The type of schema.
|
6164
|
+
# The type of schema.
|
5084
6165
|
# @return [String]
|
5085
6166
|
#
|
5086
6167
|
# @!attribute [rw] schema_status_details
|
@@ -5088,6 +6169,10 @@ module Aws::CleanRooms
|
|
5088
6169
|
# present.
|
5089
6170
|
# @return [Array<Types::SchemaStatusDetail>]
|
5090
6171
|
#
|
6172
|
+
# @!attribute [rw] schema_type_properties
|
6173
|
+
# The schema type properties.
|
6174
|
+
# @return [Types::SchemaTypeProperties]
|
6175
|
+
#
|
5091
6176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/Schema AWS API Documentation
|
5092
6177
|
#
|
5093
6178
|
class Schema < Struct.new(
|
@@ -5103,7 +6188,8 @@ module Aws::CleanRooms
|
|
5103
6188
|
:create_time,
|
5104
6189
|
:update_time,
|
5105
6190
|
:type,
|
5106
|
-
:schema_status_details
|
6191
|
+
:schema_status_details,
|
6192
|
+
:schema_type_properties)
|
5107
6193
|
SENSITIVE = []
|
5108
6194
|
include Aws::Structure
|
5109
6195
|
end
|
@@ -5191,8 +6277,7 @@ module Aws::CleanRooms
|
|
5191
6277
|
# @return [String]
|
5192
6278
|
#
|
5193
6279
|
# @!attribute [rw] type
|
5194
|
-
# The type of schema object.
|
5195
|
-
# `TABLE`.
|
6280
|
+
# The type of schema object.
|
5196
6281
|
# @return [String]
|
5197
6282
|
#
|
5198
6283
|
# @!attribute [rw] creator_account_id
|
@@ -5242,6 +6327,27 @@ module Aws::CleanRooms
|
|
5242
6327
|
include Aws::Structure
|
5243
6328
|
end
|
5244
6329
|
|
6330
|
+
# Information about the schema type properties.
|
6331
|
+
#
|
6332
|
+
# @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.
|
6333
|
+
#
|
6334
|
+
# @!attribute [rw] id_mapping_table
|
6335
|
+
# The ID mapping table for the schema type properties.
|
6336
|
+
# @return [Types::IdMappingTableSchemaTypeProperties]
|
6337
|
+
#
|
6338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SchemaTypeProperties AWS API Documentation
|
6339
|
+
#
|
6340
|
+
class SchemaTypeProperties < Struct.new(
|
6341
|
+
:id_mapping_table,
|
6342
|
+
:unknown)
|
6343
|
+
SENSITIVE = []
|
6344
|
+
include Aws::Structure
|
6345
|
+
include Aws::Structure::Union
|
6346
|
+
|
6347
|
+
class IdMappingTable < SchemaTypeProperties; end
|
6348
|
+
class Unknown < SchemaTypeProperties; end
|
6349
|
+
end
|
6350
|
+
|
5245
6351
|
# Request denied because service quota has been exceeded.
|
5246
6352
|
#
|
5247
6353
|
# @!attribute [rw] message
|
@@ -5612,6 +6718,93 @@ module Aws::CleanRooms
|
|
5612
6718
|
include Aws::Structure
|
5613
6719
|
end
|
5614
6720
|
|
6721
|
+
# @!attribute [rw] id_mapping_table_identifier
|
6722
|
+
# The unique identifier of the ID mapping table that you want to
|
6723
|
+
# update.
|
6724
|
+
# @return [String]
|
6725
|
+
#
|
6726
|
+
# @!attribute [rw] membership_identifier
|
6727
|
+
# The unique identifier of the membership that contains the ID mapping
|
6728
|
+
# table that you want to update.
|
6729
|
+
# @return [String]
|
6730
|
+
#
|
6731
|
+
# @!attribute [rw] description
|
6732
|
+
# A new description for the ID mapping table.
|
6733
|
+
# @return [String]
|
6734
|
+
#
|
6735
|
+
# @!attribute [rw] kms_key_arn
|
6736
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services KMS key.
|
6737
|
+
# @return [String]
|
6738
|
+
#
|
6739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdMappingTableInput AWS API Documentation
|
6740
|
+
#
|
6741
|
+
class UpdateIdMappingTableInput < Struct.new(
|
6742
|
+
:id_mapping_table_identifier,
|
6743
|
+
:membership_identifier,
|
6744
|
+
:description,
|
6745
|
+
:kms_key_arn)
|
6746
|
+
SENSITIVE = []
|
6747
|
+
include Aws::Structure
|
6748
|
+
end
|
6749
|
+
|
6750
|
+
# @!attribute [rw] id_mapping_table
|
6751
|
+
# The updated ID mapping table.
|
6752
|
+
# @return [Types::IdMappingTable]
|
6753
|
+
#
|
6754
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdMappingTableOutput AWS API Documentation
|
6755
|
+
#
|
6756
|
+
class UpdateIdMappingTableOutput < Struct.new(
|
6757
|
+
:id_mapping_table)
|
6758
|
+
SENSITIVE = []
|
6759
|
+
include Aws::Structure
|
6760
|
+
end
|
6761
|
+
|
6762
|
+
# @!attribute [rw] id_namespace_association_identifier
|
6763
|
+
# The unique identifier of the ID namespace association that you want
|
6764
|
+
# to update.
|
6765
|
+
# @return [String]
|
6766
|
+
#
|
6767
|
+
# @!attribute [rw] membership_identifier
|
6768
|
+
# The unique identifier of the membership that contains the ID
|
6769
|
+
# namespace association that you want to update.
|
6770
|
+
# @return [String]
|
6771
|
+
#
|
6772
|
+
# @!attribute [rw] name
|
6773
|
+
# A new name for the ID namespace association.
|
6774
|
+
# @return [String]
|
6775
|
+
#
|
6776
|
+
# @!attribute [rw] description
|
6777
|
+
# A new description for the ID namespace association.
|
6778
|
+
# @return [String]
|
6779
|
+
#
|
6780
|
+
# @!attribute [rw] id_mapping_config
|
6781
|
+
# The configuration settings for the ID mapping table.
|
6782
|
+
# @return [Types::IdMappingConfig]
|
6783
|
+
#
|
6784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdNamespaceAssociationInput AWS API Documentation
|
6785
|
+
#
|
6786
|
+
class UpdateIdNamespaceAssociationInput < Struct.new(
|
6787
|
+
:id_namespace_association_identifier,
|
6788
|
+
:membership_identifier,
|
6789
|
+
:name,
|
6790
|
+
:description,
|
6791
|
+
:id_mapping_config)
|
6792
|
+
SENSITIVE = []
|
6793
|
+
include Aws::Structure
|
6794
|
+
end
|
6795
|
+
|
6796
|
+
# @!attribute [rw] id_namespace_association
|
6797
|
+
# The updated ID namespace association.
|
6798
|
+
# @return [Types::IdNamespaceAssociation]
|
6799
|
+
#
|
6800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/UpdateIdNamespaceAssociationOutput AWS API Documentation
|
6801
|
+
#
|
6802
|
+
class UpdateIdNamespaceAssociationOutput < Struct.new(
|
6803
|
+
:id_namespace_association)
|
6804
|
+
SENSITIVE = []
|
6805
|
+
include Aws::Structure
|
6806
|
+
end
|
6807
|
+
|
5615
6808
|
# @!attribute [rw] membership_identifier
|
5616
6809
|
# The unique identifier of the membership.
|
5617
6810
|
# @return [String]
|